From 649676e811e068d4779b374462b0444008cdfa26 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Mon, 10 Dec 2018 10:11:56 -0200 Subject: [PATCH 1/5] trying recipes, currently not working --- .../Protocol1_13To1_12_2.java | 101 +- .../protocol1_13to1_12_2/data/RecipeData.java | 55 + .../data/itemrecipes1_12_2to1_13.json | 23125 ++++++++++++++++ 3 files changed, 23274 insertions(+), 7 deletions(-) create mode 100644 common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java create mode 100644 common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java index 2f8702825..a2467c239 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java @@ -21,6 +21,7 @@ import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.blockconnections.Conne import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.blockconnections.providers.BlockConnectionProvider; import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.blockconnections.providers.PacketBlockConnectionProvider; import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.data.MappingData; +import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.data.RecipeData; import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.packets.EntityPackets; import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.packets.InventoryPackets; import us.myles.ViaVersion.protocols.protocol1_13to1_12_2.packets.WorldPackets; @@ -99,6 +100,67 @@ public class Protocol1_13To1_12_2 extends Protocol { } } }).send(Protocol1_13To1_12_2.class); + + w.create(0x54, new ValueCreator() { // Declare recipes + @Override + public void write(PacketWrapper wrapper) throws Exception { + wrapper.write(Type.VAR_INT, RecipeData.recipes.size()); + for (Map.Entry entry : RecipeData.recipes.entrySet()) { + wrapper.write(Type.STRING, entry.getKey()); // Id + wrapper.write(Type.STRING, entry.getValue().getType()); + switch (entry.getValue().getType()) { + case "crafting_shapeless": { + wrapper.write(Type.STRING, entry.getValue().getGroup()); + wrapper.write(Type.VAR_INT, entry.getValue().getIngredients().length); + for (Item[] ingredient : entry.getValue().getIngredients()) { + Item[] clone = ingredient.clone(); // Clone because array and item is mutable + for (int i = 0; i < clone.length; i++) { + clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), + (short) 0, null); + } + wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); + } + wrapper.write(Type.FLAT_ITEM, new Item( + entry.getValue().getResult().getId(), + entry.getValue().getResult().getAmount(), (short) 0, null)); + break; + } + case "crafting_shaped": { + wrapper.write(Type.VAR_INT, entry.getValue().getWidth()); + wrapper.write(Type.VAR_INT, entry.getValue().getHeight()); + wrapper.write(Type.STRING, entry.getValue().getGroup()); + for (Item[] ingredient : entry.getValue().getIngredients()) { + Item[] clone = ingredient.clone(); // Clone because array and item is mutable + for (int i = 0; i < clone.length; i++) { + clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), + (short) 0, null); + } + wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); + } + wrapper.write(Type.FLAT_ITEM, new Item( + entry.getValue().getResult().getId(), + entry.getValue().getResult().getAmount(), (short) 0, null)); + break; + } + case "smelting": { + wrapper.write(Type.STRING, entry.getValue().getGroup()); + Item[] clone = entry.getValue().getIngredient().clone(); // Clone because array and item is mutable + for (int i = 0; i < clone.length; i++) { + clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), + (short) 0, null); + } + wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); + wrapper.write(Type.FLAT_ITEM, new Item( + entry.getValue().getResult().getId(), + entry.getValue().getResult().getAmount(), (short) 0, null)); + wrapper.write(Type.FLOAT, entry.getValue().getExperience()); + wrapper.write(Type.VAR_INT, entry.getValue().getCookingTime()); + break; + } + } + } + } + }).send(Protocol1_13To1_12_2.class); } }; @@ -126,6 +188,7 @@ public class Protocol1_13To1_12_2 extends Protocol { SCOREBOARD_TEAM_NAME_REWRITE.put(ChatColor.WHITE, '?'); MappingData.init(); ConnectionData.init(); + RecipeData.init(); } @Override @@ -429,11 +492,11 @@ public class Protocol1_13To1_12_2 extends Protocol { registerOutgoing(State.PLAY, 0x2B, 0x2D, new PacketRemapper() { @Override public void registerMap() { + map(Type.BYTE); handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { - // TODO This packet changed - wrapper.cancel(); + wrapper.write(Type.STRING, "viaversion:legacy/" + wrapper.read(Type.VAR_INT)); } }); } @@ -464,11 +527,28 @@ public class Protocol1_13To1_12_2 extends Protocol { registerOutgoing(State.PLAY, 0x31, 0x34, new PacketRemapper() { @Override public void registerMap() { + map(Type.VAR_INT); // action + map(Type.BOOLEAN); // crafting book open + map(Type.BOOLEAN); // crafting filter active + create(new ValueCreator() { + @Override + public void write(PacketWrapper wrapper) throws Exception { + wrapper.write(Type.BOOLEAN, false); // smelting book open + wrapper.write(Type.BOOLEAN, false); // smelting filter active + } + }); handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { - // TODO: This has changed >.> - wrapper.cancel(); + int action = wrapper.get(Type.VAR_INT, 0); + for (int i = 0; i < (action == 0 ? 2 : 1); i++) { + Integer[] ids = wrapper.read(Type.VAR_INT_ARRAY); + String[] stringIds = new String[ids.length]; + for (int j = 0; j < ids.length; j++) { + stringIds[j] = "viaversion:legacy/" + ids[j]; + } + wrapper.write(Type.STRING_ARRAY, stringIds); + } } }); } @@ -838,8 +918,13 @@ public class Protocol1_13To1_12_2 extends Protocol { handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { - // TODO: This has changed >.> - wrapper.cancel(); + map(Type.BYTE); // Window id + map(Type.STRING, new ValueTransformer(Type.VAR_INT) { + @Override + public Integer transform(PacketWrapper wrapper, String inputValue) throws Exception { + return Integer.parseInt(inputValue.substring(18)); + } + }); } }); } @@ -860,7 +945,9 @@ public class Protocol1_13To1_12_2 extends Protocol { public void handle(PacketWrapper wrapper) throws Exception { int type = wrapper.get(Type.VAR_INT, 0); - if (type == 1) { + if (type == 0) { + wrapper.write(Type.VAR_INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); + } if (type == 1) { wrapper.passthrough(Type.BOOLEAN); // Crafting Recipe Book Open wrapper.passthrough(Type.BOOLEAN); // Crafting Recipe Filter Active wrapper.read(Type.BOOLEAN); // Smelting Recipe Book Open | IGNORE NEW 1.13 FIELD diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java new file mode 100644 index 000000000..2f2bf4e49 --- /dev/null +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java @@ -0,0 +1,55 @@ +package us.myles.ViaVersion.protocols.protocol1_13to1_12_2.data; + +import com.google.gson.reflect.TypeToken; +import lombok.Data; +import lombok.NonNull; +import us.myles.ViaVersion.api.minecraft.item.Item; +import us.myles.ViaVersion.util.GsonUtil; + +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.Map; + +public class RecipeData { + public static Map recipes; + + public static void init() { + InputStream stream = MappingData.class.getClassLoader() + .getResourceAsStream("assets/viaversion/data/itemrecipes1_12_2to1_13.json"); + InputStreamReader reader = new InputStreamReader(stream); + try { + recipes = GsonUtil.getGson().fromJson( + reader, + new TypeToken>() { + }.getType() + ); + } finally { + try { + reader.close(); + } catch (IOException ignored) { + // Ignored + } + } + } + + // todo remove this debug + public static void main(String[] args) { + init(); + System.out.println(recipes); + } + + @Data + public static class Recipe { + @NonNull + private String type; + private String group = ""; + private int width; + private int height; + private float experience; + private int cookingTime; + private Item[] ingredient; + private Item[][] ingredients; + private Item result; + } +} \ No newline at end of file diff --git a/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json b/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json new file mode 100644 index 000000000..f1c9bae82 --- /dev/null +++ b/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json @@ -0,0 +1,23125 @@ +{ + "viaversion:legacy/11": { + "type": "crafting_shapeless", + "result": { + "id": 629, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 628, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/12": { + "type": "crafting_shaped", + "result": { + "id": 232, + "amount": 2 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/13": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 606, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/14": { + "type": "crafting_shaped", + "result": { + "id": 488, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/15": { + "type": "crafting_shaped", + "result": { + "id": 157, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/16": { + "type": "crafting_shaped", + "result": { + "id": 124, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/17": { + "type": "crafting_shaped", + "result": { + "id": 485, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/18": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 268, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/19": { + "type": "crafting_shaped", + "result": { + "id": 152, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/20": { + "type": "crafting_shapeless", + "result": { + "id": 632, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 619, + "amount": 1 + } + ], + [ + { + "id": 628, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/21": { + "type": "crafting_shaped", + "group": "rabbit_stew", + "result": { + "id": 718, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 717, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 692, + "amount": 1 + } + ], + [ + { + "id": 694, + "amount": 1 + } + ], + [ + { + "id": 109, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 493, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/22": { + "type": "crafting_shaped", + "result": { + "id": 226, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 225, + "amount": 1 + } + ], + [ + { + "id": 225, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 225, + "amount": 1 + } + ], + [ + { + "id": 225, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/23": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 325, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/24": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 456, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/25": { + "type": "crafting_shaped", + "result": { + "id": 207, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/26": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 604, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/27": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 175, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/28": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 97, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/29": { + "type": "crafting_shaped", + "result": { + "id": 527, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/30": { + "type": "crafting_shaped", + "result": { + "id": 228, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 185, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/31": { + "type": "crafting_shaped", + "result": { + "id": 467, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/32": { + "type": "crafting_shaped", + "group": "gold_ingot", + "result": { + "id": 478, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/33": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 318, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/34": { + "type": "crafting_shapeless", + "group": "bonemeal", + "result": { + "id": 587, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 588, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/35": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 739, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/36": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 16, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 35, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/37": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 148, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/38": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 605, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/39": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 599, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 579, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/40": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 594, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/41": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 417, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/42": { + "type": "crafting_shaped", + "result": { + "id": 545, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 720, + "amount": 1 + } + ], + [ + { + "id": 720, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 720, + "amount": 1 + } + ], + [ + { + "id": 720, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/43": { + "type": "crafting_shaped", + "result": { + "id": 513, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/44": { + "type": "crafting_shaped", + "result": { + "id": 712, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 136, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 540, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/45": { + "type": "crafting_shapeless", + "group": "pink_dye", + "result": { + "id": 581, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 106, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/46": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 13, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 32, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/47": { + "type": "crafting_shaped", + "result": { + "id": 256, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 149, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/48": { + "type": "crafting_shaped", + "result": { + "id": 74, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 558, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 81, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/49": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 103, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/50": { + "type": "crafting_shaped", + "group": "gold_ingot", + "result": { + "id": 478, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 110, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/51": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 289, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/52": { + "type": "crafting_shaped", + "result": { + "id": 751, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 493, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/53": { + "type": "crafting_shaped", + "result": { + "id": 126, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/54": { + "type": "crafting_shaped", + "result": { + "id": 518, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/55": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 117, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/56": { + "type": "crafting_shaped", + "result": { + "id": 556, + "amount": 3 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 553, + "amount": 1 + } + ], + [ + { + "id": 553, + "amount": 1 + } + ], + [ + { + "id": 553, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/57": { + "type": "crafting_shaped", + "result": { + "id": 560, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 154, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 540, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/58": { + "type": "crafting_shaped", + "result": { + "id": 173, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 552, + "amount": 1 + } + ], + [ + { + "id": 552, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 552, + "amount": 1 + } + ], + [ + { + "id": 552, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/59": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 312, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/60": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 211, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/61": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 604, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/62": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 215, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/63": { + "type": "crafting_shaped", + "result": { + "id": 4, + "amount": 2 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/64": { + "type": "crafting_shaped", + "result": { + "id": 487, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/65": { + "type": "crafting_shaped", + "result": { + "id": 217, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/66": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 95, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/67": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 603, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 575, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/68": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 606, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/69": { + "type": "crafting_shaped", + "result": { + "id": 127, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/70": { + "type": "crafting_shaped", + "result": { + "id": 351, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 126, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 126, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/71": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 90, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/72": { + "type": "crafting_shapeless", + "group": "pink_dye", + "result": { + "id": 581, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/73": { + "type": "crafting_shaped", + "result": { + "id": 171, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 543, + "amount": 1 + } + ], + [ + { + "id": 543, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 543, + "amount": 1 + } + ], + [ + { + "id": 543, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/74": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 265, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/75": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 457, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/76": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 92, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/77": { + "type": "crafting_shaped", + "result": { + "id": 208, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/78": { + "type": "crafting_shapeless", + "result": { + "id": 582, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/79": { + "type": "crafting_shaped", + "result": { + "id": 576, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 66, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/80": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 271, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/81": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/82": { + "type": "crafting_shaped", + "result": { + "id": 563, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/83": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 277, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/84": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 597, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/85": { + "type": "crafting_shaped", + "result": { + "id": 144, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 748, + "amount": 1 + } + ], + [ + { + "id": 748, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 748, + "amount": 1 + } + ], + [ + { + "id": 748, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/86": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 307, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/87": { + "type": "crafting_shaped", + "result": { + "id": 359, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/88": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 89, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/89": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 212, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/90": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 314, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/91": { + "type": "crafting_shaped", + "result": { + "id": 528, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/92": { + "type": "crafting_shaped", + "result": { + "id": 251, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/93": { + "type": "crafting_shaped", + "result": { + "id": 504, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/94": { + "type": "crafting_shaped", + "result": { + "id": 455, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/95": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 324, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/96": { + "type": "crafting_shaped", + "result": { + "id": 463, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 167, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/97": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 421, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/98": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 600, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 578, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/99": { + "type": "crafting_shapeless", + "result": { + "id": 706, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 182, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ], + [ + { + "id": 561, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/100": { + "type": "crafting_shaped", + "result": { + "id": 505, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/101": { + "type": "crafting_shaped", + "result": { + "id": 521, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/102": { + "type": "crafting_shaped", + "result": { + "id": 122, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/103": { + "type": "crafting_shaped", + "result": { + "id": 222, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 220, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/104": { + "type": "crafting_shapeless", + "result": { + "id": 250, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 149, + "amount": 1 + } + ], + [ + { + "id": 232, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/105": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 274, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/106": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 180, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/107": { + "type": "crafting_shaped", + "result": { + "id": 498, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/108": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 91, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/109": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 101, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/110": { + "type": "crafting_shapeless", + "result": { + "id": 577, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/111": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 99, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/112": { + "type": "crafting_shaped", + "result": { + "id": 352, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 350, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 350, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/113": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 338, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/114": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 731, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/115": { + "type": "crafting_shaped", + "result": { + "id": 125, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/116": { + "type": "crafting_shaped", + "result": { + "id": 154, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/117": { + "type": "crafting_shaped", + "result": { + "id": 506, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/118": { + "type": "crafting_shaped", + "result": { + "id": 519, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/119": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 105, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/120": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 302, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/121": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 597, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/122": { + "type": "crafting_shaped", + "result": { + "id": 258, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/123": { + "type": "crafting_shapeless", + "result": { + "id": 580, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/124": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 14, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 33, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/125": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 745, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/126": { + "type": "crafting_shaped", + "result": { + "id": 156, + "amount": 16 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/127": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 116, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/128": { + "type": "crafting_shaped", + "result": { + "id": 725, + "amount": 2 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [], + [], + [], + [], + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/129": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 107, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/130": { + "type": "crafting_shaped", + "result": { + "id": 149, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/131": { + "type": "crafting_shaped", + "result": { + "id": 303, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/132": { + "type": "crafting_shaped", + "result": { + "id": 373, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 765, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 149, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 765, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/133": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 332, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/134": { + "type": "crafting_shaped", + "result": { + "id": 590, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 546, + "amount": 1 + } + ], + [ + { + "id": 546, + "amount": 1 + } + ], + [ + { + "id": 546, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 589, + "amount": 1 + } + ], + [ + { + "id": 561, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/135": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 270, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/136": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 287, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/137": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 415, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 583, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/138": { + "type": "crafting_shaped", + "result": { + "id": 481, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/139": { + "type": "crafting_shaped", + "result": { + "id": 690, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/140": { + "type": "crafting_shaped", + "result": { + "id": 510, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/141": { + "type": "crafting_shaped", + "result": { + "id": 754, + "amount": 2 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 565, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 473, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 565, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/142": { + "type": "crafting_shapeless", + "group": "yellow_dye", + "result": { + "id": 583, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 305, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/143": { + "type": "crafting_shaped", + "result": { + "id": 630, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [], + [ + { + "id": 620, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/144": { + "type": "crafting_shaped", + "result": { + "id": 483, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/145": { + "type": "crafting_shaped", + "result": { + "id": 121, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/146": { + "type": "crafting_shaped", + "result": { + "id": 462, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/147": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 735, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/148": { + "type": "crafting_shaped", + "result": { + "id": 240, + "amount": 6 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/149": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 458, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/150": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 328, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/151": { + "type": "crafting_shaped", + "result": { + "id": 540, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/152": { + "type": "crafting_shaped", + "result": { + "id": 520, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/153": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 297, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/154": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 102, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/155": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 596, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 582, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/156": { + "type": "crafting_shapeless", + "result": { + "id": 628, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 620, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/157": { + "type": "crafting_shaped", + "result": { + "id": 160, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/158": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 601, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 577, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/159": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 742, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/160": { + "type": "crafting_shaped", + "result": { + "id": 70, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 68, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 68, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/161": { + "type": "crafting_shaped", + "result": { + "id": 480, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/162": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 422, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/163": { + "type": "crafting_shapeless", + "result": { + "id": 687, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 557, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 500, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/164": { + "type": "crafting_shaped", + "result": { + "id": 468, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/165": { + "type": "crafting_shaped", + "result": { + "id": 238, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 705, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/166": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 603, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/167": { + "type": "crafting_shaped", + "result": { + "id": 511, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/168": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 319, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/169": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 284, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/170": { + "type": "crafting_shaped", + "result": { + "id": 119, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/171": { + "type": "crafting_shaped", + "result": { + "id": 73, + "amount": 6 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 159, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/172": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 738, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/173": { + "type": "crafting_shaped", + "result": { + "id": 704, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 563, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 692, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/174": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 461, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/175": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 235, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/176": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 283, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/177": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 760, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/178": { + "type": "crafting_shaped", + "result": { + "id": 512, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [], + [ + { + "id": 545, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/179": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 322, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/180": { + "type": "crafting_shaped", + "result": { + "id": 221, + "amount": 6 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/181": { + "type": "crafting_shaped", + "result": { + "id": 502, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/182": { + "type": "crafting_shaped", + "result": { + "id": 525, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/183": { + "type": "crafting_shapeless", + "group": "yellow_dye", + "result": { + "id": 583, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 98, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/184": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 4 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/185": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 339, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/186": { + "type": "crafting_shaped", + "result": { + "id": 589, + "amount": 1 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 553, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/187": { + "type": "crafting_shaped", + "result": { + "id": 697, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 692, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/188": { + "type": "crafting_shaped", + "result": { + "id": 68, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/189": { + "type": "crafting_shapeless", + "result": { + "id": 686, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 628, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + }, + { + "id": 475, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/190": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 763, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/191": { + "type": "crafting_shaped", + "result": { + "id": 536, + "amount": 3 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/192": { + "type": "crafting_shaped", + "result": { + "id": 612, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 182, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/193": { + "type": "crafting_shaped", + "result": { + "id": 159, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/194": { + "type": "crafting_shaped", + "result": { + "id": 350, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 27, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 27, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/195": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 83, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/196": { + "type": "crafting_shaped", + "result": { + "id": 66, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/197": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 602, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/198": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 316, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/199": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 341, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/200": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 426, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/201": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 335, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/202": { + "type": "crafting_shaped", + "result": { + "id": 524, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/203": { + "type": "crafting_shaped", + "result": { + "id": 123, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/204": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 267, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/205": { + "type": "crafting_shaped", + "result": { + "id": 216, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 135, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/206": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 419, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/207": { + "type": "crafting_shaped", + "result": { + "id": 713, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 256, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 540, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/208": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 592, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/209": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 744, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/210": { + "type": "crafting_shaped", + "result": { + "id": 158, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/211": { + "type": "crafting_shaped", + "result": { + "id": 486, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/212": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 326, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/213": { + "type": "crafting_shaped", + "result": { + "id": 343, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/214": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 210, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/215": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 311, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/216": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 213, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/217": { + "type": "crafting_shapeless", + "group": "bonemeal", + "result": { + "id": 587, + "amount": 9 + }, + "ingredients": [ + [ + { + "id": 359, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/218": { + "type": "crafting_shapeless", + "group": "orange_dye", + "result": { + "id": 586, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/219": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 293, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/220": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 602, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/221": { + "type": "crafting_shaped", + "result": { + "id": 220, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/222": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 177, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/223": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 291, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/224": { + "type": "crafting_shaped", + "result": { + "id": 118, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/225": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 294, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/226": { + "type": "crafting_shaped", + "group": "iron_ingot", + "result": { + "id": 477, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/227": { + "type": "crafting_shaped", + "result": { + "id": 169, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 171, + "amount": 1 + } + ], + [ + { + "id": 171, + "amount": 1 + } + ], + [ + { + "id": 171, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/228": { + "type": "crafting_shapeless", + "group": "light_blue_dye", + "result": { + "id": 584, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/229": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 94, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/230": { + "type": "crafting_shaped", + "result": { + "id": 257, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 125, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 125, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/231": { + "type": "crafting_shaped", + "result": { + "id": 503, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/232": { + "type": "crafting_shaped", + "result": { + "id": 81, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/233": { + "type": "crafting_shaped", + "result": { + "id": 10, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 9, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 9, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/234": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 96, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/235": { + "type": "crafting_shaped", + "result": { + "id": 691, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 551, + "amount": 1 + } + ], + [], + [ + { + "id": 551, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 551, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/236": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 266, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/237": { + "type": "crafting_shaped", + "result": { + "id": 145, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 127, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 127, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/238": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 86, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 583, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/239": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 425, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/240": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 596, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/241": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 114, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/242": { + "type": "crafting_shaped", + "result": { + "id": 280, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/243": { + "type": "crafting_shaped", + "result": { + "id": 496, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/244": { + "type": "crafting_shaped", + "result": { + "id": 229, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/245": { + "type": "crafting_shaped", + "group": "iron_ingot", + "result": { + "id": 477, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 111, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/246": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 759, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/247": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 313, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/248": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 269, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/249": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 315, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/250": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 286, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/251": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 214, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/252": { + "type": "crafting_shaped", + "result": { + "id": 187, + "amount": 2 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/253": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 593, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 585, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/254": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 334, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/255": { + "type": "crafting_shaped", + "result": { + "id": 491, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/256": { + "type": "crafting_shaped", + "result": { + "id": 239, + "amount": 6 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/257": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 282, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/258": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 762, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/259": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 112, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/260": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 592, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 586, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/261": { + "type": "crafting_shapeless", + "group": "pink_dye", + "result": { + "id": 581, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 308, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/262": { + "type": "crafting_shaped", + "result": { + "id": 247, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 111, + "amount": 1 + } + ], + [ + { + "id": 111, + "amount": 1 + } + ], + [ + { + "id": 111, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/263": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 601, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/264": { + "type": "crafting_shaped", + "result": { + "id": 233, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/265": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 234, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/266": { + "type": "crafting_shaped", + "result": { + "id": 155, + "amount": 3 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/267": { + "type": "crafting_shapeless", + "result": { + "id": 138, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 209, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/268": { + "type": "crafting_shaped", + "result": { + "id": 185, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/269": { + "type": "crafting_shapeless", + "result": { + "id": 470, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 530, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/270": { + "type": "crafting_shaped", + "result": { + "id": 559, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 149, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 540, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/271": { + "type": "crafting_shapeless", + "result": { + "id": 557, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/272": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 423, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/273": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 263, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/274": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 320, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/275": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 736, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/276": { + "type": "crafting_shaped", + "result": { + "id": 492, + "amount": 4 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/277": { + "type": "crafting_shaped", + "result": { + "id": 146, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 144, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/278": { + "type": "crafting_shaped", + "result": { + "id": 631, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/279": { + "type": "crafting_shaped", + "result": { + "id": 533, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + }, + { + "id": 83, + "amount": 1 + }, + { + "id": 84, + "amount": 1 + }, + { + "id": 85, + "amount": 1 + }, + { + "id": 86, + "amount": 1 + }, + { + "id": 87, + "amount": 1 + }, + { + "id": 88, + "amount": 1 + }, + { + "id": 89, + "amount": 1 + }, + { + "id": 90, + "amount": 1 + }, + { + "id": 91, + "amount": 1 + }, + { + "id": 92, + "amount": 1 + }, + { + "id": 93, + "amount": 1 + }, + { + "id": 94, + "amount": 1 + }, + { + "id": 95, + "amount": 1 + }, + { + "id": 96, + "amount": 1 + }, + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/280": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 292, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/281": { + "type": "crafting_shaped", + "result": { + "id": 534, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 471, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/282": { + "type": "crafting_shaped", + "result": { + "id": 5, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 4, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 4, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/283": { + "type": "crafting_shaped", + "result": { + "id": 168, + "amount": 1 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/284": { + "type": "crafting_shaped", + "result": { + "id": 199, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/285": { + "type": "crafting_shaped", + "result": { + "id": 489, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/286": { + "type": "crafting_shaped", + "result": { + "id": 766, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/287": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 593, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/288": { + "type": "crafting_shaped", + "result": { + "id": 135, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 551, + "amount": 1 + } + ], + [ + { + "id": 551, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 551, + "amount": 1 + } + ], + [ + { + "id": 551, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/289": { + "type": "crafting_shaped", + "result": { + "id": 140, + "amount": 4 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 474, + "amount": 1 + }, + { + "id": 475, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/290": { + "type": "crafting_shaped", + "result": { + "id": 622, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/291": { + "type": "crafting_shapeless", + "result": { + "id": 578, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/292": { + "type": "crafting_shaped", + "result": { + "id": 67, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 472, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/293": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 743, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/294": { + "type": "crafting_shaped", + "result": { + "id": 82, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/295": { + "type": "crafting_shaped", + "result": { + "id": 136, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/296": { + "type": "crafting_shaped", + "result": { + "id": 356, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 629, + "amount": 1 + } + ], + [ + { + "id": 629, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 629, + "amount": 1 + } + ], + [ + { + "id": 629, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/297": { + "type": "crafting_shaped", + "result": { + "id": 241, + "amount": 1 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/298": { + "type": "crafting_shaped", + "result": { + "id": 613, + "amount": 1 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 610, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/299": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 323, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/300": { + "type": "crafting_shaped", + "result": { + "id": 558, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 303, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/301": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 594, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 584, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/302": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 598, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 580, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/303": { + "type": "crafting_shaped", + "result": { + "id": 71, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/304": { + "type": "crafting_shaped", + "result": { + "id": 625, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/305": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 420, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/306": { + "type": "crafting_shaped", + "result": { + "id": 69, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 119, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 119, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/307": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/308": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 329, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/309": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 330, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/310": { + "type": "crafting_shaped", + "result": { + "id": 186, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 182, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 140, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/311": { + "type": "crafting_shapeless", + "result": { + "id": 627, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 626, + "amount": 1 + } + ], + [ + { + "id": 108, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/312": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 264, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/313": { + "type": "crafting_shaped", + "result": { + "id": 689, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 233, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/314": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/315": { + "type": "crafting_shaped", + "result": { + "id": 141, + "amount": 4 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 620, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 748, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/316": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 301, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/317": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 115, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/318": { + "type": "crafting_shaped", + "result": { + "id": 358, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/319": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 591, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/320": { + "type": "crafting_shaped", + "result": { + "id": 522, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/321": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 598, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/322": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 595, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/323": { + "type": "crafting_shaped", + "result": { + "id": 537, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/324": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 295, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/325": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 321, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/326": { + "type": "crafting_shapeless", + "result": { + "id": 6, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/327": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 544, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/328": { + "type": "crafting_shaped", + "result": { + "id": 299, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/329": { + "type": "crafting_shaped", + "result": { + "id": 167, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/330": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 87, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/331": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 236, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/332": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 285, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/333": { + "type": "crafting_shaped", + "result": { + "id": 526, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/334": { + "type": "crafting_shaped", + "result": { + "id": 495, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/335": { + "type": "crafting_shaped", + "result": { + "id": 111, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/336": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 178, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/337": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 113, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/338": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 459, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/339": { + "type": "crafting_shaped", + "result": { + "id": 252, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/340": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 761, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/341": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 85, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/342": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 600, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/343": { + "type": "crafting_shaped", + "group": "rabbit_stew", + "result": { + "id": 718, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 717, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 692, + "amount": 1 + } + ], + [ + { + "id": 694, + "amount": 1 + } + ], + [ + { + "id": 108, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 493, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/344": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 18, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 37, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/345": { + "type": "crafting_shaped", + "result": { + "id": 509, + "amount": 1 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/346": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 737, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/347": { + "type": "crafting_shaped", + "result": { + "id": 253, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 112, + "amount": 1 + }, + { + "id": 113, + "amount": 1 + }, + { + "id": 114, + "amount": 1 + }, + { + "id": 115, + "amount": 1 + }, + { + "id": 116, + "amount": 1 + }, + { + "id": 117, + "amount": 1 + } + ], + [ + { + "id": 112, + "amount": 1 + }, + { + "id": 113, + "amount": 1 + }, + { + "id": 114, + "amount": 1 + }, + { + "id": 115, + "amount": 1 + }, + { + "id": 116, + "amount": 1 + }, + { + "id": 117, + "amount": 1 + } + ], + [ + { + "id": 112, + "amount": 1 + }, + { + "id": 113, + "amount": 1 + }, + { + "id": 114, + "amount": 1 + }, + { + "id": 115, + "amount": 1 + }, + { + "id": 116, + "amount": 1 + }, + { + "id": 117, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/348": { + "type": "crafting_shaped", + "result": { + "id": 562, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/349": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 296, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/350": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 460, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/351": { + "type": "crafting_shaped", + "result": { + "id": 484, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/352": { + "type": "crafting_shapeless", + "result": { + "id": 494, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 108, + "amount": 1 + } + ], + [ + { + "id": 109, + "amount": 1 + } + ], + [ + { + "id": 493, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/353": { + "type": "crafting_shapeless", + "group": "light_blue_dye", + "result": { + "id": 584, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 100, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/354": { + "type": "crafting_shaped", + "result": { + "id": 721, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 118, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/355": { + "type": "crafting_shaped", + "result": { + "id": 281, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/356": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 414, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/357": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 15, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 34, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/358": { + "type": "crafting_shaped", + "result": { + "id": 231, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 632, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/359": { + "type": "crafting_shapeless", + "result": { + "id": 2, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/360": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 176, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/361": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 342, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/362": { + "type": "crafting_shaped", + "result": { + "id": 353, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/363": { + "type": "crafting_shaped", + "result": { + "id": 497, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/364": { + "type": "crafting_shaped", + "result": { + "id": 529, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/365": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 730, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/366": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 84, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/367": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 740, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/368": { + "type": "crafting_shaped", + "result": { + "id": 206, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/369": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 412, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/370": { + "type": "crafting_shaped", + "result": { + "id": 472, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [ + { + "id": 499, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/371": { + "type": "crafting_shaped", + "result": { + "id": 344, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/372": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 424, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/373": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 734, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/374": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 88, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/375": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 327, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 311, + "amount": 1 + } + ], + [ + { + "id": 311, + "amount": 1 + } + ], + [ + { + "id": 311, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 311, + "amount": 1 + } + ], + [ + { + "id": 311, + "amount": 1 + } + ], + [ + { + "id": 311, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/376": { + "type": "crafting_shaped", + "result": { + "id": 151, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/377": { + "type": "crafting_shaped", + "result": { + "id": 493, + "amount": 4 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/378": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 275, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/379": { + "type": "crafting_shaped", + "result": { + "id": 757, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/380": { + "type": "crafting_shaped", + "result": { + "id": 490, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/381": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 317, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/382": { + "type": "crafting_shaped", + "result": { + "id": 508, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 281, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/383": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 599, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/384": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 278, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/385": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 306, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/386": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 336, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/387": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 732, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/388": { + "type": "crafting_shaped", + "result": { + "id": 696, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 562, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/389": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 749, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/390": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 411, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/391": { + "type": "crafting_shapeless", + "result": { + "id": 200, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 199, + "amount": 1 + } + ], + [ + { + "id": 209, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/392": { + "type": "crafting_shaped", + "result": { + "id": 476, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 151, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/393": { + "type": "crafting_shaped", + "result": { + "id": 345, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/394": { + "type": "crafting_shaped", + "result": { + "id": 542, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 254, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/395": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 288, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/396": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 413, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/397": { + "type": "crafting_shaped", + "result": { + "id": 482, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/398": { + "type": "crafting_shaped", + "result": { + "id": 259, + "amount": 2 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 258, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 258, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/399": { + "type": "crafting_shaped", + "result": { + "id": 260, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [], + [], + [], + [], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/400": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 272, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/401": { + "type": "crafting_shaped", + "result": { + "id": 137, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 557, + "amount": 1 + } + ], + [ + { + "id": 557, + "amount": 1 + } + ], + [ + { + "id": 557, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/402": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 93, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/403": { + "type": "crafting_shaped", + "result": { + "id": 357, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/404": { + "type": "crafting_shaped", + "result": { + "id": 174, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/405": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 337, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/406": { + "type": "crafting_shaped", + "result": { + "id": 254, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/407": { + "type": "crafting_shaped", + "result": { + "id": 609, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/408": { + "type": "crafting_shaped", + "result": { + "id": 261, + "amount": 6 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/409": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 340, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/410": { + "type": "crafting_shaped", + "result": { + "id": 523, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/411": { + "type": "crafting_shaped", + "result": { + "id": 473, + "amount": 4 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 530, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 500, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/412": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 273, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/413": { + "type": "crafting_shaped", + "result": { + "id": 474, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 299, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/414": { + "type": "crafting_shapeless", + "group": "orange_dye", + "result": { + "id": 586, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 104, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/415": { + "type": "crafting_shaped", + "result": { + "id": 72, + "amount": 6 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/416": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/417": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 418, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/418": { + "type": "crafting_shaped", + "result": { + "id": 633, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/419": { + "type": "crafting_shaped", + "result": { + "id": 7, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 6, + "amount": 1 + } + ], + [ + { + "id": 6, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 6, + "amount": 1 + } + ], + [ + { + "id": 6, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/420": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 276, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/421": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 733, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/422": { + "type": "crafting_shaped", + "result": { + "id": 469, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/423": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 179, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/424": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 17, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 36, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/425": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 605, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/426": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 416, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/427": { + "type": "crafting_shaped", + "result": { + "id": 361, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/428": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 333, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/429": { + "type": "crafting_shaped", + "result": { + "id": 479, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 477, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/430": { + "type": "crafting_shaped", + "result": { + "id": 223, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 557, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/431": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 331, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/432": { + "type": "crafting_shaped", + "result": { + "id": 3, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 2, + "amount": 1 + } + ], + [ + { + "id": 2, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 2, + "amount": 1 + } + ], + [ + { + "id": 2, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/433": { + "type": "crafting_shaped", + "result": { + "id": 202, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [], + [ + { + "id": 123, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 123, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/434": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 741, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 492, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/435": { + "type": "crafting_shaped", + "result": { + "id": 262, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/436": { + "type": "crafting_shaped", + "result": { + "id": 349, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/437": { + "type": "crafting_shaped", + "result": { + "id": 746, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 632, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 621, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/438": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 595, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/439": { + "type": "crafting_shaped", + "result": { + "id": 564, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [] + ] + }, + "viaversion:legacy/440": { + "type": "crafting_shaped", + "result": { + "id": 607, + "amount": 8 + }, + "width": 3, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/441": { + "type": "crafting_shaped", + "result": { + "id": 110, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [], + [], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [] + ] + }, + "viaversion:legacy/442": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 290, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [] + ] + }, + "minecraft:baked_potato": { + "type": "smelting", + "ingredient": [ + { + "id": "693", + "amount": 1 + } + ], + "result": { + "id": "694", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:banner_duplicate": { + "type": "crafting_special_bannerduplicate" + }, + "minecraft:banner_add_pattern": { + "type": "crafting_special_banneraddpattern" + }, + "minecraft:quartz": { + "type": "smelting", + "ingredient": [ + { + "id": "255", + "amount": 1 + } + ], + "result": { + "id": "711", + "amount": 1 + }, + "experience": 0.2, + "cookingTime": 200 + }, + "minecraft:sponge": { + "type": "smelting", + "ingredient": [ + { + "id": "63", + "amount": 1 + } + ], + "result": { + "id": "62", + "amount": 1 + }, + "experience": 0.15, + "cookingTime": 200 + }, + "minecraft:iron_ingot": { + "type": "smelting", + "ingredient": [ + { + "id": "30", + "amount": 1 + } + ], + "result": { + "id": "477", + "amount": 1 + }, + "experience": 0.7, + "cookingTime": 200 + }, + "minecraft:tipped_arrow": { + "type": "crafting_special_tippedarrow" + }, + "minecraft:gold_ingot": { + "type": "smelting", + "ingredient": [ + { + "id": "29", + "amount": 1 + } + ], + "result": { + "id": "478", + "amount": 1 + }, + "experience": 1.0, + "cookingTime": 200 + }, + "minecraft:glass": { + "type": "smelting", + "ingredient": [ + { + "id": 27, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + "result": { + "id": "64", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:stone": { + "type": "smelting", + "ingredient": [ + { + "id": "12", + "amount": 1 + } + ], + "result": { + "id": "1", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:white_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "263", + "amount": 1 + } + ], + "result": { + "id": "379", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:diamond_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "150", + "amount": 1 + } + ], + "result": { + "id": "476", + "amount": 1 + }, + "experience": 1.0, + "cookingTime": 200 + }, + "minecraft:lapis_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "65", + "amount": 1 + } + ], + "result": { + "id": "576", + "amount": 1 + }, + "experience": 0.2, + "cookingTime": 200 + }, + "minecraft:emerald_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "230", + "amount": 1 + } + ], + "result": { + "id": "689", + "amount": 1 + }, + "experience": 1.0, + "cookingTime": 200 + }, + "minecraft:cooked_porkchop": { + "type": "smelting", + "ingredient": [ + { + "id": "531", + "amount": 1 + } + ], + "result": { + "id": "532", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:book_cloning": { + "type": "crafting_special_bookcloning" + }, + "minecraft:pink_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "269", + "amount": 1 + } + ], + "result": { + "id": "385", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:orange_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "264", + "amount": 1 + } + ], + "result": { + "id": "380", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:yellow_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "267", + "amount": 1 + } + ], + "result": { + "id": "383", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:iron_nugget_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "468", + "amount": 1 + }, + { + "id": "467", + "amount": 1 + }, + { + "id": "469", + "amount": 1 + }, + { + "id": "504", + "amount": 1 + }, + { + "id": "479", + "amount": 1 + }, + { + "id": "518", + "amount": 1 + }, + { + "id": "519", + "amount": 1 + }, + { + "id": "520", + "amount": 1 + }, + { + "id": "521", + "amount": 1 + }, + { + "id": "722", + "amount": 1 + }, + { + "id": "514", + "amount": 1 + }, + { + "id": "515", + "amount": 1 + }, + { + "id": "516", + "amount": 1 + }, + { + "id": "517", + "amount": 1 + } + ], + "result": { + "id": "766", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:dried_kelp_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "554", + "amount": 1 + } + ], + "result": { + "id": "611", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:redstone_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "166", + "amount": 1 + } + ], + "result": { + "id": "542", + "amount": 1 + }, + "experience": 0.7, + "cookingTime": 200 + }, + "minecraft:cooked_salmon": { + "type": "smelting", + "ingredient": [ + { + "id": "567", + "amount": 1 + } + ], + "result": { + "id": "571", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:map_extending": { + "type": "crafting_special_mapextending" + }, + "minecraft:green_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "276", + "amount": 1 + } + ], + "result": { + "id": "392", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:lime_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "268", + "amount": 1 + } + ], + "result": { + "id": "384", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:popped_chorus_fruit": { + "type": "smelting", + "ingredient": [ + { + "id": "747", + "amount": 1 + } + ], + "result": { + "id": "748", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:cactus_green": { + "type": "smelting", + "ingredient": [ + { + "id": "172", + "amount": 1 + } + ], + "result": { + "id": "574", + "amount": 1 + }, + "experience": 1.0, + "cookingTime": 200 + }, + "minecraft:cooked_cod": { + "type": "smelting", + "ingredient": [ + { + "id": "566", + "amount": 1 + } + ], + "result": { + "id": "570", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:magenta_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "265", + "amount": 1 + } + ], + "result": { + "id": "381", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:nether_brick": { + "type": "smelting", + "ingredient": [ + { + "id": "183", + "amount": 1 + } + ], + "result": { + "id": "710", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:light_gray_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "271", + "amount": 1 + } + ], + "result": { + "id": "387", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:blue_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "274", + "amount": 1 + } + ], + "result": { + "id": "390", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:cooked_mutton": { + "type": "smelting", + "ingredient": [ + { + "id": "728", + "amount": 1 + } + ], + "result": { + "id": "729", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:brown_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "275", + "amount": 1 + } + ], + "result": { + "id": "391", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:map_cloning": { + "type": "crafting_special_mapcloning" + }, + "minecraft:cracked_stone_bricks": { + "type": "smelting", + "ingredient": [ + { + "id": "199", + "amount": 1 + } + ], + "result": { + "id": "201", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:charcoal": { + "type": "smelting", + "ingredient": [ + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + }, + { + "id": 45, + "amount": 1 + } + ], + "result": { + "id": "475", + "amount": 1 + }, + "experience": 0.15, + "cookingTime": 200 + }, + "minecraft:black_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "278", + "amount": 1 + } + ], + "result": { + "id": "394", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:purple_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "273", + "amount": 1 + } + ], + "result": { + "id": "389", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:coal_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "31", + "amount": 1 + } + ], + "result": { + "id": "474", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:gray_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "270", + "amount": 1 + } + ], + "result": { + "id": "386", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:red_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "277", + "amount": 1 + } + ], + "result": { + "id": "393", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:brick": { + "type": "smelting", + "ingredient": [ + { + "id": "552", + "amount": 1 + } + ], + "result": { + "id": "551", + "amount": 1 + }, + "experience": 0.3, + "cookingTime": 200 + }, + "minecraft:light_blue_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "266", + "amount": 1 + } + ], + "result": { + "id": "382", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:firework_rocket": { + "type": "crafting_special_firework_rocket" + }, + "minecraft:gold_nugget_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "497", + "amount": 1 + }, + { + "id": "496", + "amount": 1 + }, + { + "id": "498", + "amount": 1 + }, + { + "id": "506", + "amount": 1 + }, + { + "id": "495", + "amount": 1 + }, + { + "id": "526", + "amount": 1 + }, + { + "id": "527", + "amount": 1 + }, + { + "id": "528", + "amount": 1 + }, + { + "id": "529", + "amount": 1 + }, + { + "id": "723", + "amount": 1 + } + ], + "result": { + "id": "622", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "173", + "amount": 1 + } + ], + "result": { + "id": "298", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:lime_dye_from_smelting": { + "type": "smelting", + "ingredient": [ + { + "id": "80", + "amount": 1 + } + ], + "result": { + "id": "582", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + }, + "minecraft:firework_star_fade": { + "type": "crafting_special_firework_star_fade" + }, + "minecraft:shulker_box_coloring": { + "type": "crafting_special_shulkerboxcoloring" + }, + "minecraft:cooked_chicken": { + "type": "smelting", + "ingredient": [ + { + "id": "616", + "amount": 1 + } + ], + "result": { + "id": "617", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:shield_decoration": { + "type": "crafting_special_shielddecoration" + }, + "minecraft:armor_dye": { + "type": "crafting_special_armordye" + }, + "minecraft:cooked_rabbit": { + "type": "smelting", + "ingredient": [ + { + "id": "716", + "amount": 1 + } + ], + "result": { + "id": "717", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:firework_star": { + "type": "crafting_special_firework_star" + }, + "minecraft:repair_item": { + "type": "crafting_special_repairitem" + }, + "minecraft:cooked_beef": { + "type": "smelting", + "ingredient": [ + { + "id": "614", + "amount": 1 + } + ], + "result": { + "id": "615", + "amount": 1 + }, + "experience": 0.35, + "cookingTime": 200 + }, + "minecraft:cyan_glazed_terracotta": { + "type": "smelting", + "ingredient": [ + { + "id": "272", + "amount": 1 + } + ], + "result": { + "id": "388", + "amount": 1 + }, + "experience": 0.1, + "cookingTime": 200 + } +} \ No newline at end of file From d6c4c18d3592533578a89a420a83a37bad80e15e Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Mon, 10 Dec 2018 12:13:32 -0200 Subject: [PATCH 2/5] still not working --- .../Protocol1_13To1_12_2.java | 5 +- .../protocol1_13to1_12_2/data/RecipeData.java | 2 +- .../data/itemrecipes1_12_2to1_13.json | 40684 ++++++++-------- 3 files changed, 19917 insertions(+), 20774 deletions(-) diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java index a2467c239..fb17d69e9 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java @@ -115,6 +115,7 @@ public class Protocol1_13To1_12_2 extends Protocol { for (Item[] ingredient : entry.getValue().getIngredients()) { Item[] clone = ingredient.clone(); // Clone because array and item is mutable for (int i = 0; i < clone.length; i++) { + if (clone[i] == null) continue; clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), (short) 0, null); } @@ -132,6 +133,7 @@ public class Protocol1_13To1_12_2 extends Protocol { for (Item[] ingredient : entry.getValue().getIngredients()) { Item[] clone = ingredient.clone(); // Clone because array and item is mutable for (int i = 0; i < clone.length; i++) { + if (clone[i] == null) continue; clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), (short) 0, null); } @@ -146,6 +148,7 @@ public class Protocol1_13To1_12_2 extends Protocol { wrapper.write(Type.STRING, entry.getValue().getGroup()); Item[] clone = entry.getValue().getIngredient().clone(); // Clone because array and item is mutable for (int i = 0; i < clone.length; i++) { + if (clone[i] == null) continue; clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), (short) 0, null); } @@ -523,7 +526,7 @@ public class Protocol1_13To1_12_2 extends Protocol { // New 0x31 - Face Player registerOutgoing(State.PLAY, 0x2F, 0x32); registerOutgoing(State.PLAY, 0x30, 0x33); - // Recipe + // Unlock recipes registerOutgoing(State.PLAY, 0x31, 0x34, new PacketRemapper() { @Override public void registerMap() { diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java index 2f2bf4e49..110f11388 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java @@ -43,7 +43,7 @@ public class RecipeData { public static class Recipe { @NonNull private String type; - private String group = ""; + private String group; private int width; private int height; private float experience; diff --git a/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json b/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json index f1c9bae82..83272174c 100644 --- a/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json +++ b/common/src/main/resources/assets/viaversion/data/itemrecipes1_12_2to1_13.json @@ -1,20 +1,21 @@ { "viaversion:legacy/11": { "type": "crafting_shapeless", + "group": "wool", "result": { - "id": 629, + "id": 86, "amount": 1 }, "ingredients": [ [ { - "id": 628, + "id": 583, "amount": 1 } ], [ { - "id": 558, + "id": 82, "amount": 1 } ] @@ -22,76 +23,113 @@ }, "viaversion:legacy/12": { "type": "crafting_shaped", + "group": "stained_hardened_clay", "result": { - "id": 232, - "amount": 2 + "id": 267, + "amount": 8 }, - "width": 1, + "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 477, + "id": 298, "amount": 1 } ], - [], - [], [ { - "id": 492, + "id": 298, "amount": 1 } ], - [], - [], [ { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, + "id": 298, "amount": 1 } ], - [] + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] ] }, "viaversion:legacy/13": { - "type": "crafting_shapeless", - "group": "dyed_bed", + "type": "crafting_shaped", + "group": "stained_glass_pane", "result": { - "id": 606, - "amount": 1 + "id": 331, + "amount": 16 }, + "width": 3, + "height": 2, "ingredients": [ [ { - "id": 591, + "id": 315, "amount": 1 } ], [ { - "id": 572, + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, + "amount": 1 + } + ], + [ + { + "id": 315, "amount": 1 } ] @@ -99,5938 +137,103 @@ }, "viaversion:legacy/14": { "type": "crafting_shaped", + "group": "stained_glass", "result": { - "id": 488, - "amount": 1 + "id": 315, + "amount": 8 }, - "width": 1, + "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 476, + "id": 64, "amount": 1 } ], - [], - [], [ { - "id": 476, + "id": 64, "amount": 1 } ], - [], - [], [ { - "id": 492, + "id": 64, "amount": 1 } ], - [] + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] ] }, "viaversion:legacy/15": { - "type": "crafting_shaped", + "type": "crafting_shapeless", + "group": "yellow_dye", "result": { - "id": 157, - "amount": 4 + "id": 583, + "amount": 2 }, - "width": 3, - "height": 3, "ingredients": [ - [], [ { - "id": 12, + "id": 305, "amount": 1 } - ], - [], - [], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] + ] ] }, "viaversion:legacy/16": { - "type": "crafting_shaped", + "type": "crafting_shapeless", + "group": "yellow_dye", "result": { - "id": 124, - "amount": 6 + "id": 583, + "amount": 1 }, - "width": 3, - "height": 1, "ingredients": [ - [], [ { - "id": 220, + "id": 98, "amount": 1 } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [] + ] ] }, "viaversion:legacy/17": { - "type": "crafting_shaped", - "result": { - "id": 485, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/18": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 268, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 582, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/19": { - "type": "crafting_shaped", - "result": { - "id": 152, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/20": { - "type": "crafting_shapeless", - "result": { - "id": 632, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 619, - "amount": 1 - } - ], - [ - { - "id": 628, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/21": { - "type": "crafting_shaped", - "group": "rabbit_stew", - "result": { - "id": 718, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 717, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 692, - "amount": 1 - } - ], - [ - { - "id": 694, - "amount": 1 - } - ], - [ - { - "id": 109, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 493, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/22": { - "type": "crafting_shaped", - "result": { - "id": 226, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 225, - "amount": 1 - } - ], - [ - { - "id": 225, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 225, - "amount": 1 - } - ], - [ - { - "id": 225, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/23": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 325, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/24": { - "type": "crafting_shaped", - "group": "wooden_door", - "result": { - "id": 456, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/25": { - "type": "crafting_shaped", - "result": { - "id": 207, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/26": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 604, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 574, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/27": { - "type": "crafting_shaped", - "group": "wooden_fence", - "result": { - "id": 175, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/28": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 97, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 572, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/29": { - "type": "crafting_shaped", - "result": { - "id": 527, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/30": { - "type": "crafting_shaped", - "result": { - "id": 228, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 185, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/31": { - "type": "crafting_shaped", - "result": { - "id": 467, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/32": { - "type": "crafting_shaped", - "group": "gold_ingot", - "result": { - "id": 478, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/33": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 318, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 580, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/34": { - "type": "crafting_shapeless", - "group": "bonemeal", - "result": { - "id": 587, - "amount": 3 - }, - "ingredients": [ - [ - { - "id": 588, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/35": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 739, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/36": { - "type": "crafting_shaped", - "group": "planks", - "result": { - "id": 16, - "amount": 4 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 35, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/37": { - "type": "crafting_shaped", - "group": "wooden_stairs", - "result": { - "id": 148, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/38": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 605, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/39": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 599, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 579, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/40": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 594, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/41": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 417, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 581, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/42": { - "type": "crafting_shaped", - "result": { - "id": 545, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 720, - "amount": 1 - } - ], - [ - { - "id": 720, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 720, - "amount": 1 - } - ], - [ - { - "id": 720, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/43": { - "type": "crafting_shaped", - "result": { - "id": 513, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/44": { - "type": "crafting_shaped", - "result": { - "id": 712, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 136, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 540, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/45": { - "type": "crafting_shapeless", - "group": "pink_dye", - "result": { - "id": 581, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 106, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/46": { - "type": "crafting_shaped", - "group": "planks", - "result": { - "id": 13, - "amount": 4 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 32, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/47": { - "type": "crafting_shaped", - "result": { - "id": 256, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 149, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/48": { - "type": "crafting_shaped", - "result": { - "id": 74, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 558, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 81, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/49": { - "type": "crafting_shapeless", - "group": "red_dye", - "result": { - "id": 573, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 103, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/50": { - "type": "crafting_shaped", - "group": "gold_ingot", - "result": { - "id": 478, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 110, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/51": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 289, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/52": { - "type": "crafting_shaped", - "result": { - "id": 751, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 749, - "amount": 1 - } - ], - [ - { - "id": 749, - "amount": 1 - } - ], - [ - { - "id": 749, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 749, - "amount": 1 - } - ], - [ - { - "id": 749, - "amount": 1 - } - ], - [ - { - "id": 749, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 493, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/53": { - "type": "crafting_shaped", - "result": { - "id": 126, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/54": { - "type": "crafting_shaped", - "result": { - "id": 518, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/55": { - "type": "crafting_shaped", - "group": "wooden_slab", - "result": { - "id": 117, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/56": { - "type": "crafting_shaped", - "result": { - "id": 556, - "amount": 3 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 553, - "amount": 1 - } - ], - [ - { - "id": 553, - "amount": 1 - } - ], - [ - { - "id": 553, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/57": { - "type": "crafting_shaped", - "result": { - "id": 560, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 154, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 540, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/58": { - "type": "crafting_shaped", - "result": { - "id": 173, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 552, - "amount": 1 - } - ], - [ - { - "id": 552, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 552, - "amount": 1 - } - ], - [ - { - "id": 552, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/59": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 312, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 586, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/60": { - "type": "crafting_shaped", - "group": "wooden_fence_gate", - "result": { - "id": 211, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/61": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 604, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/62": { - "type": "crafting_shaped", - "group": "wooden_fence_gate", - "result": { - "id": 215, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/63": { - "type": "crafting_shaped", - "result": { - "id": 4, - "amount": 2 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 711, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/64": { - "type": "crafting_shaped", - "result": { - "id": 487, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/65": { - "type": "crafting_shaped", - "result": { - "id": 217, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/66": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 95, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 574, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/67": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 603, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 575, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/68": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 606, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 97, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/69": { - "type": "crafting_shaped", - "result": { - "id": 127, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 144, - "amount": 1 - } - ], - [ - { - "id": 144, - "amount": 1 - } - ], - [ - { - "id": 144, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/70": { - "type": "crafting_shaped", - "result": { - "id": 351, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 126, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 126, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/71": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 90, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 579, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/72": { - "type": "crafting_shapeless", - "group": "pink_dye", - "result": { - "id": 581, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/73": { - "type": "crafting_shaped", - "result": { - "id": 171, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 543, - "amount": 1 - } - ], - [ - { - "id": 543, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 543, - "amount": 1 - } - ], - [ - { - "id": 543, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/74": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 265, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 585, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/75": { - "type": "crafting_shaped", - "group": "wooden_door", - "result": { - "id": 457, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/76": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 92, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 577, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/77": { - "type": "crafting_shaped", - "result": { - "id": 208, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/78": { - "type": "crafting_shapeless", - "result": { - "id": 582, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 574, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/79": { - "type": "crafting_shaped", - "result": { - "id": 576, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 66, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/80": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 271, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 579, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/81": { - "type": "crafting_shapeless", - "group": "magenta_dye", - "result": { - "id": 585, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 577, - "amount": 1 - } - ], - [ - { - "id": 581, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/82": { - "type": "crafting_shaped", - "result": { - "id": 563, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 499, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/83": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 277, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/84": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 597, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 88, - "amount": 1 - } - ], - [ - { - "id": 88, - "amount": 1 - } - ], - [ - { - "id": 88, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/85": { - "type": "crafting_shaped", - "result": { - "id": 144, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 748, - "amount": 1 - } - ], - [ - { - "id": 748, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 748, - "amount": 1 - } - ], - [ - { - "id": 748, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/86": { - "type": "crafting_shapeless", - "group": "red_dye", - "result": { - "id": 573, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 307, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/87": { - "type": "crafting_shaped", - "result": { - "id": 359, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/88": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 89, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 580, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/89": { - "type": "crafting_shaped", - "group": "wooden_fence_gate", - "result": { - "id": 212, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/90": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 314, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 584, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/91": { - "type": "crafting_shaped", - "result": { - "id": 528, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/92": { - "type": "crafting_shaped", - "result": { - "id": 251, - "amount": 1 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/93": { - "type": "crafting_shaped", - "result": { - "id": 504, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/94": { - "type": "crafting_shaped", - "result": { - "id": 455, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/95": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 324, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 574, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/96": { - "type": "crafting_shaped", - "result": { - "id": 463, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 167, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 167, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ], - [ - { - "id": 167, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/97": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 421, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 577, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/98": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 600, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 578, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/99": { - "type": "crafting_shapeless", - "result": { - "id": 706, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 182, - "amount": 1 - } - ], - [ - { - "id": 589, - "amount": 1 - } - ], - [ - { - "id": 561, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/100": { - "type": "crafting_shaped", - "result": { - "id": 505, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/101": { - "type": "crafting_shaped", - "result": { - "id": 521, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/102": { - "type": "crafting_shaped", - "result": { - "id": 122, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 135, - "amount": 1 - } - ], - [ - { - "id": 135, - "amount": 1 - } - ], - [ - { - "id": 135, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/103": { - "type": "crafting_shaped", - "result": { - "id": 222, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 220, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/104": { - "type": "crafting_shapeless", - "result": { - "id": 250, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 149, - "amount": 1 - } - ], - [ - { - "id": 232, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/105": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 274, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/106": { - "type": "crafting_shaped", - "group": "wooden_fence", - "result": { - "id": 180, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/107": { - "type": "crafting_shaped", - "result": { - "id": 498, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/108": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 91, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 578, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/109": { - "type": "crafting_shapeless", - "group": "magenta_dye", - "result": { - "id": 585, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 101, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/110": { - "type": "crafting_shapeless", - "result": { - "id": 577, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 573, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/111": { - "type": "crafting_shapeless", - "group": "red_dye", - "result": { - "id": 573, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 99, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/112": { - "type": "crafting_shaped", - "result": { - "id": 352, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 350, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 350, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/113": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 338, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 322, - "amount": 1 - } - ], - [ - { - "id": 322, - "amount": 1 - } - ], - [ - { - "id": 322, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 322, - "amount": 1 - } - ], - [ - { - "id": 322, - "amount": 1 - } - ], - [ - { - "id": 322, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/114": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 731, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/115": { - "type": "crafting_shaped", - "result": { - "id": 125, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/116": { - "type": "crafting_shaped", - "result": { - "id": 154, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/117": { - "type": "crafting_shaped", - "result": { - "id": 506, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/118": { - "type": "crafting_shaped", - "result": { - "id": 519, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/119": { - "type": "crafting_shapeless", - "group": "light_gray_dye", - "result": { - "id": 579, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 105, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/120": { - "type": "crafting_shaped", - "group": "wooden_stairs", - "result": { - "id": 302, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/121": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 597, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 581, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/122": { - "type": "crafting_shaped", - "result": { - "id": 258, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 711, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 711, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/123": { - "type": "crafting_shapeless", - "result": { - "id": 580, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 572, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/124": { - "type": "crafting_shaped", - "group": "planks", - "result": { - "id": 14, - "amount": 4 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 33, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/125": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 745, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 97, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 97, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/126": { - "type": "crafting_shaped", - "result": { - "id": 156, - "amount": 16 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/127": { - "type": "crafting_shaped", - "group": "wooden_slab", - "result": { - "id": 116, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/128": { - "type": "crafting_shaped", - "result": { - "id": 725, - "amount": 2 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [ - { - "id": 499, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [], - [], - [], - [], - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/129": { - "type": "crafting_shapeless", - "group": "light_gray_dye", - "result": { - "id": 579, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 107, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/130": { - "type": "crafting_shaped", - "result": { - "id": 149, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/131": { - "type": "crafting_shaped", - "result": { - "id": 303, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 558, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 558, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 558, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [ - { - "id": 558, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/132": { - "type": "crafting_shaped", - "result": { - "id": 373, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 765, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 149, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 765, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/133": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 332, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 316, - "amount": 1 - } - ], - [ - { - "id": 316, - "amount": 1 - } - ], - [ - { - "id": 316, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 316, - "amount": 1 - } - ], - [ - { - "id": 316, - "amount": 1 - } - ], - [ - { - "id": 316, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/134": { - "type": "crafting_shaped", - "result": { - "id": 590, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 546, - "amount": 1 - } - ], - [ - { - "id": 546, - "amount": 1 - } - ], - [ - { - "id": 546, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 589, - "amount": 1 - } - ], - [ - { - "id": 561, - "amount": 1 - } - ], - [ - { - "id": 589, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/135": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 270, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 580, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/136": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 287, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/137": { "type": "crafting_shapeless", "group": "concrete_powder", "result": { @@ -6094,849 +297,35 @@ ] ] }, - "viaversion:legacy/138": { - "type": "crafting_shaped", - "result": { - "id": 481, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/139": { - "type": "crafting_shaped", - "result": { - "id": 690, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/140": { - "type": "crafting_shaped", - "result": { - "id": 510, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/141": { - "type": "crafting_shaped", - "result": { - "id": 754, - "amount": 2 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 565, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 565, - "amount": 1 - } - ], - [ - { - "id": 473, - "amount": 1 - } - ], - [ - { - "id": 565, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 565, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/142": { - "type": "crafting_shapeless", - "group": "yellow_dye", - "result": { - "id": 583, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 305, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/143": { - "type": "crafting_shaped", - "result": { - "id": 630, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [], - [ - { - "id": 620, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/144": { - "type": "crafting_shaped", - "result": { - "id": 483, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/145": { - "type": "crafting_shaped", - "result": { - "id": 121, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/146": { - "type": "crafting_shaped", - "result": { - "id": 462, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 167, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 167, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/147": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 735, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/148": { - "type": "crafting_shaped", - "result": { - "id": 240, - "amount": 6 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 138, - "amount": 1 - } - ], - [ - { - "id": 138, - "amount": 1 - } - ], - [ - { - "id": 138, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 138, - "amount": 1 - } - ], - [ - { - "id": 138, - "amount": 1 - } - ], - [ - { - "id": 138, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/149": { - "type": "crafting_shaped", - "group": "wooden_door", - "result": { - "id": 458, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/150": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 328, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 312, - "amount": 1 - } - ], - [ - { - "id": 312, - "amount": 1 - } - ], - [ - { - "id": 312, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 312, - "amount": 1 - } - ], - [ - { - "id": 312, - "amount": 1 - } - ], - [ - { - "id": 312, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/151": { - "type": "crafting_shaped", - "result": { - "id": 540, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/152": { - "type": "crafting_shaped", - "result": { - "id": 520, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/153": { + "viaversion:legacy/18": { "type": "crafting_shaped", "group": "carpet", "result": { - "id": 297, + "id": 286, "amount": 3 }, "width": 2, "height": 1, "ingredients": [ - [], [ { - "id": 97, + "id": 86, "amount": 1 } ], [ { - "id": 97, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/154": { - "type": "crafting_shapeless", - "group": "light_gray_dye", - "result": { - "id": 579, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 102, + "id": 86, "amount": 1 } ] ] }, - "viaversion:legacy/155": { + "viaversion:legacy/19": { "type": "crafting_shapeless", "group": "dyed_bed", "result": { - "id": 596, + "id": 595, "amount": 1 }, "ingredients": [ @@ -6948,37 +337,40 @@ ], [ { - "id": 582, + "id": 583, "amount": 1 } ] ] }, - "viaversion:legacy/156": { - "type": "crafting_shapeless", - "result": { - "id": 628, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 620, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/157": { + "viaversion:legacy/20": { "type": "crafting_shaped", + "group": "bed", "result": { - "id": 160, + "id": 595, "amount": 1 }, - "width": 2, - "height": 1, + "width": 3, + "height": 2, "ingredients": [ - [], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + { + "id": 86, + "amount": 1 + } + ], [ { "id": 13, @@ -7031,273 +423,97 @@ "amount": 1 } ], - [] - ] - }, - "viaversion:legacy/158": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 601, - "amount": 1 - }, - "ingredients": [ [ { - "id": 591, + "id": 13, "amount": 1 - } - ], - [ + }, { - "id": 577, + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ] ] }, - "viaversion:legacy/159": { + "viaversion:legacy/21": { "type": "crafting_shaped", "group": "banner", "result": { - "id": 742, + "id": 734, "amount": 1 }, "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 94, + "id": 86, "amount": 1 } ], [ { - "id": 94, + "id": 86, "amount": 1 } ], [ { - "id": 94, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 94, + "id": 86, "amount": 1 } ], [ { - "id": 94, + "id": 86, "amount": 1 } ], [ { - "id": 94, + "id": 86, "amount": 1 } ], - [], - [], - [], + [ + { + "id": 86, + "amount": 1 + } + ], + [ + null + ], [ { "id": 492, "amount": 1 } ], - [], - [] - ] - }, - "viaversion:legacy/160": { - "type": "crafting_shaped", - "result": { - "id": 70, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], [ - { - "id": 68, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 68, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/161": { - "type": "crafting_shaped", - "result": { - "id": 480, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/162": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 422, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } + null ] ] }, - "viaversion:legacy/163": { + "viaversion:legacy/22": { "type": "crafting_shapeless", + "group": "", "result": { "id": 687, "amount": 1 @@ -7323,159 +539,200 @@ ] ] }, - "viaversion:legacy/164": { + "viaversion:legacy/23": { "type": "crafting_shaped", + "group": "", "result": { - "id": 468, + "id": 480, "amount": 1 }, - "width": 3, + "width": 1, "height": 3, "ingredients": [ - [], [ { - "id": 477, + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ], [ { - "id": 477, + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ], [ { - "id": 477, + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/24": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 481, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ], - [], - [], - [], [ { "id": 492, "amount": 1 } ], - [], - [], - [], - [], [ { "id": 492, "amount": 1 } - ], - [], - [] + ] ] }, - "viaversion:legacy/165": { + "viaversion:legacy/25": { "type": "crafting_shaped", + "group": "", "result": { - "id": 238, + "id": 160, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/26": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 482, "amount": 1 }, "width": 3, "height": 3, "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 705, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/166": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 603, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 94, - "amount": 1 - } - ], - [ - { - "id": 94, - "amount": 1 - } - ], - [ - { - "id": 94, - "amount": 1 - } - ], - [], - [], [ { "id": 13, @@ -7554,755 +811,35 @@ "amount": 1 } ], - [] - ] - }, - "viaversion:legacy/167": { - "type": "crafting_shaped", - "result": { - "id": 511, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], [ - { - "id": 545, - "amount": 1 - } + null ], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/168": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 319, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 579, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/169": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 284, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/170": { - "type": "crafting_shaped", - "result": { - "id": 119, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/171": { - "type": "crafting_shaped", - "result": { - "id": 73, - "amount": 6 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 159, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/172": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 738, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 90, - "amount": 1 - } - ], - [ - { - "id": 90, - "amount": 1 - } - ], - [ - { - "id": 90, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 90, - "amount": 1 - } - ], - [ - { - "id": 90, - "amount": 1 - } - ], - [ - { - "id": 90, - "amount": 1 - } - ], - [], - [], - [], [ { "id": 492, "amount": 1 } ], - [], - [] + [ + null + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] ] }, - "viaversion:legacy/173": { - "type": "crafting_shaped", - "result": { - "id": 704, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 563, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 692, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/174": { - "type": "crafting_shaped", - "group": "wooden_door", - "result": { - "id": 461, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/175": { - "type": "crafting_shaped", - "group": "wooden_stairs", - "result": { - "id": 235, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/176": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 283, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/177": { - "type": "crafting_shaped", - "group": "boat", - "result": { - "id": 760, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/178": { - "type": "crafting_shaped", - "result": { - "id": 512, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [], - [ - { - "id": 545, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/179": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 322, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/180": { - "type": "crafting_shaped", - "result": { - "id": 221, - "amount": 6 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [ - { - "id": 220, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/181": { + "viaversion:legacy/27": { "type": "crafting_shaped", + "group": "", "result": { "id": 502, "amount": 1 @@ -8310,7 +847,6 @@ "width": 2, "height": 3, "ingredients": [ - [], [ { "id": 13, @@ -8363,4600 +899,218 @@ "amount": 1 } ], - [], - [], - [], + [ + null + ], [ { "id": 492, "amount": 1 } ], - [], - [], - [], + [ + null + ], [ { "id": 492, "amount": 1 } - ], - [] + ] ] }, - "viaversion:legacy/182": { + "viaversion:legacy/28": { "type": "crafting_shaped", + "group": "wooden_door", "result": { - "id": 525, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/183": { - "type": "crafting_shapeless", - "group": "yellow_dye", - "result": { - "id": 583, - "amount": 1 + "id": 456, + "amount": 3 }, + "width": 2, + "height": 3, "ingredients": [ [ { - "id": 98, + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, "amount": 1 } ] ] }, - "viaversion:legacy/184": { - "type": "crafting_shapeless", - "group": "magenta_dye", - "result": { - "id": 585, - "amount": 4 - }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/185": { + "viaversion:legacy/29": { "type": "crafting_shaped", - "group": "stained_glass_pane", + "group": "", "result": { - "id": 339, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 323, - "amount": 1 - } - ], - [ - { - "id": 323, - "amount": 1 - } - ], - [ - { - "id": 323, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 323, - "amount": 1 - } - ], - [ - { - "id": 323, - "amount": 1 - } - ], - [ - { - "id": 323, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/186": { - "type": "crafting_shaped", - "result": { - "id": 589, + "id": 241, "amount": 1 }, "width": 1, "height": 1, "ingredients": [ - [], [ { - "id": 553, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/187": { - "type": "crafting_shaped", - "result": { - "id": 697, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 692, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/188": { - "type": "crafting_shaped", - "result": { - "id": 68, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/189": { - "type": "crafting_shapeless", - "result": { - "id": 686, - "amount": 3 - }, - "ingredients": [ - [ - { - "id": 501, - "amount": 1 - } - ], - [ - { - "id": 628, - "amount": 1 - } - ], - [ - { - "id": 474, + "id": 13, "amount": 1 }, { - "id": 475, + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ] ] }, - "viaversion:legacy/190": { + "viaversion:legacy/30": { "type": "crafting_shaped", - "group": "boat", + "group": "", "result": { - "id": 763, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/191": { - "type": "crafting_shaped", - "result": { - "id": 536, - "amount": 3 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/192": { - "type": "crafting_shaped", - "result": { - "id": 612, - "amount": 4 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 182, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/193": { - "type": "crafting_shaped", - "result": { - "id": 159, - "amount": 1 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/194": { - "type": "crafting_shaped", - "result": { - "id": 350, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 27, - "amount": 1 - } - ], - [ - { - "id": 27, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 27, - "amount": 1 - } - ], - [ - { - "id": 27, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/195": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 83, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 586, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/196": { - "type": "crafting_shaped", - "result": { - "id": 66, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/197": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 602, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 576, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/198": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 316, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 582, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/199": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 341, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 325, - "amount": 1 - } - ], - [ - { - "id": 325, - "amount": 1 - } - ], - [ - { - "id": 325, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 325, - "amount": 1 - } - ], - [ - { - "id": 325, - "amount": 1 - } - ], - [ - { - "id": 325, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/200": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 426, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 572, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/201": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 335, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 319, - "amount": 1 - } - ], - [ - { - "id": 319, - "amount": 1 - } - ], - [ - { - "id": 319, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 319, - "amount": 1 - } - ], - [ - { - "id": 319, - "amount": 1 - } - ], - [ - { - "id": 319, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/202": { - "type": "crafting_shaped", - "result": { - "id": 524, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/203": { - "type": "crafting_shaped", - "result": { - "id": 123, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [ - { - "id": 199, - "amount": 1 - }, - { - "id": 200, - "amount": 1 - }, - { - "id": 201, - "amount": 1 - }, - { - "id": 202, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/204": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 267, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 583, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/205": { - "type": "crafting_shaped", - "result": { - "id": 216, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 135, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 135, - "amount": 1 - } - ], - [ - { - "id": 135, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 135, - "amount": 1 - } - ], - [ - { - "id": 135, - "amount": 1 - } - ], - [ - { - "id": 135, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/206": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 419, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 579, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/207": { - "type": "crafting_shaped", - "result": { - "id": 713, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 256, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 540, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/208": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 592, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [ - { - "id": 83, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/209": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 744, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/210": { - "type": "crafting_shaped", - "result": { - "id": 158, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/211": { - "type": "crafting_shaped", - "result": { - "id": 486, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/212": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 326, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 572, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/213": { - "type": "crafting_shaped", - "result": { - "id": 343, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/214": { - "type": "crafting_shaped", - "group": "wooden_fence_gate", - "result": { - "id": 210, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/215": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 311, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/216": { - "type": "crafting_shaped", - "group": "wooden_fence_gate", - "result": { - "id": 213, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/217": { - "type": "crafting_shapeless", - "group": "bonemeal", - "result": { - "id": 587, - "amount": 9 - }, - "ingredients": [ - [ - { - "id": 359, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/218": { - "type": "crafting_shapeless", - "group": "orange_dye", - "result": { - "id": 586, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 583, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/219": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 293, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/220": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 602, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/221": { - "type": "crafting_shaped", - "result": { - "id": 220, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 710, - "amount": 1 - } - ], - [ - { - "id": 710, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 710, - "amount": 1 - } - ], - [ - { - "id": 710, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/222": { - "type": "crafting_shaped", - "group": "wooden_fence", - "result": { - "id": 177, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/223": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 291, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/224": { - "type": "crafting_shaped", - "result": { - "id": 118, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/225": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 294, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 94, - "amount": 1 - } - ], - [ - { - "id": 94, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/226": { - "type": "crafting_shaped", - "group": "iron_ingot", - "result": { - "id": 477, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 766, - "amount": 1 - } - ], - [ - { - "id": 766, - "amount": 1 - } - ], - [ - { - "id": 766, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 766, - "amount": 1 - } - ], - [ - { - "id": 766, - "amount": 1 - } - ], - [ - { - "id": 766, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 766, - "amount": 1 - } - ], - [ - { - "id": 766, - "amount": 1 - } - ], - [ - { - "id": 766, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/227": { - "type": "crafting_shaped", - "result": { - "id": 169, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 171, - "amount": 1 - } - ], - [ - { - "id": 171, - "amount": 1 - } - ], - [ - { - "id": 171, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/228": { - "type": "crafting_shapeless", - "group": "light_blue_dye", - "result": { - "id": 584, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/229": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 94, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 575, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/230": { - "type": "crafting_shaped", - "result": { - "id": 257, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 125, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 125, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/231": { - "type": "crafting_shaped", - "result": { - "id": 503, + "id": 483, "amount": 1 }, "width": 2, "height": 3, "ingredients": [ - [], [ { - "id": 12, + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ], [ { - "id": 12, + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, "amount": 1 } ], - [], - [], - [], [ { "id": 492, "amount": 1 } ], - [], - [], - [], + [ + null + ], [ { "id": 492, "amount": 1 } - ], - [] - ] - }, - "viaversion:legacy/232": { - "type": "crafting_shaped", - "result": { - "id": 81, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/233": { - "type": "crafting_shaped", - "result": { - "id": 10, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 9, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 9, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/234": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 96, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } ] ] }, - "viaversion:legacy/235": { - "type": "crafting_shaped", - "result": { - "id": 691, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 551, - "amount": 1 - } - ], - [], - [ - { - "id": 551, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 551, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/236": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 266, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 584, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/237": { - "type": "crafting_shaped", - "result": { - "id": 145, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 127, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 127, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/238": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 86, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 583, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/239": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 425, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/240": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 596, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [ - { - "id": 87, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/241": { - "type": "crafting_shaped", - "group": "wooden_slab", - "result": { - "id": 114, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [ - { - "id": 15, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/242": { - "type": "crafting_shaped", - "result": { - "id": 280, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/243": { - "type": "crafting_shaped", - "result": { - "id": 496, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/244": { - "type": "crafting_shaped", - "result": { - "id": 229, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [ - { - "id": 68, - "amount": 1 - }, - { - "id": 69, - "amount": 1 - }, - { - "id": 70, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/245": { - "type": "crafting_shaped", - "group": "iron_ingot", - "result": { - "id": 477, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 111, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/246": { - "type": "crafting_shaped", - "group": "boat", - "result": { - "id": 759, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/247": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 313, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 585, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/248": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 269, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 581, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/249": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 315, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 583, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/250": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 286, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/251": { - "type": "crafting_shaped", - "group": "wooden_fence_gate", - "result": { - "id": 214, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/252": { - "type": "crafting_shaped", - "result": { - "id": 187, - "amount": 2 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/253": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 593, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 585, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/254": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 334, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 318, - "amount": 1 - } - ], - [ - { - "id": 318, - "amount": 1 - } - ], - [ - { - "id": 318, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 318, - "amount": 1 - } - ], - [ - { - "id": 318, - "amount": 1 - } - ], - [ - { - "id": 318, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/255": { - "type": "crafting_shaped", - "result": { - "id": 491, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/256": { - "type": "crafting_shaped", - "result": { - "id": 239, - "amount": 6 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/257": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 282, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/258": { - "type": "crafting_shaped", - "group": "boat", - "result": { - "id": 762, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/259": { - "type": "crafting_shaped", - "group": "wooden_slab", - "result": { - "id": 112, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/260": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 592, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 586, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/261": { - "type": "crafting_shapeless", - "group": "pink_dye", - "result": { - "id": 581, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 308, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/262": { - "type": "crafting_shaped", - "result": { - "id": 247, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 111, - "amount": 1 - } - ], - [ - { - "id": 111, - "amount": 1 - } - ], - [ - { - "id": 111, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/263": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 601, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/264": { - "type": "crafting_shaped", - "result": { - "id": 233, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 689, - "amount": 1 - } - ], - [ - { - "id": 689, - "amount": 1 - } - ], - [ - { - "id": 689, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 689, - "amount": 1 - } - ], - [ - { - "id": 689, - "amount": 1 - } - ], - [ - { - "id": 689, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 689, - "amount": 1 - } - ], - [ - { - "id": 689, - "amount": 1 - } - ], - [ - { - "id": 689, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/265": { - "type": "crafting_shaped", - "group": "wooden_stairs", - "result": { - "id": 234, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/266": { - "type": "crafting_shaped", - "result": { - "id": 155, - "amount": 3 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/267": { - "type": "crafting_shapeless", - "result": { - "id": 138, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 209, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/268": { - "type": "crafting_shaped", - "result": { - "id": 185, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 565, - "amount": 1 - } - ], - [ - { - "id": 565, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 565, - "amount": 1 - } - ], - [ - { - "id": 565, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/269": { - "type": "crafting_shapeless", - "result": { - "id": 470, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 530, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/270": { - "type": "crafting_shaped", - "result": { - "id": 559, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 149, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 540, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/271": { - "type": "crafting_shapeless", - "result": { - "id": 557, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 545, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/272": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 423, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 575, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/273": { + "viaversion:legacy/31": { "type": "crafting_shaped", "group": "stained_hardened_clay", "result": { @@ -12966,7 +1120,6 @@ "width": 3, "height": 3, "ingredients": [ - [], [ { "id": 298, @@ -12985,8 +1138,6 @@ "amount": 1 } ], - [], - [], [ { "id": 298, @@ -13005,8 +1156,6 @@ "amount": 1 } ], - [], - [], [ { "id": 298, @@ -13024,5165 +1173,10 @@ "id": 298, "amount": 1 } - ], - [] - ] - }, - "viaversion:legacy/274": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 320, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 578, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/275": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 736, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 88, - "amount": 1 - } - ], - [ - { - "id": 88, - "amount": 1 - } - ], - [ - { - "id": 88, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 88, - "amount": 1 - } - ], - [ - { - "id": 88, - "amount": 1 - } - ], - [ - { - "id": 88, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/276": { - "type": "crafting_shaped", - "result": { - "id": 492, - "amount": 4 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/277": { - "type": "crafting_shaped", - "result": { - "id": 146, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 144, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 144, - "amount": 1 - } - ], - [ - { - "id": 144, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 144, - "amount": 1 - } - ], - [ - { - "id": 144, - "amount": 1 - } - ], - [ - { - "id": 144, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/278": { - "type": "crafting_shaped", - "result": { - "id": 631, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/279": { - "type": "crafting_shaped", - "result": { - "id": 533, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - }, - { - "id": 83, - "amount": 1 - }, - { - "id": 84, - "amount": 1 - }, - { - "id": 85, - "amount": 1 - }, - { - "id": 86, - "amount": 1 - }, - { - "id": 87, - "amount": 1 - }, - { - "id": 88, - "amount": 1 - }, - { - "id": 89, - "amount": 1 - }, - { - "id": 90, - "amount": 1 - }, - { - "id": 91, - "amount": 1 - }, - { - "id": 92, - "amount": 1 - }, - { - "id": 93, - "amount": 1 - }, - { - "id": 94, - "amount": 1 - }, - { - "id": 95, - "amount": 1 - }, - { - "id": 96, - "amount": 1 - }, - { - "id": 97, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/280": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 292, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/281": { - "type": "crafting_shaped", - "result": { - "id": 534, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 471, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/282": { - "type": "crafting_shaped", - "result": { - "id": 5, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 4, - "amount": 1 - } - ], - [ - { - "id": 4, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 4, - "amount": 1 - } - ], - [ - { - "id": 4, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/283": { - "type": "crafting_shaped", - "result": { - "id": 168, - "amount": 1 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/284": { - "type": "crafting_shaped", - "result": { - "id": 199, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 1, - "amount": 1 - } - ], - [ - { - "id": 1, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/285": { - "type": "crafting_shaped", - "result": { - "id": 489, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/286": { - "type": "crafting_shaped", - "result": { - "id": 766, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/287": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 593, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/288": { - "type": "crafting_shaped", - "result": { - "id": 135, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 551, - "amount": 1 - } - ], - [ - { - "id": 551, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 551, - "amount": 1 - } - ], - [ - { - "id": 551, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/289": { - "type": "crafting_shaped", - "result": { - "id": 140, - "amount": 4 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 474, - "amount": 1 - }, - { - "id": 475, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/290": { - "type": "crafting_shaped", - "result": { - "id": 622, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/291": { - "type": "crafting_shapeless", - "result": { - "id": 578, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 574, - "amount": 1 - } ] ] }, - "viaversion:legacy/292": { - "type": "crafting_shaped", - "result": { - "id": 67, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 472, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/293": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 743, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/294": { - "type": "crafting_shaped", - "result": { - "id": 82, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [ - { - "id": 499, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [ - { - "id": 499, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/295": { - "type": "crafting_shaped", - "result": { - "id": 136, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 501, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - }, - { - "id": 27, - "amount": 1 - } - ], - [ - { - "id": 501, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 26, - "amount": 1 - }, - { - "id": 27, - "amount": 1 - } - ], - [ - { - "id": 501, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - }, - { - "id": 27, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 501, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - }, - { - "id": 27, - "amount": 1 - } - ], - [ - { - "id": 501, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/296": { - "type": "crafting_shaped", - "result": { - "id": 356, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 629, - "amount": 1 - } - ], - [ - { - "id": 629, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 629, - "amount": 1 - } - ], - [ - { - "id": 629, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/297": { - "type": "crafting_shaped", - "result": { - "id": 241, - "amount": 1 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/298": { - "type": "crafting_shaped", - "result": { - "id": 613, - "amount": 1 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 610, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/299": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 323, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 575, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/300": { - "type": "crafting_shaped", - "result": { - "id": 558, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 303, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/301": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 594, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 584, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/302": { - "type": "crafting_shapeless", - "group": "dyed_bed", - "result": { - "id": 598, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 591, - "amount": 1 - } - ], - [ - { - "id": 580, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/303": { - "type": "crafting_shaped", - "result": { - "id": 71, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/304": { - "type": "crafting_shaped", - "result": { - "id": 625, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/305": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 420, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 578, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/306": { - "type": "crafting_shaped", - "result": { - "id": 69, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 119, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 119, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/307": { - "type": "crafting_shapeless", - "group": "light_gray_dye", - "result": { - "id": 579, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 580, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/308": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 329, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 313, - "amount": 1 - } - ], - [ - { - "id": 313, - "amount": 1 - } - ], - [ - { - "id": 313, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 313, - "amount": 1 - } - ], - [ - { - "id": 313, - "amount": 1 - } - ], - [ - { - "id": 313, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/309": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 330, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 314, - "amount": 1 - } - ], - [ - { - "id": 314, - "amount": 1 - } - ], - [ - { - "id": 314, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 314, - "amount": 1 - } - ], - [ - { - "id": 314, - "amount": 1 - } - ], - [ - { - "id": 314, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/310": { - "type": "crafting_shaped", - "result": { - "id": 186, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 182, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 140, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/311": { - "type": "crafting_shapeless", - "result": { - "id": 627, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 626, - "amount": 1 - } - ], - [ - { - "id": 108, - "amount": 1 - } - ], - [ - { - "id": 589, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/312": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 264, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 586, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/313": { - "type": "crafting_shaped", - "result": { - "id": 689, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 233, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/314": { - "type": "crafting_shapeless", - "group": "light_gray_dye", - "result": { - "id": 579, - "amount": 3 - }, - "ingredients": [ - [ - { - "id": 572, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ], - [ - { - "id": 587, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/315": { - "type": "crafting_shaped", - "result": { - "id": 141, - "amount": 4 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 620, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 748, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/316": { - "type": "crafting_shaped", - "group": "wooden_stairs", - "result": { - "id": 301, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/317": { - "type": "crafting_shaped", - "group": "wooden_slab", - "result": { - "id": 115, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/318": { - "type": "crafting_shaped", - "result": { - "id": 358, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 710, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 710, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/319": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 591, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/320": { - "type": "crafting_shaped", - "result": { - "id": 522, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/321": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 598, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/322": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 595, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/323": { - "type": "crafting_shaped", - "result": { - "id": 537, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/324": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 295, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 95, - "amount": 1 - } - ], - [ - { - "id": 95, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/325": { - "type": "crafting_shaped", - "group": "stained_glass", - "result": { - "id": 321, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 577, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/326": { - "type": "crafting_shapeless", - "result": { - "id": 6, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 4, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/327": { - "type": "crafting_shaped", - "group": "boat", - "result": { - "id": 544, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/328": { - "type": "crafting_shaped", - "result": { - "id": 299, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 474, - "amount": 1 - } - ], - [ - { - "id": 474, - "amount": 1 - } - ], - [ - { - "id": 474, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 474, - "amount": 1 - } - ], - [ - { - "id": 474, - "amount": 1 - } - ], - [ - { - "id": 474, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 474, - "amount": 1 - } - ], - [ - { - "id": 474, - "amount": 1 - } - ], - [ - { - "id": 474, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/329": { - "type": "crafting_shaped", - "result": { - "id": 167, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/330": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 87, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 582, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/331": { - "type": "crafting_shaped", - "group": "wooden_stairs", - "result": { - "id": 236, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/332": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 285, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/333": { - "type": "crafting_shaped", - "result": { - "id": 526, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/334": { - "type": "crafting_shaped", - "result": { - "id": 495, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/335": { - "type": "crafting_shaped", - "result": { - "id": 111, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/336": { - "type": "crafting_shaped", - "group": "wooden_fence", - "result": { - "id": 178, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/337": { - "type": "crafting_shaped", - "group": "wooden_slab", - "result": { - "id": 113, - "amount": 6 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/338": { - "type": "crafting_shaped", - "group": "wooden_door", - "result": { - "id": 459, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/339": { - "type": "crafting_shaped", - "result": { - "id": 252, - "amount": 1 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/340": { - "type": "crafting_shaped", - "group": "boat", - "result": { - "id": 761, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [ - { - "id": 16, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/341": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 85, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 584, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/342": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 600, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [ - { - "id": 91, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/343": { - "type": "crafting_shaped", - "group": "rabbit_stew", - "result": { - "id": 718, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 717, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 692, - "amount": 1 - } - ], - [ - { - "id": 694, - "amount": 1 - } - ], - [ - { - "id": 108, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 493, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/344": { - "type": "crafting_shaped", - "group": "planks", - "result": { - "id": 18, - "amount": 4 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 37, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/345": { - "type": "crafting_shaped", - "result": { - "id": 509, - "amount": 1 - }, - "width": 3, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/346": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 737, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [ - { - "id": 89, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/347": { - "type": "crafting_shaped", - "result": { - "id": 253, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [ - { - "id": 64, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 711, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 112, - "amount": 1 - }, - { - "id": 113, - "amount": 1 - }, - { - "id": 114, - "amount": 1 - }, - { - "id": 115, - "amount": 1 - }, - { - "id": 116, - "amount": 1 - }, - { - "id": 117, - "amount": 1 - } - ], - [ - { - "id": 112, - "amount": 1 - }, - { - "id": 113, - "amount": 1 - }, - { - "id": 114, - "amount": 1 - }, - { - "id": 115, - "amount": 1 - }, - { - "id": 116, - "amount": 1 - }, - { - "id": 117, - "amount": 1 - } - ], - [ - { - "id": 112, - "amount": 1 - }, - { - "id": 113, - "amount": 1 - }, - { - "id": 114, - "amount": 1 - }, - { - "id": 115, - "amount": 1 - }, - { - "id": 116, - "amount": 1 - }, - { - "id": 117, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/348": { - "type": "crafting_shaped", - "result": { - "id": 562, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/349": { - "type": "crafting_shaped", - "group": "carpet", - "result": { - "id": 296, - "amount": 3 - }, - "width": 2, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 96, - "amount": 1 - } - ], - [ - { - "id": 96, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/350": { - "type": "crafting_shaped", - "group": "wooden_door", - "result": { - "id": 460, - "amount": 3 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/351": { - "type": "crafting_shaped", - "result": { - "id": 484, - "amount": 1 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/352": { - "type": "crafting_shapeless", - "result": { - "id": 494, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 108, - "amount": 1 - } - ], - [ - { - "id": 109, - "amount": 1 - } - ], - [ - { - "id": 493, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/353": { - "type": "crafting_shapeless", - "group": "light_blue_dye", - "result": { - "id": 584, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 100, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/354": { - "type": "crafting_shaped", - "result": { - "id": 721, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 118, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/355": { - "type": "crafting_shaped", - "result": { - "id": 281, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [ - { - "id": 508, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/356": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 414, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 584, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/357": { - "type": "crafting_shaped", - "group": "planks", - "result": { - "id": 15, - "amount": 4 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 34, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/358": { - "type": "crafting_shaped", - "result": { - "id": 231, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 632, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/359": { - "type": "crafting_shapeless", - "result": { - "id": 2, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 4, - "amount": 1 - } - ], - [ - { - "id": 711, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/360": { - "type": "crafting_shaped", - "group": "wooden_fence", - "result": { - "id": 176, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 14, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 14, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/361": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 342, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 326, - "amount": 1 - } - ], - [ - { - "id": 326, - "amount": 1 - } - ], - [ - { - "id": 326, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 326, - "amount": 1 - } - ], - [ - { - "id": 326, - "amount": 1 - } - ], - [ - { - "id": 326, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/362": { - "type": "crafting_shaped", - "result": { - "id": 353, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [ - { - "id": 350, - "amount": 1 - }, - { - "id": 351, - "amount": 1 - }, - { - "id": 352, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/363": { - "type": "crafting_shaped", - "result": { - "id": 497, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/364": { - "type": "crafting_shaped", - "result": { - "id": 529, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/365": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 730, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/366": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 84, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 585, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/367": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 740, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [ - { - "id": 92, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/368": { - "type": "crafting_shaped", - "result": { - "id": 206, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/369": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 412, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 586, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/370": { - "type": "crafting_shaped", - "result": { - "id": 472, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 499, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [ - { - "id": 499, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 499, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/371": { - "type": "crafting_shaped", - "result": { - "id": 344, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/372": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 424, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 574, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/373": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 734, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [ - { - "id": 86, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/374": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 88, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 581, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/375": { + "viaversion:legacy/32": { "type": "crafting_shaped", "group": "stained_glass_pane", "result": { @@ -18192,7 +1186,6 @@ "width": 3, "height": 2, "ingredients": [ - [], [ { "id": 311, @@ -18211,8 +1204,6 @@ "amount": 1 } ], - [], - [], [ { "id": 311, @@ -18230,492 +1221,19 @@ "id": 311, "amount": 1 } - ], - [] + ] ] }, - "viaversion:legacy/376": { - "type": "crafting_shaped", - "result": { - "id": 151, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/377": { - "type": "crafting_shaped", - "result": { - "id": 493, - "amount": 4 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/378": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 275, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 575, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/379": { - "type": "crafting_shaped", - "result": { - "id": 757, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/380": { - "type": "crafting_shaped", - "result": { - "id": 490, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/381": { + "viaversion:legacy/33": { "type": "crafting_shaped", "group": "stained_glass", "result": { - "id": 317, + "id": 311, "amount": 8 }, "width": 3, "height": 3, "ingredients": [ - [], [ { "id": 64, @@ -18734,8 +1252,6 @@ "amount": 1 } ], - [], - [], [ { "id": 64, @@ -18744,7 +1260,7 @@ ], [ { - "id": 581, + "id": 587, "amount": 1 } ], @@ -18754,14 +1270,6 @@ "amount": 1 } ], - [], - [], - [ - { - "id": 64, - "amount": 1 - } - ], [ { "id": 64, @@ -18774,430 +1282,15 @@ "amount": 1 } ], - [] - ] - }, - "viaversion:legacy/382": { - "type": "crafting_shaped", - "result": { - "id": 508, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], [ { - "id": 281, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/383": { - "type": "crafting_shaped", - "group": "bed", - "result": { - "id": 599, - "amount": 1 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 90, - "amount": 1 - } - ], - [ - { - "id": 90, - "amount": 1 - } - ], - [ - { - "id": 90, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/384": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 278, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 572, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/385": { - "type": "crafting_shapeless", - "group": "magenta_dye", - "result": { - "id": 585, - "amount": 2 - }, - "ingredients": [ - [ - { - "id": 306, + "id": 64, "amount": 1 } ] ] }, - "viaversion:legacy/386": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 336, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 320, - "amount": 1 - } - ], - [ - { - "id": 320, - "amount": 1 - } - ], - [ - { - "id": 320, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 320, - "amount": 1 - } - ], - [ - { - "id": 320, - "amount": 1 - } - ], - [ - { - "id": 320, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/387": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 732, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [ - { - "id": 84, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/388": { - "type": "crafting_shaped", - "result": { - "id": 696, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 562, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [ - { - "id": 556, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/389": { - "type": "crafting_shapeless", - "group": "red_dye", - "result": { - "id": 573, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 749, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/390": { + "viaversion:legacy/34": { "type": "crafting_shapeless", "group": "concrete_powder", "result": { @@ -19261,8 +1354,6886 @@ ] ] }, - "viaversion:legacy/391": { + "viaversion:legacy/35": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 282, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/36": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 591, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/37": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 730, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/38": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 508, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 281, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/39": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 232, + "amount": 2 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/40": { "type": "crafting_shapeless", + "group": "", + "result": { + "id": 250, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 149, + "amount": 1 + } + ], + [ + { + "id": 232, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/41": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 187, + "amount": 2 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/42": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 140, + "amount": 4 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 474, + "amount": 1 + }, + { + "id": 475, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/43": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 712, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 136, + "amount": 1 + } + ], + [ + { + "id": 540, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/44": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 136, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + }, + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 501, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/45": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 589, + "amount": 1 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 553, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/46": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 82, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/47": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 199, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/48": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 484, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/49": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 157, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/50": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 118, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/51": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 485, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/52": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 159, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/53": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 486, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/54": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 503, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/55": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 168, + "amount": 1 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 1, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/56": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 217, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/57": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 123, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ], + [ + { + "id": 199, + "amount": 1 + }, + { + "id": 200, + "amount": 1 + }, + { + "id": 201, + "amount": 1 + }, + { + "id": 202, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/58": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 487, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/59": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 74, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 81, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/60": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 492, + "amount": 4 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/61": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 113, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/62": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 234, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 14, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/63": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 14, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 33, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/64": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 211, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/65": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 176, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/66": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 457, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/67": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 759, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 14, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ], + [ + { + "id": 14, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/68": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 754, + "amount": 2 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 473, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/69": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 633, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/70": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 169, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 171, + "amount": 1 + } + ], + [ + { + "id": 171, + "amount": 1 + } + ], + [ + { + "id": 171, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/71": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 171, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 543, + "amount": 1 + } + ], + [ + { + "id": 543, + "amount": 1 + } + ], + [ + { + "id": 543, + "amount": 1 + } + ], + [ + { + "id": 543, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/72": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 70, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 68, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/73": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 352, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 350, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/74": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 558, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 303, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/75": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 303, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/76": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 536, + "amount": 3 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/77": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 757, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/78": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 609, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/79": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 349, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 715, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/80": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 229, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/81": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 119, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ], + [ + { + "id": 68, + "amount": 1 + }, + { + "id": 69, + "amount": 1 + }, + { + "id": 70, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/82": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 68, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/83": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 462, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/84": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 167, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/85": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 228, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 185, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/86": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 254, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/87": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 542, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 254, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/88": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 96, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/89": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 277, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/90": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 341, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ], + [ + { + "id": 325, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/91": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 325, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/92": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 353, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/93": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 126, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ], + [ + { + "id": 350, + "amount": 1 + }, + { + "id": 351, + "amount": 1 + }, + { + "id": 352, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/94": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 350, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 27, + "amount": 1 + } + ], + [ + { + "id": 27, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/95": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 358, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/96": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 103, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/97": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 307, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/98": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 99, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/99": { + "type": "crafting_shapeless", + "group": "red_dye", + "result": { + "id": 573, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 749, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/100": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 425, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/101": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 296, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/102": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 605, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/103": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 605, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/104": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 744, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + { + "id": 96, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/105": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 156, + "amount": 16 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/106": { + "type": "crafting_shaped", + "group": "rabbit_stew", + "result": { + "id": 718, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 717, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 692, + "amount": 1 + } + ], + [ + { + "id": 694, + "amount": 1 + } + ], + [ + { + "id": 109, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 493, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/107": { + "type": "crafting_shaped", + "group": "rabbit_stew", + "result": { + "id": 718, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 717, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 692, + "amount": 1 + } + ], + [ + { + "id": 694, + "amount": 1 + } + ], + [ + { + "id": 108, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 493, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/108": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 260, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/109": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 125, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + }, + { + "id": 257, + "amount": 1 + }, + { + "id": 259, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/110": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 258, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/111": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 146, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 144, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/112": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 127, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ], + [ + { + "id": 144, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/113": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 145, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 127, + "amount": 1 + } + ], + [ + { + "id": 127, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/114": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 144, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 748, + "amount": 1 + } + ], + [ + { + "id": 748, + "amount": 1 + } + ], + [ + { + "id": 748, + "amount": 1 + } + ], + [ + { + "id": 748, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/115": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 92, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/116": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 273, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/117": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 337, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ], + [ + { + "id": 321, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/118": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 321, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/119": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 373, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 765, + "amount": 1 + } + ], + [ + { + "id": 149, + "amount": 1 + } + ], + [ + { + "id": 765, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/120": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 577, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/121": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 421, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/122": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 292, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/123": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 601, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 577, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/124": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 601, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/125": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 740, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + { + "id": 92, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/126": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 612, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 182, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/127": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 706, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 182, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ], + [ + { + "id": 561, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/128": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 344, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/129": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 343, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/130": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 3, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 2, + "amount": 1 + } + ], + [ + { + "id": 2, + "amount": 1 + } + ], + [ + { + "id": 2, + "amount": 1 + } + ], + [ + { + "id": 2, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/131": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 5, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 4, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/132": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 7, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 6, + "amount": 1 + } + ], + [ + { + "id": 6, + "amount": 1 + } + ], + [ + { + "id": 6, + "amount": 1 + } + ], + [ + { + "id": 6, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/133": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 81, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/134": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 88, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/135": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 269, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/136": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 333, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ], + [ + { + "id": 317, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/137": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 317, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/138": { + "type": "crafting_shapeless", + "group": "pink_dye", + "result": { + "id": 581, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/139": { + "type": "crafting_shapeless", + "group": "pink_dye", + "result": { + "id": 581, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 106, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/140": { + "type": "crafting_shapeless", + "group": "pink_dye", + "result": { + "id": 581, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 308, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/141": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 417, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 581, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/142": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 288, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/143": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 597, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/144": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 597, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/145": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 736, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + { + "id": 88, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/146": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 259, + "amount": 2 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 258, + "amount": 1 + } + ], + [ + { + "id": 258, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/147": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 556, + "amount": 3 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 553, + "amount": 1 + } + ], + [ + { + "id": 553, + "amount": 1 + } + ], + [ + { + "id": 553, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/148": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 533, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + }, + { + "id": 83, + "amount": 1 + }, + { + "id": 84, + "amount": 1 + }, + { + "id": 85, + "amount": 1 + }, + { + "id": 86, + "amount": 1 + }, + { + "id": 87, + "amount": 1 + }, + { + "id": 88, + "amount": 1 + }, + { + "id": 89, + "amount": 1 + }, + { + "id": 90, + "amount": 1 + }, + { + "id": 91, + "amount": 1 + }, + { + "id": 92, + "amount": 1 + }, + { + "id": 93, + "amount": 1 + }, + { + "id": 94, + "amount": 1 + }, + { + "id": 95, + "amount": 1 + }, + { + "id": 96, + "amount": 1 + }, + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/149": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 83, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/150": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 264, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/151": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 328, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ], + [ + { + "id": 312, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/152": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 312, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/153": { + "type": "crafting_shapeless", + "group": "orange_dye", + "result": { + "id": 586, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 583, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/154": { + "type": "crafting_shapeless", + "group": "orange_dye", + "result": { + "id": 586, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 104, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/155": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 412, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 586, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/156": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 283, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/157": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 592, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 586, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/158": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 592, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/159": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 731, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + { + "id": 83, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/160": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 361, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/161": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 112, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/162": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 148, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/163": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 13, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 32, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/164": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 71, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/165": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 357, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ], + [ + { + "id": 623, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/166": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 222, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 220, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/167": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 124, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/168": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 221, + "amount": 6 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ], + [ + { + "id": 220, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/169": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 220, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ], + [ + { + "id": 710, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/170": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 494, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 108, + "amount": 1 + } + ], + [ + { + "id": 109, + "amount": 1 + } + ], + [ + { + "id": 493, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/171": { + "type": "crafting_shapeless", + "group": "", "result": { "id": 200, "amount": 1 @@ -19282,142 +8253,648 @@ ] ] }, - "viaversion:legacy/392": { + "viaversion:legacy/172": { "type": "crafting_shaped", + "group": "", "result": { - "id": 476, - "amount": 9 + "id": 240, + "amount": 6 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ], + [ + { + "id": 138, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/173": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 138, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 209, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/174": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 540, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/175": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 613, + "amount": 1 }, "width": 1, "height": 1, "ingredients": [ - [], [ { - "id": 151, + "id": 610, "amount": 1 } - ], - [] + ] ] }, - "viaversion:legacy/393": { + "viaversion:legacy/176": { "type": "crafting_shaped", + "group": "", "result": { - "id": 345, + "id": 208, "amount": 1 }, "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 714, + "id": 610, "amount": 1 } ], [ { - "id": 714, + "id": 610, "amount": 1 } ], [ { - "id": 714, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 714, + "id": 610, "amount": 1 } ], [ { - "id": 572, + "id": 610, "amount": 1 } ], [ { - "id": 714, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 714, + "id": 610, "amount": 1 } ], [ { - "id": 714, + "id": 610, "amount": 1 } ], [ { - "id": 714, + "id": 610, "amount": 1 } ], - [] + [ + { + "id": 610, + "amount": 1 + } + ], + [ + { + "id": 610, + "amount": 1 + } + ] ] }, - "viaversion:legacy/394": { + "viaversion:legacy/177": { "type": "crafting_shaped", + "group": "", "result": { - "id": 542, - "amount": 9 + "id": 696, + "amount": 1 }, - "width": 1, - "height": 1, + "width": 3, + "height": 3, "ingredients": [ - [], [ { - "id": 254, + "id": 556, "amount": 1 } ], - [] + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 562, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ] ] }, - "viaversion:legacy/395": { - "type": "crafting_shaped", - "group": "carpet", + "viaversion:legacy/178": { + "type": "crafting_shapeless", + "group": "", "result": { - "id": 288, - "amount": 3 + "id": 629, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 628, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/179": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 356, + "amount": 1 }, "width": 2, - "height": 1, + "height": 2, "ingredients": [ - [], [ { - "id": 88, + "id": 629, "amount": 1 } ], [ { - "id": 88, + "id": 629, "amount": 1 } ], - [] + [ + { + "id": 629, + "amount": 1 + } + ], + [ + { + "id": 629, + "amount": 1 + } + ] ] }, - "viaversion:legacy/396": { + "viaversion:legacy/180": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 84, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/181": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 265, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/182": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 329, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ], + [ + { + "id": 313, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/183": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 313, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 585, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/184": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 577, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/185": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 306, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/186": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 581, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/187": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 4 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 573, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/188": { + "type": "crafting_shapeless", + "group": "magenta_dye", + "result": { + "id": 585, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 101, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/189": { "type": "crafting_shapeless", "group": "concrete_powder", "result": { @@ -19481,1845 +8958,35 @@ ] ] }, - "viaversion:legacy/397": { + "viaversion:legacy/190": { "type": "crafting_shaped", + "group": "carpet", "result": { - "id": 482, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/398": { - "type": "crafting_shaped", - "result": { - "id": 259, - "amount": 2 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 258, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 258, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/399": { - "type": "crafting_shaped", - "result": { - "id": 260, - "amount": 4 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [], - [], - [], - [], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [ - { - "id": 258, - "amount": 1 - }, - { - "id": 257, - "amount": 1 - }, - { - "id": 259, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/400": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 272, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 578, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/401": { - "type": "crafting_shaped", - "result": { - "id": 137, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 557, - "amount": 1 - } - ], - [ - { - "id": 557, - "amount": 1 - } - ], - [ - { - "id": 557, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/402": { - "type": "crafting_shapeless", - "group": "wool", - "result": { - "id": 93, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 82, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/403": { - "type": "crafting_shaped", - "result": { - "id": 357, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [ - { - "id": 623, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/404": { - "type": "crafting_shaped", - "result": { - "id": 174, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [ - { - "id": 13, - "amount": 1 - }, - { - "id": 14, - "amount": 1 - }, - { - "id": 15, - "amount": 1 - }, - { - "id": 16, - "amount": 1 - }, - { - "id": 17, - "amount": 1 - }, - { - "id": 18, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/405": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 337, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 321, - "amount": 1 - } - ], - [ - { - "id": 321, - "amount": 1 - } - ], - [ - { - "id": 321, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 321, - "amount": 1 - } - ], - [ - { - "id": 321, - "amount": 1 - } - ], - [ - { - "id": 321, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/406": { - "type": "crafting_shaped", - "result": { - "id": 254, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/407": { - "type": "crafting_shaped", - "result": { - "id": 609, - "amount": 1 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/408": { - "type": "crafting_shaped", - "result": { - "id": 261, - "amount": 6 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 167, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/409": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 340, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 324, - "amount": 1 - } - ], - [ - { - "id": 324, - "amount": 1 - } - ], - [ - { - "id": 324, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 324, - "amount": 1 - } - ], - [ - { - "id": 324, - "amount": 1 - } - ], - [ - { - "id": 324, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/410": { - "type": "crafting_shaped", - "result": { - "id": 523, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [ - { - "id": 476, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/411": { - "type": "crafting_shaped", - "result": { - "id": 473, - "amount": 4 - }, - "width": 1, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 530, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 500, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/412": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 273, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 577, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/413": { - "type": "crafting_shaped", - "result": { - "id": 474, - "amount": 9 - }, - "width": 1, - "height": 1, - "ingredients": [ - [], - [ - { - "id": 299, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/414": { - "type": "crafting_shapeless", - "group": "orange_dye", - "result": { - "id": 586, - "amount": 1 - }, - "ingredients": [ - [ - { - "id": 104, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/415": { - "type": "crafting_shaped", - "result": { - "id": 72, - "amount": 6 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, - "amount": 1 - } - ], - [ - { - "id": 542, - "amount": 1 - } - ], - [ - { - "id": 478, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/416": { - "type": "crafting_shapeless", - "group": "magenta_dye", - "result": { - "id": 585, + "id": 284, "amount": 3 }, - "ingredients": [ - [ - { - "id": 576, - "amount": 1 - } - ], - [ - { - "id": 573, - "amount": 1 - } - ], - [ - { - "id": 581, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/417": { - "type": "crafting_shapeless", - "group": "concrete_powder", - "result": { - "id": 418, - "amount": 8 - }, - "ingredients": [ - [ - { - "id": 580, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 26, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ], - [ - { - "id": 28, - "amount": 1 - } - ] - ] - }, - "viaversion:legacy/418": { - "type": "crafting_shaped", - "result": { - "id": 633, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 610, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [ - { - "id": 622, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/419": { - "type": "crafting_shaped", - "result": { - "id": 7, - "amount": 4 - }, "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 6, - "amount": 1 - } - ], - [ - { - "id": 6, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 6, - "amount": 1 - } - ], - [ - { - "id": 6, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/420": { - "type": "crafting_shaped", - "group": "stained_hardened_clay", - "result": { - "id": 276, - "amount": 8 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 574, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [ - { - "id": 298, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/421": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 733, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [ - { - "id": 85, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [] - ] - }, - "viaversion:legacy/422": { - "type": "crafting_shaped", - "result": { - "id": 469, - "amount": 1 - }, - "width": 2, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 477, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 477, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [], - [], - [], - [ - { - "id": 492, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/423": { - "type": "crafting_shaped", - "group": "wooden_fence", - "result": { - "id": 179, - "amount": 3 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 17, - "amount": 1 - } - ], - [ - { - "id": 492, - "amount": 1 - } - ], - [ - { - "id": 17, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/424": { - "type": "crafting_shaped", - "group": "planks", - "result": { - "id": 17, - "amount": 4 - }, - "width": 1, "height": 1, "ingredients": [ - [], [ { - "id": 36, + "id": 84, "amount": 1 } ], - [] + [ + { + "id": 84, + "amount": 1 + } + ] ] }, - "viaversion:legacy/425": { + "viaversion:legacy/191": { "type": "crafting_shapeless", "group": "dyed_bed", "result": { - "id": 605, + "id": 593, "amount": 1 }, "ingredients": [ @@ -21331,13 +8998,429 @@ ], [ { - "id": 573, + "id": 585, "amount": 1 } ] ] }, - "viaversion:legacy/426": { + "viaversion:legacy/192": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 593, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/193": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 732, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + { + "id": 84, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/194": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 186, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 182, + "amount": 1 + } + ], + [ + { + "id": 140, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/195": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 87, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/196": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 268, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/197": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 332, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ], + [ + { + "id": 316, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/198": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 316, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 582, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/199": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 582, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/200": { "type": "crafting_shapeless", "group": "concrete_powder", "result": { @@ -21401,19 +9484,1353 @@ ] ] }, - "viaversion:legacy/427": { + "viaversion:legacy/201": { "type": "crafting_shaped", + "group": "carpet", "result": { - "id": 361, + "id": 287, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/202": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 596, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 582, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/203": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 596, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/204": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 735, "amount": 1 }, "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 12, + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + { + "id": 87, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/205": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 251, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/206": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 90, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/207": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 271, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/208": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 335, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ], + [ + { + "id": 319, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/209": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 319, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/210": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 105, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/211": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 107, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/212": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/213": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/214": { + "type": "crafting_shapeless", + "group": "light_gray_dye", + "result": { + "id": 579, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 102, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/215": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 419, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 579, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/216": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 290, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/217": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 599, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 579, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/218": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 599, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/219": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 738, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + { + "id": 90, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/220": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 85, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/221": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 266, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/222": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 330, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ], + [ + { + "id": 314, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/223": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 314, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/224": { + "type": "crafting_shapeless", + "group": "light_blue_dye", + "result": { + "id": 584, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/225": { + "type": "crafting_shapeless", + "group": "light_blue_dye", + "result": { + "id": 584, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 100, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/226": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 414, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 584, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/227": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 285, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/228": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 594, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 584, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/229": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 594, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/230": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 733, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + { + "id": 85, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/231": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 158, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 492, "amount": 1 } ], @@ -21422,24 +10839,2914 @@ "id": 12, "amount": 1 } - ], + ] + ] + }, + "viaversion:legacy/232": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 512, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ [ { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 542, + "id": 545, "amount": 1 } ], [ { - "id": 542, + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 545, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/233": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 510, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 545, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/234": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 511, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 545, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/235": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 513, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 545, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 545, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/236": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 545, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 720, + "amount": 1 + } + ], + [ + { + "id": 720, + "amount": 1 + } + ], + [ + { + "id": 720, + "amount": 1 + } + ], + [ + { + "id": 720, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/237": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 725, + "amount": 2 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 558, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + null + ], + [ + { + "id": 499, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/238": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 576, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 66, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/239": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 66, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/240": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 155, + "amount": 3 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/241": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 115, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/242": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 236, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 16, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/243": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 16, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 35, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/244": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 213, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/245": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 178, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/246": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 459, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/247": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 761, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 16, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ], + [ + { + "id": 16, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/248": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 174, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/249": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 690, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/250": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 280, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/251": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 479, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/252": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 467, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/253": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 468, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/254": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 766, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/255": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 520, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/256": { + "type": "crafting_shaped", + "group": "iron_ingot", + "result": { + "id": 477, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ], + [ + { + "id": 766, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/257": { + "type": "crafting_shaped", + "group": "iron_ingot", + "result": { + "id": 477, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 111, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/258": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 504, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/259": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 518, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/260": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 455, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/261": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 519, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/262": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 521, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/263": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 111, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/264": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 206, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/265": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 469, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/266": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 713, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 256, + "amount": 1 + } + ], + [ + { + "id": 540, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/267": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 256, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 149, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/268": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 252, + "amount": 1 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/269": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 281, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/270": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 95, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/271": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 276, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/272": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 340, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ], + [ + { + "id": 324, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/273": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 324, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/274": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 424, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 574, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/275": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 295, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/276": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 604, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/277": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 604, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/278": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 743, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + { + "id": 95, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/279": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 89, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/280": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 270, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/281": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 334, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ], + [ + { + "id": 318, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/282": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 318, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/283": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 580, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/284": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 418, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 580, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/285": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 289, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/286": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 598, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 580, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/287": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 598, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/288": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 737, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + { + "id": 89, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/289": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 2, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 4, "amount": 1 } ], @@ -21448,406 +13755,115 @@ "id": 711, "amount": 1 } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [] + ] ] }, - "viaversion:legacy/428": { + "viaversion:legacy/290": { "type": "crafting_shaped", - "group": "stained_glass_pane", + "group": "", "result": { - "id": 333, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 317, - "amount": 1 - } - ], - [ - { - "id": 317, - "amount": 1 - } - ], - [ - { - "id": 317, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 317, - "amount": 1 - } - ], - [ - { - "id": 317, - "amount": 1 - } - ], - [ - { - "id": 317, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/429": { - "type": "crafting_shaped", - "result": { - "id": 479, + "id": 495, "amount": 1 }, "width": 1, "height": 3, "ingredients": [ - [], [ { - "id": 477, + "id": 478, "amount": 1 } ], - [], - [], [ { - "id": 477, + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/291": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 496, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 478, "amount": 1 } ], - [], - [], [ { "id": 492, "amount": 1 } ], - [] + [ + { + "id": 492, + "amount": 1 + } + ] ] }, - "viaversion:legacy/430": { + "viaversion:legacy/292": { "type": "crafting_shaped", + "group": "", "result": { - "id": 223, - "amount": 1 + "id": 72, + "amount": 6 }, "width": 3, "height": 3, "ingredients": [ - [], - [], [ { - "id": 557, + "id": 478, "amount": 1 } ], - [], - [], - [], + [ + null + ], [ { - "id": 476, + "id": 478, "amount": 1 } ], [ { - "id": 139, + "id": 478, "amount": 1 } ], - [ - { - "id": 476, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [ - { - "id": 139, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/431": { - "type": "crafting_shaped", - "group": "stained_glass_pane", - "result": { - "id": 331, - "amount": 16 - }, - "width": 3, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 315, - "amount": 1 - } - ], - [ - { - "id": 315, - "amount": 1 - } - ], - [ - { - "id": 315, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 315, - "amount": 1 - } - ], - [ - { - "id": 315, - "amount": 1 - } - ], - [ - { - "id": 315, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/432": { - "type": "crafting_shaped", - "result": { - "id": 3, - "amount": 4 - }, - "width": 2, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 2, - "amount": 1 - } - ], - [ - { - "id": 2, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 2, - "amount": 1 - } - ], - [ - { - "id": 2, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/433": { - "type": "crafting_shaped", - "result": { - "id": 202, - "amount": 1 - }, - "width": 1, - "height": 2, - "ingredients": [ - [], - [ - { - "id": 123, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 123, - "amount": 1 - } - ], - [] - ] - }, - "viaversion:legacy/434": { - "type": "crafting_shaped", - "group": "banner", - "result": { - "id": 741, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [ - { - "id": 93, - "amount": 1 - } - ], - [], - [], - [], [ { "id": 492, "amount": 1 } ], - [], - [] - ] - }, - "viaversion:legacy/435": { - "type": "crafting_shaped", - "result": { - "id": 262, - "amount": 1 - }, - "width": 3, - "height": 3, - "ingredients": [ - [], [ { - "id": 12, + "id": 478, "amount": 1 } ], [ { - "id": 12, - "amount": 1 - } - ], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [ - { - "id": 12, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 12, + "id": 478, "amount": 1 } ], @@ -21859,86 +13875,1259 @@ ], [ { - "id": 12, + "id": 478, "amount": 1 } - ], - [] + ] ] }, - "viaversion:legacy/436": { + "viaversion:legacy/293": { "type": "crafting_shaped", + "group": "", "result": { - "id": 349, + "id": 497, "amount": 1 }, "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 714, + "id": 478, "amount": 1 } ], [ { - "id": 715, + "id": 478, "amount": 1 } ], [ { - "id": 714, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 715, + "id": 478, "amount": 1 } ], + [ + null + ], [ { - "id": 715, + "id": 492, "amount": 1 } ], [ - { - "id": 715, - "amount": 1 - } + null + ], + [ + null ], - [], - [], [ { - "id": 714, + "id": 492, "amount": 1 } ], [ - { - "id": 715, - "amount": 1 - } - ], - [ - { - "id": 714, - "amount": 1 - } - ], - [] + null + ] ] }, - "viaversion:legacy/437": { + "viaversion:legacy/294": { "type": "crafting_shaped", + "group": "", + "result": { + "id": 528, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/295": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 506, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/296": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 526, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/297": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 527, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/298": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 697, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 692, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/299": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 529, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/300": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 498, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/301": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 534, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 471, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/302": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 622, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/303": { + "type": "crafting_shaped", + "group": "gold_ingot", + "result": { + "id": 478, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ], + [ + { + "id": 622, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/304": { + "type": "crafting_shaped", + "group": "gold_ingot", + "result": { + "id": 478, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 110, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/305": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 110, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ], + [ + { + "id": 478, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/306": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 185, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ], + [ + { + "id": 565, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/307": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 207, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/308": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 625, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/309": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 560, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 154, + "amount": 1 + } + ], + [ + { + "id": 540, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/310": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 154, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/311": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 691, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 551, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 551, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 551, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/312": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 470, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 530, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/313": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 563, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 499, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/314": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 686, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 501, + "amount": 1 + } + ], + [ + { + "id": 628, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + }, + { + "id": 475, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/315": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 627, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 626, + "amount": 1 + } + ], + [ + { + "id": 108, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/316": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 210, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/317": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 175, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/318": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 632, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 619, + "amount": 1 + } + ], + [ + { + "id": 628, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/319": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 231, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 632, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/320": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 141, + "amount": 4 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 620, + "amount": 1 + } + ], + [ + { + "id": 748, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/321": { + "type": "crafting_shaped", + "group": "", "result": { "id": 746, "amount": 1 @@ -21946,7 +15135,6 @@ "width": 3, "height": 3, "ingredients": [ - [], [ { "id": 64, @@ -21965,8 +15153,6 @@ "amount": 1 } ], - [], - [], [ { "id": 64, @@ -21985,8 +15171,6 @@ "amount": 1 } ], - [], - [], [ { "id": 64, @@ -22004,15 +15188,1715 @@ "id": 64, "amount": 1 } - ], - [] + ] ] }, - "viaversion:legacy/438": { + "viaversion:legacy/322": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 226, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 225, + "amount": 1 + } + ], + [ + { + "id": 225, + "amount": 1 + } + ], + [ + { + "id": 225, + "amount": 1 + } + ], + [ + { + "id": 225, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/323": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 223, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 557, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/324": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 233, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ], + [ + { + "id": 689, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/325": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 689, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 233, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/326": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 262, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/327": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 67, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 472, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/328": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 4, + "amount": 2 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/329": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 488, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/330": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 489, + "amount": 1 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/331": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 490, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/332": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 524, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/333": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 505, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/334": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 522, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/335": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 523, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/336": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 525, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 476, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/337": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 151, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/338": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 491, + "amount": 1 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 476, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/339": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 476, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 151, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/340": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 73, + "amount": 6 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 159, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/341": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 253, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 112, + "amount": 1 + }, + { + "id": 113, + "amount": 1 + }, + { + "id": 114, + "amount": 1 + }, + { + "id": 115, + "amount": 1 + }, + { + "id": 116, + "amount": 1 + }, + { + "id": 117, + "amount": 1 + } + ], + [ + { + "id": 112, + "amount": 1 + }, + { + "id": 113, + "amount": 1 + }, + { + "id": 114, + "amount": 1 + }, + { + "id": 115, + "amount": 1 + }, + { + "id": 116, + "amount": 1 + }, + { + "id": 117, + "amount": 1 + } + ], + [ + { + "id": 112, + "amount": 1 + }, + { + "id": 113, + "amount": 1 + }, + { + "id": 114, + "amount": 1 + }, + { + "id": 115, + "amount": 1 + }, + { + "id": 116, + "amount": 1 + }, + { + "id": 117, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/342": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 345, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ], + [ + { + "id": 714, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/343": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 117, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/344": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 302, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/345": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 18, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 37, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/346": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 215, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/347": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 180, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/348": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 461, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/349": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 763, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/350": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 91, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/351": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 272, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/352": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 336, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ], + [ + { + "id": 320, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/353": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 320, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/354": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 578, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 574, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/355": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 420, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 578, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/356": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 291, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/357": { "type": "crafting_shapeless", "group": "dyed_bed", "result": { - "id": 595, + "id": 600, "amount": 1 }, "ingredients": [ @@ -22024,14 +16908,641 @@ ], [ { - "id": 583, + "id": 578, "amount": 1 } ] ] }, - "viaversion:legacy/439": { + "viaversion:legacy/358": { "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 600, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/359": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 739, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + { + "id": 91, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/360": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 152, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/361": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 607, + "amount": 8 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/362": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 562, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 542, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/363": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 463, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 711, + "amount": 1 + } + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ], + [ + { + "id": 1, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/364": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 239, + "amount": 6 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/365": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 121, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/366": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 10, + "amount": 4 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 9, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 9, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/367": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 299, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ], + [ + { + "id": 474, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/368": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 474, + "amount": 9 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 299, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/369": { + "type": "crafting_shaped", + "group": "", "result": { "id": 564, "amount": 1 @@ -22039,17 +17550,18 @@ "width": 3, "height": 3, "ingredients": [ - [], - [], + [ + null + ], [ { "id": 478, "amount": 1 } ], - [], - [], - [], + [ + null + ], [ { "id": 478, @@ -22068,35 +17580,650 @@ "amount": 1 } ], - [], - [], - [], + [ + null + ], [ { "id": 478, "amount": 1 } ], - [], - [] + [ + null + ] ] }, - "viaversion:legacy/440": { + "viaversion:legacy/370": { "type": "crafting_shaped", + "group": "", "result": { - "id": 607, - "amount": 8 + "id": 173, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 552, + "amount": 1 + } + ], + [ + { + "id": 552, + "amount": 1 + } + ], + [ + { + "id": 552, + "amount": 1 + } + ], + [ + { + "id": 552, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/371": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 202, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 123, + "amount": 1 + } + ], + [ + { + "id": 123, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/372": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 69, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 119, + "amount": 1 + } + ], + [ + { + "id": 119, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/373": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 351, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 126, + "amount": 1 + } + ], + [ + { + "id": 126, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/374": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 257, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 125, + "amount": 1 + } + ], + [ + { + "id": 125, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/375": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 559, + "amount": 1 + }, + "width": 1, + "height": 2, + "ingredients": [ + [ + { + "id": 149, + "amount": 1 + } + ], + [ + { + "id": 540, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/376": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 149, + "amount": 1 }, "width": 3, - "height": 1, + "height": 3, "ingredients": [ - [], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/377": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 631, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/378": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 704, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 563, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 692, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/379": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 590, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 546, + "amount": 1 + } + ], + [ + { + "id": 546, + "amount": 1 + } + ], + [ + { + "id": 546, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ], + [ + { + "id": 561, + "amount": 1 + } + ], + [ + { + "id": 589, + "amount": 1 + } + ], [ { "id": 508, "amount": 1 } ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/380": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 537, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/381": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 94, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/382": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 275, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], [ { "id": 575, @@ -22105,112 +18232,3067 @@ ], [ { - "id": 508, + "id": 298, "amount": 1 } ], - [] + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] ] }, - "viaversion:legacy/441": { + "viaversion:legacy/383": { "type": "crafting_shaped", + "group": "stained_glass_pane", "result": { - "id": 110, - "amount": 1 + "id": 339, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ], + [ + { + "id": 323, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/384": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 323, + "amount": 8 }, "width": 3, "height": 3, "ingredients": [ - [], [ { - "id": 478, + "id": 64, "amount": 1 } ], [ { - "id": 478, + "id": 64, "amount": 1 } ], [ { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, + "id": 64, "amount": 1 } ], [ { - "id": 478, + "id": 64, "amount": 1 } ], [ { - "id": 478, - "amount": 1 - } - ], - [], - [], - [ - { - "id": 478, + "id": 575, "amount": 1 } ], [ { - "id": 478, + "id": 64, "amount": 1 } ], [ { - "id": 478, + "id": 64, "amount": 1 } ], - [] + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] ] }, - "viaversion:legacy/442": { + "viaversion:legacy/385": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 423, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 575, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/386": { "type": "crafting_shaped", "group": "carpet", "result": { - "id": 290, + "id": 294, "amount": 3 }, "width": 2, "height": 1, "ingredients": [ - [], [ { - "id": 90, + "id": 94, "amount": 1 } ], [ { - "id": 90, + "id": 94, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/387": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 603, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, "amount": 1 } ], - [] + [ + { + "id": 575, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/388": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 603, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/389": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 742, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + { + "id": 94, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/390": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 216, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 135, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/391": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 122, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ], + [ + { + "id": 135, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/392": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 135, + "amount": 1 + }, + "width": 2, + "height": 2, + "ingredients": [ + [ + { + "id": 551, + "amount": 1 + } + ], + [ + { + "id": 551, + "amount": 1 + } + ], + [ + { + "id": 551, + "amount": 1 + } + ], + [ + { + "id": 551, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/393": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 630, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + null + ], + [ + { + "id": 620, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/394": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 509, + "amount": 1 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ], + [ + { + "id": 508, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/395": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 493, + "amount": 4 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/396": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 472, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 499, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 499, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/397": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 137, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 557, + "amount": 1 + } + ], + [ + { + "id": 557, + "amount": 1 + } + ], + [ + { + "id": 557, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/398": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 557, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 556, + "amount": 1 + } + ], + [ + { + "id": 545, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/399": { + "type": "crafting_shapeless", + "group": "bonemeal", + "result": { + "id": 587, + "amount": 3 + }, + "ingredients": [ + [ + { + "id": 588, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/400": { + "type": "crafting_shapeless", + "group": "bonemeal", + "result": { + "id": 587, + "amount": 9 + }, + "ingredients": [ + [ + { + "id": 359, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/401": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 359, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ], + [ + { + "id": 587, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/402": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 544, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 13, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/403": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 93, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/404": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 274, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/405": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 338, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ], + [ + { + "id": 322, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/406": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 322, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/407": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 422, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 576, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/408": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 293, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/409": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 602, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 576, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/410": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 602, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/411": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 741, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + { + "id": 93, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/412": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 628, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 620, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/413": { + "type": "crafting_shapeless", + "group": "wool", + "result": { + "id": 97, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 82, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/414": { + "type": "crafting_shaped", + "group": "stained_hardened_clay", + "result": { + "id": 278, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ], + [ + { + "id": 298, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/415": { + "type": "crafting_shaped", + "group": "stained_glass_pane", + "result": { + "id": 342, + "amount": 16 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ], + [ + { + "id": 326, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/416": { + "type": "crafting_shaped", + "group": "stained_glass", + "result": { + "id": 326, + "amount": 8 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/417": { + "type": "crafting_shapeless", + "group": "concrete_powder", + "result": { + "id": 426, + "amount": 8 + }, + "ingredients": [ + [ + { + "id": 572, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 26, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ], + [ + { + "id": 28, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/418": { + "type": "crafting_shaped", + "group": "carpet", + "result": { + "id": 297, + "amount": 3 + }, + "width": 2, + "height": 1, + "ingredients": [ + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/419": { + "type": "crafting_shapeless", + "group": "dyed_bed", + "result": { + "id": 606, + "amount": 1 + }, + "ingredients": [ + [ + { + "id": 591, + "amount": 1 + } + ], + [ + { + "id": 572, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/420": { + "type": "crafting_shaped", + "group": "bed", + "result": { + "id": 606, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ], + [ + { + "id": 13, + "amount": 1 + }, + { + "id": 14, + "amount": 1 + }, + { + "id": 15, + "amount": 1 + }, + { + "id": 16, + "amount": 1 + }, + { + "id": 17, + "amount": 1 + }, + { + "id": 18, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/421": { + "type": "crafting_shaped", + "group": "banner", + "result": { + "id": 745, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + { + "id": 97, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/422": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 114, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/423": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 235, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 15, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/424": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 15, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 34, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/425": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 212, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/426": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 177, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/427": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 458, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/428": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 760, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 15, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ], + [ + { + "id": 15, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/429": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 751, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + { + "id": 749, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 493, + "amount": 1 + } + ], + [ + null + ] + ] + }, + "viaversion:legacy/430": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 238, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 705, + "amount": 1 + } + ], + [ + { + "id": 64, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ], + [ + { + "id": 139, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/431": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 473, + "amount": 4 + }, + "width": 1, + "height": 3, + "ingredients": [ + [ + { + "id": 530, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 500, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/432": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 721, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 118, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/433": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 247, + "amount": 1 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 111, + "amount": 1 + } + ], + [ + { + "id": 111, + "amount": 1 + } + ], + [ + { + "id": 111, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/434": { + "type": "crafting_shapeless", + "group": "", + "result": { + "id": 6, + "amount": 2 + }, + "ingredients": [ + [ + { + "id": 4, + "amount": 1 + } + ], + [ + { + "id": 12, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/435": { + "type": "crafting_shaped", + "group": "", + "result": { + "id": 261, + "amount": 6 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 167, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 477, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/436": { + "type": "crafting_shaped", + "group": "wooden_slab", + "result": { + "id": 116, + "amount": 6 + }, + "width": 3, + "height": 1, + "ingredients": [ + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/437": { + "type": "crafting_shaped", + "group": "wooden_stairs", + "result": { + "id": 301, + "amount": 4 + }, + "width": 3, + "height": 3, + "ingredients": [ + [ + { + "id": 17, + "amount": 1 + } + ], + [ + null + ], + [ + null + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/438": { + "type": "crafting_shaped", + "group": "planks", + "result": { + "id": 17, + "amount": 4 + }, + "width": 1, + "height": 1, + "ingredients": [ + [ + { + "id": 36, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/439": { + "type": "crafting_shaped", + "group": "wooden_fence_gate", + "result": { + "id": 214, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/440": { + "type": "crafting_shaped", + "group": "wooden_fence", + "result": { + "id": 179, + "amount": 3 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 492, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/441": { + "type": "crafting_shaped", + "group": "wooden_door", + "result": { + "id": 460, + "amount": 3 + }, + "width": 2, + "height": 3, + "ingredients": [ + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ] + ] + }, + "viaversion:legacy/442": { + "type": "crafting_shaped", + "group": "boat", + "result": { + "id": 762, + "amount": 1 + }, + "width": 3, + "height": 2, + "ingredients": [ + [ + { + "id": 17, + "amount": 1 + } + ], + [ + null + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ], + [ + { + "id": 17, + "amount": 1 + } + ] ] }, "minecraft:baked_potato": { "type": "smelting", + "group": "", "ingredient": [ { "id": "693", @@ -22225,13 +21307,16 @@ "cookingTime": 200 }, "minecraft:banner_duplicate": { - "type": "crafting_special_bannerduplicate" + "type": "crafting_special_bannerduplicate", + "group": "" }, "minecraft:banner_add_pattern": { - "type": "crafting_special_banneraddpattern" + "type": "crafting_special_banneraddpattern", + "group": "" }, "minecraft:quartz": { "type": "smelting", + "group": "", "ingredient": [ { "id": "255", @@ -22247,6 +21332,7 @@ }, "minecraft:sponge": { "type": "smelting", + "group": "", "ingredient": [ { "id": "63", @@ -22262,6 +21348,7 @@ }, "minecraft:iron_ingot": { "type": "smelting", + "group": "", "ingredient": [ { "id": "30", @@ -22276,10 +21363,12 @@ "cookingTime": 200 }, "minecraft:tipped_arrow": { - "type": "crafting_special_tippedarrow" + "type": "crafting_special_tippedarrow", + "group": "" }, "minecraft:gold_ingot": { "type": "smelting", + "group": "", "ingredient": [ { "id": "29", @@ -22295,6 +21384,7 @@ }, "minecraft:glass": { "type": "smelting", + "group": "", "ingredient": [ { "id": 27, @@ -22314,6 +21404,7 @@ }, "minecraft:stone": { "type": "smelting", + "group": "", "ingredient": [ { "id": "12", @@ -22329,6 +21420,7 @@ }, "minecraft:white_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "263", @@ -22344,6 +21436,7 @@ }, "minecraft:diamond_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "150", @@ -22359,6 +21452,7 @@ }, "minecraft:lapis_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "65", @@ -22374,6 +21468,7 @@ }, "minecraft:emerald_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "230", @@ -22389,6 +21484,7 @@ }, "minecraft:cooked_porkchop": { "type": "smelting", + "group": "", "ingredient": [ { "id": "531", @@ -22403,10 +21499,12 @@ "cookingTime": 200 }, "minecraft:book_cloning": { - "type": "crafting_special_bookcloning" + "type": "crafting_special_bookcloning", + "group": "" }, "minecraft:pink_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "269", @@ -22422,6 +21520,7 @@ }, "minecraft:orange_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "264", @@ -22437,6 +21536,7 @@ }, "minecraft:yellow_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "267", @@ -22452,6 +21552,7 @@ }, "minecraft:iron_nugget_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "468", @@ -22519,6 +21620,7 @@ }, "minecraft:dried_kelp_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "554", @@ -22534,6 +21636,7 @@ }, "minecraft:redstone_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "166", @@ -22549,6 +21652,7 @@ }, "minecraft:cooked_salmon": { "type": "smelting", + "group": "", "ingredient": [ { "id": "567", @@ -22563,10 +21667,12 @@ "cookingTime": 200 }, "minecraft:map_extending": { - "type": "crafting_special_mapextending" + "type": "crafting_special_mapextending", + "group": "" }, "minecraft:green_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "276", @@ -22582,6 +21688,7 @@ }, "minecraft:lime_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "268", @@ -22597,6 +21704,7 @@ }, "minecraft:popped_chorus_fruit": { "type": "smelting", + "group": "", "ingredient": [ { "id": "747", @@ -22612,6 +21720,7 @@ }, "minecraft:cactus_green": { "type": "smelting", + "group": "", "ingredient": [ { "id": "172", @@ -22627,6 +21736,7 @@ }, "minecraft:cooked_cod": { "type": "smelting", + "group": "", "ingredient": [ { "id": "566", @@ -22642,6 +21752,7 @@ }, "minecraft:magenta_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "265", @@ -22657,6 +21768,7 @@ }, "minecraft:nether_brick": { "type": "smelting", + "group": "", "ingredient": [ { "id": "183", @@ -22672,6 +21784,7 @@ }, "minecraft:light_gray_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "271", @@ -22687,6 +21800,7 @@ }, "minecraft:blue_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "274", @@ -22702,6 +21816,7 @@ }, "minecraft:cooked_mutton": { "type": "smelting", + "group": "", "ingredient": [ { "id": "728", @@ -22717,6 +21832,7 @@ }, "minecraft:brown_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "275", @@ -22731,10 +21847,12 @@ "cookingTime": 200 }, "minecraft:map_cloning": { - "type": "crafting_special_mapcloning" + "type": "crafting_special_mapcloning", + "group": "" }, "minecraft:cracked_stone_bricks": { "type": "smelting", + "group": "", "ingredient": [ { "id": "199", @@ -22750,6 +21868,7 @@ }, "minecraft:charcoal": { "type": "smelting", + "group": "", "ingredient": [ { "id": 45, @@ -22857,6 +21976,7 @@ }, "minecraft:black_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "278", @@ -22872,6 +21992,7 @@ }, "minecraft:purple_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "273", @@ -22887,6 +22008,7 @@ }, "minecraft:coal_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "31", @@ -22902,6 +22024,7 @@ }, "minecraft:gray_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "270", @@ -22917,6 +22040,7 @@ }, "minecraft:red_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "277", @@ -22932,6 +22056,7 @@ }, "minecraft:brick": { "type": "smelting", + "group": "", "ingredient": [ { "id": "552", @@ -22947,6 +22072,7 @@ }, "minecraft:light_blue_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "266", @@ -22961,10 +22087,12 @@ "cookingTime": 200 }, "minecraft:firework_rocket": { - "type": "crafting_special_firework_rocket" + "type": "crafting_special_firework_rocket", + "group": "" }, "minecraft:gold_nugget_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "497", @@ -23016,6 +22144,7 @@ }, "minecraft:terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "173", @@ -23031,6 +22160,7 @@ }, "minecraft:lime_dye_from_smelting": { "type": "smelting", + "group": "", "ingredient": [ { "id": "80", @@ -23045,13 +22175,16 @@ "cookingTime": 200 }, "minecraft:firework_star_fade": { - "type": "crafting_special_firework_star_fade" + "type": "crafting_special_firework_star_fade", + "group": "" }, "minecraft:shulker_box_coloring": { - "type": "crafting_special_shulkerboxcoloring" + "type": "crafting_special_shulkerboxcoloring", + "group": "" }, "minecraft:cooked_chicken": { "type": "smelting", + "group": "", "ingredient": [ { "id": "616", @@ -23066,13 +22199,16 @@ "cookingTime": 200 }, "minecraft:shield_decoration": { - "type": "crafting_special_shielddecoration" + "type": "crafting_special_shielddecoration", + "group": "" }, "minecraft:armor_dye": { - "type": "crafting_special_armordye" + "type": "crafting_special_armordye", + "group": "" }, "minecraft:cooked_rabbit": { "type": "smelting", + "group": "", "ingredient": [ { "id": "716", @@ -23087,13 +22223,16 @@ "cookingTime": 200 }, "minecraft:firework_star": { - "type": "crafting_special_firework_star" + "type": "crafting_special_firework_star", + "group": "" }, "minecraft:repair_item": { - "type": "crafting_special_repairitem" + "type": "crafting_special_repairitem", + "group": "" }, "minecraft:cooked_beef": { "type": "smelting", + "group": "", "ingredient": [ { "id": "614", @@ -23109,6 +22248,7 @@ }, "minecraft:cyan_glazed_terracotta": { "type": "smelting", + "group": "", "ingredient": [ { "id": "272", From 7fe99c98f021c4b2c70def37a14be096169aa3a3 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Mon, 10 Dec 2018 12:50:03 -0200 Subject: [PATCH 3/5] clicking in recipe doesn't work --- .../Protocol1_13To1_12_2.java | 137 +++++++++--------- 1 file changed, 69 insertions(+), 68 deletions(-) diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java index fb17d69e9..aa4e40a8e 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java @@ -100,70 +100,6 @@ public class Protocol1_13To1_12_2 extends Protocol { } } }).send(Protocol1_13To1_12_2.class); - - w.create(0x54, new ValueCreator() { // Declare recipes - @Override - public void write(PacketWrapper wrapper) throws Exception { - wrapper.write(Type.VAR_INT, RecipeData.recipes.size()); - for (Map.Entry entry : RecipeData.recipes.entrySet()) { - wrapper.write(Type.STRING, entry.getKey()); // Id - wrapper.write(Type.STRING, entry.getValue().getType()); - switch (entry.getValue().getType()) { - case "crafting_shapeless": { - wrapper.write(Type.STRING, entry.getValue().getGroup()); - wrapper.write(Type.VAR_INT, entry.getValue().getIngredients().length); - for (Item[] ingredient : entry.getValue().getIngredients()) { - Item[] clone = ingredient.clone(); // Clone because array and item is mutable - for (int i = 0; i < clone.length; i++) { - if (clone[i] == null) continue; - clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), - (short) 0, null); - } - wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); - } - wrapper.write(Type.FLAT_ITEM, new Item( - entry.getValue().getResult().getId(), - entry.getValue().getResult().getAmount(), (short) 0, null)); - break; - } - case "crafting_shaped": { - wrapper.write(Type.VAR_INT, entry.getValue().getWidth()); - wrapper.write(Type.VAR_INT, entry.getValue().getHeight()); - wrapper.write(Type.STRING, entry.getValue().getGroup()); - for (Item[] ingredient : entry.getValue().getIngredients()) { - Item[] clone = ingredient.clone(); // Clone because array and item is mutable - for (int i = 0; i < clone.length; i++) { - if (clone[i] == null) continue; - clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), - (short) 0, null); - } - wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); - } - wrapper.write(Type.FLAT_ITEM, new Item( - entry.getValue().getResult().getId(), - entry.getValue().getResult().getAmount(), (short) 0, null)); - break; - } - case "smelting": { - wrapper.write(Type.STRING, entry.getValue().getGroup()); - Item[] clone = entry.getValue().getIngredient().clone(); // Clone because array and item is mutable - for (int i = 0; i < clone.length; i++) { - if (clone[i] == null) continue; - clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), - (short) 0, null); - } - wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); - wrapper.write(Type.FLAT_ITEM, new Item( - entry.getValue().getResult().getId(), - entry.getValue().getResult().getAmount(), (short) 0, null)); - wrapper.write(Type.FLOAT, entry.getValue().getExperience()); - wrapper.write(Type.VAR_INT, entry.getValue().getCookingTime()); - break; - } - } - } - } - }).send(Protocol1_13To1_12_2.class); } }; @@ -552,6 +488,71 @@ public class Protocol1_13To1_12_2 extends Protocol { } wrapper.write(Type.STRING_ARRAY, stringIds); } + if (action == 0) { + wrapper.create(0x54, new ValueCreator() { // Declare recipes + @Override + public void write(PacketWrapper wrapper) throws Exception { + wrapper.write(Type.VAR_INT, RecipeData.recipes.size()); + for (Map.Entry entry : RecipeData.recipes.entrySet()) { + wrapper.write(Type.STRING, entry.getKey()); // Id + wrapper.write(Type.STRING, entry.getValue().getType()); + switch (entry.getValue().getType()) { + case "crafting_shapeless": { + wrapper.write(Type.STRING, entry.getValue().getGroup()); + wrapper.write(Type.VAR_INT, entry.getValue().getIngredients().length); + for (Item[] ingredient : entry.getValue().getIngredients()) { + Item[] clone = ingredient.clone(); // Clone because array and item is mutable + for (int i = 0; i < clone.length; i++) { + if (clone[i] == null) continue; + clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), + (short) 0, null); + } + wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); + } + wrapper.write(Type.FLAT_ITEM, new Item( + entry.getValue().getResult().getId(), + entry.getValue().getResult().getAmount(), (short) 0, null)); + break; + } + case "crafting_shaped": { + wrapper.write(Type.VAR_INT, entry.getValue().getWidth()); + wrapper.write(Type.VAR_INT, entry.getValue().getHeight()); + wrapper.write(Type.STRING, entry.getValue().getGroup()); + for (Item[] ingredient : entry.getValue().getIngredients()) { + Item[] clone = ingredient.clone(); // Clone because array and item is mutable + for (int i = 0; i < clone.length; i++) { + if (clone[i] == null) continue; + clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), + (short) 0, null); + } + wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); + } + wrapper.write(Type.FLAT_ITEM, new Item( + entry.getValue().getResult().getId(), + entry.getValue().getResult().getAmount(), (short) 0, null)); + break; + } + case "smelting": { + wrapper.write(Type.STRING, entry.getValue().getGroup()); + Item[] clone = entry.getValue().getIngredient().clone(); // Clone because array and item is mutable + for (int i = 0; i < clone.length; i++) { + if (clone[i] == null) continue; + clone[i] = new Item(clone[i].getId(), clone[i].getAmount(), + (short) 0, null); + } + wrapper.write(Type.FLAT_ITEM_ARRAY_VAR_INT, clone); + wrapper.write(Type.FLAT_ITEM, new Item( + entry.getValue().getResult().getId(), + entry.getValue().getResult().getAmount(), (short) 0, null)); + wrapper.write(Type.FLOAT, entry.getValue().getExperience()); + wrapper.write(Type.VAR_INT, entry.getValue().getCookingTime()); + break; + } + } + } + } + }).send(Protocol1_13To1_12_2.class, true, true); + } } }); } @@ -922,10 +923,10 @@ public class Protocol1_13To1_12_2 extends Protocol { @Override public void handle(PacketWrapper wrapper) throws Exception { map(Type.BYTE); // Window id - map(Type.STRING, new ValueTransformer(Type.VAR_INT) { + handler(new PacketHandler() { @Override - public Integer transform(PacketWrapper wrapper, String inputValue) throws Exception { - return Integer.parseInt(inputValue.substring(18)); + public void handle(PacketWrapper wrapper) throws Exception { + wrapper.write(Type.VAR_INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); } }); } @@ -949,7 +950,7 @@ public class Protocol1_13To1_12_2 extends Protocol { int type = wrapper.get(Type.VAR_INT, 0); if (type == 0) { - wrapper.write(Type.VAR_INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); + wrapper.write(Type.INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); } if (type == 1) { wrapper.passthrough(Type.BOOLEAN); // Crafting Recipe Book Open wrapper.passthrough(Type.BOOLEAN); // Crafting Recipe Filter Active From 7c6118bd6f2b7e981f4820a3df3ac2764e5edde0 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Mon, 10 Dec 2018 12:53:21 -0200 Subject: [PATCH 4/5] facepalm --- .../protocol1_13to1_12_2/Protocol1_13To1_12_2.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java index aa4e40a8e..74a3a4c9d 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/Protocol1_13To1_12_2.java @@ -919,16 +919,11 @@ public class Protocol1_13To1_12_2 extends Protocol { registerIncoming(State.PLAY, 0x12, 0x16, new PacketRemapper() { @Override public void registerMap() { + map(Type.BYTE); // Window id handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { - map(Type.BYTE); // Window id - handler(new PacketHandler() { - @Override - public void handle(PacketWrapper wrapper) throws Exception { - wrapper.write(Type.VAR_INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); - } - }); + wrapper.write(Type.VAR_INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); } }); } @@ -951,7 +946,8 @@ public class Protocol1_13To1_12_2 extends Protocol { if (type == 0) { wrapper.write(Type.INT, Integer.parseInt(wrapper.read(Type.STRING).substring(18))); - } if (type == 1) { + } + if (type == 1) { wrapper.passthrough(Type.BOOLEAN); // Crafting Recipe Book Open wrapper.passthrough(Type.BOOLEAN); // Crafting Recipe Filter Active wrapper.read(Type.BOOLEAN); // Smelting Recipe Book Open | IGNORE NEW 1.13 FIELD From 0c5f5c6e3fffdcd51faaec5eada830c2d60b4b29 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Mon, 10 Dec 2018 12:56:45 -0200 Subject: [PATCH 5/5] remove debug --- .../protocols/protocol1_13to1_12_2/data/RecipeData.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java index 110f11388..0be032fbe 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/RecipeData.java @@ -33,12 +33,6 @@ public class RecipeData { } } - // todo remove this debug - public static void main(String[] args) { - init(); - System.out.println(recipes); - } - @Data public static class Recipe { @NonNull