diff --git a/pom.xml b/pom.xml
index 4da15bb7..63f32b0f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,14 +54,14 @@
net.md-5
bungeecord-api
- 1.15-SNAPSHOT
+ 1.16-R0.1-SNAPSHOT
jar
provided
net.md-5
bungeecord-proxy
- 1.15-SNAPSHOT
+ 1.16-R0.1-SNAPSHOT
provided
diff --git a/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java b/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java
index 4c2b5e63..62ff2281 100644
--- a/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java
+++ b/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java
@@ -30,9 +30,10 @@ public final class ProtocolVersions {
public final static int MINECRAFT_1_15_1 = 575;
public final static int MINECRAFT_1_15_2 = 578;
public final static int MINECRAFT_1_16 = 735;
+ public final static int MINECRAFT_1_16_1 = 736;
- public final static int MINECRAFT_LATEST = MINECRAFT_1_16;
+ public final static int MINECRAFT_LATEST = MINECRAFT_1_16_1;
private ProtocolVersions() {}
diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java
index 9024846b..662467fc 100644
--- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java
+++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java
@@ -40,6 +40,7 @@ public class ClickWindow extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x09);
MAPPING.put(MINECRAFT_1_15_2, 0x09);
MAPPING.put(MINECRAFT_1_16, 0x09);
+ MAPPING.put(MINECRAFT_1_16_1, 0x09);
}
private int windowId, actionNumber;
diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java
index ef099cfd..461baf9c 100644
--- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java
+++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java
@@ -39,6 +39,7 @@ public class CloseWindow extends AbstractPacket {
MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_1, 0x14);
MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_2, 0x14);
MAPPING_CLIENTBOUND.put(MINECRAFT_1_16, 0x13);
+ MAPPING_CLIENTBOUND.put(MINECRAFT_1_16_1, 0x13);
MAPPING_SERVERBOUND.put(MINECRAFT_1_8, 0x0D);
MAPPING_SERVERBOUND.put(MINECRAFT_1_9, 0x08);
@@ -63,6 +64,7 @@ public class CloseWindow extends AbstractPacket {
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x0A);
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x0A);
MAPPING_SERVERBOUND.put(MINECRAFT_1_16, 0x0A);
+ MAPPING_SERVERBOUND.put(MINECRAFT_1_16_1, 0x0A);
}
private int windowId;
diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java
index a5c96f45..1268336d 100644
--- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java
+++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java
@@ -40,6 +40,7 @@ public class ConfirmTransaction extends AbstractPacket {
MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_1, 0x13);
MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_2, 0x13);
MAPPING_CLIENTBOUND.put(MINECRAFT_1_16, 0x12);
+ MAPPING_CLIENTBOUND.put(MINECRAFT_1_16_1, 0x12);
MAPPING_SERVERBOUND.put(MINECRAFT_1_9, 0x05);
MAPPING_SERVERBOUND.put(MINECRAFT_1_9_1, 0x05);
@@ -62,7 +63,7 @@ public class ConfirmTransaction extends AbstractPacket {
MAPPING_SERVERBOUND.put(MINECRAFT_1_15, 0x07);
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x07);
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x07);
- MAPPING_SERVERBOUND.put(MINECRAFT_1_16, 0x07);
+ MAPPING_SERVERBOUND.put(MINECRAFT_1_16_1, 0x07);
}
private int windowId;
diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java
index ad7116d1..c23387ed 100644
--- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java
+++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java
@@ -42,6 +42,7 @@ public class OpenWindow extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x2F);
MAPPING.put(MINECRAFT_1_15_2, 0x2F);
MAPPING.put(MINECRAFT_1_16, 0x2E);
+ MAPPING.put(MINECRAFT_1_16_1, 0x2E);
}
private int windowId;
diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java
index c8fc4ae0..d0d5d48f 100644
--- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java
+++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java
@@ -39,6 +39,7 @@ public class WindowProperty extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x16);
MAPPING.put(MINECRAFT_1_15_2, 0x16);
MAPPING.put(MINECRAFT_1_16, 0x15);
+ MAPPING.put(MINECRAFT_1_16_1, 0x15);
}
private int windowId;
diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java
index a06af9c8..4201c774 100644
--- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java
+++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java
@@ -41,6 +41,7 @@ public class BlockPlacement extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x2C);
MAPPING.put(MINECRAFT_1_15_2, 0x2C);
MAPPING.put(MINECRAFT_1_16, 0x2D);
+ MAPPING.put(MINECRAFT_1_16_1, 0x2D);
}
private BlockPosition position;
diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java
index e8da3d75..8372452b 100644
--- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java
+++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java
@@ -63,6 +63,7 @@ public class HeldItemChange extends AbstractPacket {
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x23);
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x23);
MAPPING_SERVERBOUND.put(MINECRAFT_1_16, 0x24);
+ MAPPING_SERVERBOUND.put(MINECRAFT_1_16_1, 0x24);
}
private short newSlot;
diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java
index ce858719..b0e55daa 100644
--- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java
+++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java
@@ -40,6 +40,7 @@ public class SetSlot extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x17);
MAPPING.put(MINECRAFT_1_15_2, 0x17);
MAPPING.put(MINECRAFT_1_16, 0x16);
+ MAPPING.put(MINECRAFT_1_16_1, 0x16);
}
private byte windowId;
diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java
index 53b7d42b..ad87d4a5 100644
--- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java
+++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java
@@ -38,6 +38,7 @@ public class UseItem extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x2D);
MAPPING.put(MINECRAFT_1_15_2, 0x2D);
MAPPING.put(MINECRAFT_1_16, 0x2E);
+ MAPPING.put(MINECRAFT_1_16_1, 0x2E);
}
private Hand hand;
diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java
index af30a4c8..625b5d23 100644
--- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java
+++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java
@@ -45,6 +45,7 @@ public class WindowItems extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x15);
MAPPING.put(MINECRAFT_1_15_2, 0x15);
MAPPING.put(MINECRAFT_1_16, 0x14);
+ MAPPING.put(MINECRAFT_1_16_1, 0x14);
}
public WindowItems(final short windowId, final List items) {
diff --git a/protocolize-items/src/main/json/ItemType.json b/protocolize-items/src/main/json/ItemType.json
index c1cd55ac..cb12cbb8 100644
--- a/protocolize-items/src/main/json/ItemType.json
+++ b/protocolize-items/src/main/json/ItemType.json
@@ -26,6 +26,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 442
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 493
}
]
},
@@ -38,6 +44,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 713
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 775
}
]
},
@@ -63,6 +75,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 310
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 360
}
]
},
@@ -87,6 +105,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 550
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 604
}
]
},
@@ -105,6 +129,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 465
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 516
}
]
},
@@ -136,6 +166,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 751
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 816
}
]
},
@@ -160,6 +196,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 410
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 461
}
]
},
@@ -178,6 +220,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 169
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 194
}
]
},
@@ -202,6 +250,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 268
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 317
}
]
},
@@ -214,6 +268,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 698
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 760
}
]
},
@@ -238,6 +298,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 223
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 261
}
]
},
@@ -250,6 +316,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 256
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 298
}
]
},
@@ -280,6 +352,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 789
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 856
}
]
},
@@ -298,50 +376,68 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 50
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 61
}
]
},
{
- "name": "GRAY_STAINED_GLASS",
+ "name": "WHITE_TULIP",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 95,
- "durability": 7
+ "id": 38,
+ "durability": 6
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 318
+ "protocolRangeEnd": 578,
+ "id": 105
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 578,
- "id": 336
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 118
}
]
},
{
- "name": "WHITE_TULIP",
+ "name": "GRAY_STAINED_GLASS",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 38,
- "durability": 6
+ "id": 95,
+ "durability": 7
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 318
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 105
+ "id": 336
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 386
}
]
},
@@ -361,6 +457,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 100
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 113
}
]
},
@@ -391,6 +493,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 508
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 559
}
]
},
@@ -403,6 +511,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 40
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 47
}
]
},
@@ -428,6 +542,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 284
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 334
}
]
},
@@ -459,6 +579,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 772
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 838
}
]
},
@@ -478,6 +604,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 94
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 107
}
]
},
@@ -508,6 +640,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 757
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 823
}
]
},
@@ -520,6 +658,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 251
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 293
}
]
},
@@ -544,6 +688,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 382
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 433
}
]
},
@@ -568,6 +718,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 523
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 575
}
]
},
@@ -593,6 +749,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 207
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 242
}
]
},
@@ -618,6 +780,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 127
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 152
}
]
},
@@ -636,6 +804,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 66
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 79
}
]
},
@@ -661,6 +835,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 118
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 141
}
]
},
@@ -686,6 +866,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 664
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 726
}
]
},
@@ -698,6 +884,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 483
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 534
}
]
},
@@ -722,6 +914,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 623
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 685
}
]
},
@@ -752,6 +950,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 849
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 916
}
]
},
@@ -771,6 +975,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 16
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 18
}
]
},
@@ -801,6 +1011,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 795
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 862
}
]
},
@@ -825,6 +1041,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 618
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 680
}
]
},
@@ -843,6 +1065,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 445
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 496
}
]
},
@@ -867,6 +1095,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 529
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 581
}
]
},
@@ -891,6 +1125,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 534
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 588
}
]
},
@@ -909,6 +1149,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 12
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 14
}
]
},
@@ -927,6 +1173,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 456
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 507
+ }
+ ]
+ },
+ {
+ "name": "GILDED_BLACKSTONE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 965
}
]
},
@@ -952,6 +1216,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 354
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 404
}
]
},
@@ -964,6 +1234,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 493
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 544
}
]
},
@@ -988,6 +1264,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 526
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 578
}
]
},
@@ -1000,6 +1282,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 69
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 82
}
]
},
@@ -1018,6 +1306,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 836
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 903
}
]
},
@@ -1042,6 +1336,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 384
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 435
}
]
},
@@ -1054,6 +1354,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 253
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 295
}
]
},
@@ -1073,6 +1379,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 96
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 109
}
]
},
@@ -1097,6 +1409,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 243
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 285
}
]
},
@@ -1115,6 +1433,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 364
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 414
}
]
},
@@ -1132,7 +1456,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 7
}
]
@@ -1158,6 +1482,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 158
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 183
}
]
},
@@ -1170,6 +1500,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 863
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 931
}
]
},
@@ -1182,6 +1518,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 108
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 121
}
]
},
@@ -1207,6 +1549,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 200
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 235
}
]
},
@@ -1224,7 +1572,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 4
}
]
@@ -1256,8 +1604,14 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 818
- }
- ]
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 885
+ }
+ ]
},
{
"name": "LIGHT_BLUE_CONCRETE",
@@ -1274,6 +1628,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 416
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 467
}
]
},
@@ -1286,6 +1646,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 503
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 554
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_BUTTON",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 313
}
]
},
@@ -1298,6 +1676,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 250
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 292
}
]
},
@@ -1329,6 +1713,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 716
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 779
+ }
+ ]
+ },
+ {
+ "name": "WARPED_SLAB",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 145
}
]
},
@@ -1347,6 +1749,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 737
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 801
}
]
},
@@ -1359,6 +1767,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 252
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 294
}
]
},
@@ -1378,6 +1792,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 55
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 66
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_HYPHAE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 67
}
]
},
@@ -1402,6 +1834,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 180
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 207
}
]
},
@@ -1420,6 +1858,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 264
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 310
}
]
},
@@ -1444,6 +1888,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 524
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 576
}
]
},
@@ -1468,6 +1918,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 832
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 899
}
]
},
@@ -1492,6 +1948,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 595
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 660
+ }
+ ]
+ },
+ {
+ "name": "WARPED_STAIRS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 284
}
]
},
@@ -1510,48 +1984,66 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 444
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 495
}
]
},
{
- "name": "MINECART",
+ "name": "DARK_OAK_PRESSURE_PLATE",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 328
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 545
+ "id": 165
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 598
+ "id": 171
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 196
}
]
},
{
- "name": "DARK_OAK_PRESSURE_PLATE",
+ "name": "MINECART",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 328
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 165
+ "id": 545
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 171
+ "id": 598
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 663
}
]
},
@@ -1576,6 +2068,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 687
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 749
}
]
},
@@ -1588,6 +2086,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 45
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 54
}
]
},
@@ -1612,6 +2116,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 259
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 305
}
]
},
@@ -1630,6 +2140,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 26
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 30
}
]
},
@@ -1647,7 +2163,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 2
}
]
@@ -1673,6 +2189,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 671
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 733
}
]
},
@@ -1697,6 +2219,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 536
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 590
}
]
},
@@ -1722,6 +2250,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 346
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 396
}
]
},
@@ -1747,54 +2281,72 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 293
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 343
}
]
},
{
- "name": "NETHER_WART",
+ "name": "INK_SAC",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 372
+ "id": 351
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 628
+ "id": 577
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 686
+ "id": 631
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 693
}
]
},
{
- "name": "INK_SAC",
+ "name": "NETHER_WART",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 351
+ "id": 372
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 577
+ "id": 628
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 631
+ "id": 686
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 748
}
]
},
@@ -1820,6 +2372,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 304
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 354
}
]
},
@@ -1850,6 +2408,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 821
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 888
}
]
},
@@ -1862,103 +2426,133 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 109
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 122
}
]
},
{
- "name": "COOKIE",
+ "name": "HAY_BLOCK",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 357
+ "id": 170
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 612
+ "id": 281
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 670
+ "id": 299
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 349
}
]
},
{
- "name": "HAY_BLOCK",
+ "name": "COOKIE",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 170
+ "id": 357
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 281
+ "id": 612
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 299
+ "id": 670
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 732
}
]
},
{
- "name": "IRON_LEGGINGS",
+ "name": "ORANGE_DYE",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 308
+ "id": 351,
+ "durability": 14
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 525
+ "id": 591
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 573
+ "id": 645
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 707
}
]
},
{
- "name": "ORANGE_DYE",
+ "name": "IRON_LEGGINGS",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 351,
- "durability": 14
+ "id": 308
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 591
+ "id": 525
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 645
+ "id": 573
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 632
}
]
},
@@ -1971,21 +2565,39 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 871
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 941
}
]
},
{
- "name": "BLACK_STAINED_GLASS_PANE",
+ "name": "CRIMSON_FENCE_GATE",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 160,
- "durability": 15
- },
- {
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 258
+ }
+ ]
+ },
+ {
+ "name": "BLACK_STAINED_GLASS_PANE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 160,
+ "durability": 15
+ },
+ {
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
@@ -1996,6 +2608,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 360
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 410
}
]
},
@@ -2015,6 +2633,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 101
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 114
}
]
},
@@ -2039,6 +2663,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 163
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 188
}
]
},
@@ -2051,6 +2681,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 857
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 925
}
]
},
@@ -2081,6 +2717,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 777
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 844
+ }
+ ]
+ },
+ {
+ "name": "CRYING_OBSIDIAN",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 961
}
]
},
@@ -2099,6 +2753,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 73
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 86
+ }
+ ]
+ },
+ {
+ "name": "SOUL_CAMPFIRE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 949
}
]
},
@@ -2111,6 +2783,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 124
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 149
}
]
},
@@ -2136,6 +2814,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 339
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 389
}
]
},
@@ -2154,6 +2838,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 441
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 492
}
]
},
@@ -2178,6 +2868,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 316
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 366
}
]
},
@@ -2196,6 +2892,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 232
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 272
}
]
},
@@ -2214,6 +2916,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 708
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 770
}
]
},
@@ -2224,7 +2932,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 10
}
]
@@ -2244,6 +2952,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 405
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 456
}
]
},
@@ -2268,6 +2982,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 191
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 224
}
]
},
@@ -2280,6 +3000,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 504
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 555
+ }
+ ]
+ },
+ {
+ "name": "ANCIENT_DEBRIS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 959
}
]
},
@@ -2292,6 +3030,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 858
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 926
}
]
},
@@ -2316,6 +3060,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 387
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 438
}
]
},
@@ -2340,6 +3090,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 584
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 647
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_DOOR",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 564
}
]
},
@@ -2364,6 +3132,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 213
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 249
}
]
},
@@ -2419,6 +3193,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 156
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 181
}
]
},
@@ -2444,6 +3224,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 266
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 315
}
]
},
@@ -2462,6 +3248,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 56
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 69
}
]
},
@@ -2486,6 +3278,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 629
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 691
}
]
},
@@ -2517,6 +3315,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 811
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 878
}
]
},
@@ -2542,6 +3346,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 656
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 718
+ }
+ ]
+ },
+ {
+ "name": "SPONGE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 19
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 393,
+ "protocolRangeEnd": 578,
+ "id": 62
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 75
}
]
},
@@ -2573,24 +3407,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 668
- }
- ]
- },
- {
- "name": "SPONGE",
- "maxStackSize": 64,
- "mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 19
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 393,
- "protocolRangeEnd": 578,
- "id": 62
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 730
}
]
},
@@ -2621,6 +3443,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 827
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 894
}
]
},
@@ -2651,6 +3479,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 838
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 905
}
]
},
@@ -2663,6 +3497,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 39
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 46
}
]
},
@@ -2687,6 +3527,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 533
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 587
}
]
},
@@ -2711,6 +3557,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 148
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 173
}
]
},
@@ -2741,6 +3593,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 781
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 848
}
]
},
@@ -2753,6 +3611,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 488
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 539
+ }
+ ]
+ },
+ {
+ "name": "PIGLIN_SPAWN_EGG",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 790
}
]
},
@@ -2777,6 +3653,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 556
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 614
}
]
},
@@ -2801,6 +3683,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 141
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 166
}
]
},
@@ -2813,6 +3701,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 700
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 762
}
]
},
@@ -2825,6 +3719,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 255
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 297
}
]
},
@@ -2849,6 +3749,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 515
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 568
}
]
},
@@ -2880,6 +3786,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 739
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 803
}
]
},
@@ -2899,6 +3811,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 63
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 76
}
]
},
@@ -2924,6 +3842,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 314
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 364
}
]
},
@@ -2948,9 +3872,15 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 229
- }
- ]
- },
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 269
+ }
+ ]
+ },
{
"name": "PHANTOM_SPAWN_EGG",
"maxStackSize": 64,
@@ -2966,6 +3896,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 725
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 788
}
]
},
@@ -2991,6 +3927,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 333
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 383
+ }
+ ]
+ },
+ {
+ "name": "PIGLIN_BANNER_PATTERN",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 933
}
]
},
@@ -3016,6 +3970,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 697
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 759
}
]
},
@@ -3047,6 +4007,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 816
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 883
}
]
},
@@ -3071,6 +4037,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 322
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 372
}
]
},
@@ -3096,6 +4068,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 356
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 406
}
]
},
@@ -3122,6 +4100,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 33
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 38
}
]
},
@@ -3146,6 +4130,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 183
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 210
}
]
},
@@ -3182,6 +4172,48 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 767
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 833
+ }
+ ]
+ },
+ {
+ "name": "HOGLIN_SPAWN_EGG",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 778
+ }
+ ]
+ },
+ {
+ "name": "SOUL_LANTERN",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 946
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_BRICKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 970
}
]
},
@@ -3206,6 +4238,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 345
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 395
}
]
},
@@ -3231,6 +4269,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 334
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 384
}
]
},
@@ -3243,6 +4287,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 258
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 300
}
]
},
@@ -3267,6 +4317,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 374
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 424
}
]
},
@@ -3291,6 +4347,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 624
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 686
+ }
+ ]
+ },
+ {
+ "name": "STRIDER_SPAWN_EGG",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 806
}
]
},
@@ -3303,6 +4377,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 594
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 657
}
]
},
@@ -3327,6 +4407,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 549
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 603
}
]
},
@@ -3358,6 +4444,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 730
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 794
}
]
},
@@ -3376,6 +4468,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 440
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 491
}
]
},
@@ -3400,6 +4498,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 149
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 174
}
]
},
@@ -3424,6 +4528,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 412
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 463
}
]
},
@@ -3454,6 +4564,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 759
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 825
}
]
},
@@ -3478,6 +4594,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 543
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 597
}
]
},
@@ -3503,6 +4625,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 343
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 393
}
]
},
@@ -3533,6 +4661,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 780
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 847
}
]
},
@@ -3557,6 +4691,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 297
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 347
+ }
+ ]
+ },
+ {
+ "name": "WARPED_FENCE_GATE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 259
}
]
},
@@ -3581,6 +4733,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 610
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 675
}
]
},
@@ -3593,6 +4751,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 748
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 813
}
]
},
@@ -3617,6 +4781,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 566
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 625
}
]
},
@@ -3641,6 +4811,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 604
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 669
}
]
},
@@ -3665,6 +4841,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 678
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 740
}
]
},
@@ -3689,6 +4871,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 159
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 184
}
]
},
@@ -3720,6 +4908,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 736
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 800
}
]
},
@@ -3745,6 +4939,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 362
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 412
}
]
},
@@ -3771,6 +4971,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 37
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 42
}
]
},
@@ -3789,6 +4995,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 467
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 518
}
]
},
@@ -3813,6 +5025,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 565
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 624
}
]
},
@@ -3837,6 +5055,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 622
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 684
}
]
},
@@ -3855,6 +5079,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 519
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 571
}
]
},
@@ -3879,6 +5109,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 383
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 434
}
]
},
@@ -3903,6 +5139,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 682
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 744
}
]
},
@@ -3928,6 +5170,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 277
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 327
+ }
+ ]
+ },
+ {
+ "name": "WARPED_TRAPDOOR",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 233
}
]
},
@@ -3952,6 +5212,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 272
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 321
+ }
+ ]
+ },
+ {
+ "name": "MUSIC_DISC_PIGSTEP",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 920
+ }
+ ]
+ },
+ {
+ "name": "CHISELED_POLISHED_BLACKSTONE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 969
}
]
},
@@ -3977,6 +5267,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 117
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 140
}
]
},
@@ -4001,7 +5297,13 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 386
- }
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 437
+ }
]
},
{
@@ -4026,6 +5328,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 130
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 155
}
]
},
@@ -4057,6 +5365,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 733
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 797
}
]
},
@@ -4081,6 +5395,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 276
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 325
}
]
},
@@ -4105,36 +5425,42 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 175
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 202
}
]
},
{
- "name": "TNT_MINECART",
+ "name": "SUGAR_CANE",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 498,
- "id": 782
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 407
+ "id": 338
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 717
+ "id": 558
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 783
+ "id": 611
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 133
}
]
},
@@ -4166,30 +5492,48 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 749
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 814
}
]
},
{
- "name": "SUGAR_CANE",
+ "name": "TNT_MINECART",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
+ "protocolRangeEnd": 498,
+ "id": 782
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 338
+ "id": 407
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 558
+ "id": 717
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 611
+ "id": 783
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 850
}
]
},
@@ -4220,6 +5564,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 792
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 859
}
]
},
@@ -4244,6 +5594,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 185
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 212
}
]
},
@@ -4268,48 +5624,66 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 186
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 213
}
]
},
{
- "name": "BOW",
+ "name": "HORN_CORAL",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 261
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 477
+ "id": 442
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 525
+ "id": 460
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 511
}
]
},
{
- "name": "HORN_CORAL",
+ "name": "BOW",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 261
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 442
+ "id": 477
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 460
+ "id": 525
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 577
}
]
},
@@ -4328,6 +5702,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 466
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 517
}
]
},
@@ -4352,6 +5732,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 652
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 714
}
]
},
@@ -4376,6 +5762,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 144
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 169
}
]
},
@@ -4400,6 +5792,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 271
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 320
+ }
+ ]
+ },
+ {
+ "name": "WARPED_FENCE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 215
}
]
},
@@ -4430,6 +5840,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 791
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 858
}
]
},
@@ -4448,6 +5864,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 458
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 509
}
]
},
@@ -4472,6 +5894,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 242
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 282
}
]
},
@@ -4497,6 +5925,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 309
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 359
}
]
},
@@ -4521,6 +5955,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 379
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 430
}
]
},
@@ -4539,6 +5979,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 194
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 227
}
]
},
@@ -4563,6 +6009,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 833
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 900
}
]
},
@@ -4575,6 +6027,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 867
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 937
}
]
},
@@ -4599,6 +6057,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 131
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 156
}
]
},
@@ -4623,6 +6087,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 145
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 170
}
]
},
@@ -4641,6 +6111,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 469
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 520
}
]
},
@@ -4660,6 +6136,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 102
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 115
}
]
},
@@ -4678,31 +6160,36 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 840
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 907
}
]
},
{
- "name": "PURPLE_STAINED_GLASS_PANE",
+ "name": "HUSK_SPAWN_EGG",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 160,
- "durability": 10
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 337
+ "id": 656
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 355
+ "id": 717
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 780
}
]
},
@@ -4727,24 +6214,43 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 402
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 453
}
]
},
{
- "name": "HUSK_SPAWN_EGG",
+ "name": "PURPLE_STAINED_GLASS_PANE",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 160,
+ "durability": 10
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 656
+ "id": 337
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 717
+ "id": 355
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 405
}
]
},
@@ -4757,6 +6263,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 868
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 938
}
]
},
@@ -4788,6 +6300,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 752
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 818
}
]
},
@@ -4813,6 +6331,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 528
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 580
}
]
},
@@ -4843,6 +6367,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 823
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 890
}
]
},
@@ -4855,42 +6385,72 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 110
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 123
}
]
},
{
- "name": "PISTON",
+ "name": "DEAD_BRAIN_CORAL_FAN",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 33
+ "protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 454
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 393,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 81
+ "id": 472
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 523
}
]
},
{
- "name": "DEAD_BRAIN_CORAL_FAN",
+ "name": "PISTON",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 454
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 33
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 393,
"protocolRangeEnd": 578,
- "id": 472
+ "id": 81
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 94
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_CHESTPLATE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 643
}
]
},
@@ -4922,6 +6482,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 806
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 873
}
]
},
@@ -4940,6 +6506,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 370
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 420
}
]
},
@@ -4959,48 +6531,66 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 21
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 25
}
]
},
{
- "name": "CHAINMAIL_LEGGINGS",
+ "name": "LIME_CONCRETE",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 304
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 521
+ "id": 400
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 569
+ "id": 418
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 469
}
]
},
{
- "name": "LIME_CONCRETE",
+ "name": "CHAINMAIL_LEGGINGS",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 304
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 400
+ "id": 521
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 418
+ "id": 569
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 628
}
]
},
@@ -5025,6 +6615,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 133
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 158
}
]
},
@@ -5049,6 +6645,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 601
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 666
+ }
+ ]
+ },
+ {
+ "name": "PURPLE_CONCRETE_POWDER",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 421
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 573,
+ "protocolRangeEnd": 578,
+ "id": 439
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 490
}
]
},
@@ -5080,24 +6706,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 812
- }
- ]
- },
- {
- "name": "PURPLE_CONCRETE_POWDER",
- "maxStackSize": 64,
- "mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 421
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
- "protocolRangeEnd": 578,
- "id": 439
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 879
}
]
},
@@ -5124,6 +6738,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 34
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 39
}
]
},
@@ -5142,49 +6762,67 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 136
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 161
}
]
},
{
- "name": "ACACIA_PLANKS",
+ "name": "MYCELIUM",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 5,
- "durability": 4
+ "id": 110
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 218
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 17
+ "id": 224
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 262
}
]
},
{
- "name": "MYCELIUM",
+ "name": "ACACIA_PLANKS",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 110
+ "id": 5,
+ "durability": 4
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 218
+ "protocolRangeEnd": 578,
+ "id": 17
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 578,
- "id": 224
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 19
}
]
},
@@ -5209,6 +6847,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 368
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 418
}
]
},
@@ -5233,6 +6877,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 564
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 623
}
]
},
@@ -5251,6 +6901,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 425
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 476
}
]
},
@@ -5269,6 +6925,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 365
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 415
}
]
},
@@ -5293,6 +6955,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 121
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 146
}
]
},
@@ -5305,6 +6973,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 796
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 863
}
]
},
@@ -5324,60 +6998,78 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 58
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 71
}
]
},
{
- "name": "FIREWORK_ROCKET",
+ "name": "NETHER_BRICK_FENCE",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 498,
- "id": 777
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 401
+ "id": 113
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 712
+ "id": 221
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 778
+ "id": 227
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 267
}
]
},
{
- "name": "NETHER_BRICK_FENCE",
+ "name": "FIREWORK_ROCKET",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
+ "protocolRangeEnd": 498,
+ "id": 777
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 113
+ "id": 401
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 221
+ "id": 712
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 227
+ "id": 778
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 845
}
]
},
@@ -5402,6 +7094,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 111
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 124
}
]
},
@@ -5426,6 +7124,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 390
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 441
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_SLAB",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 967
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_BLOCK",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 958
}
]
},
@@ -5457,6 +7185,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 722
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 785
}
]
},
@@ -5475,49 +7209,67 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 170
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 195
}
]
},
{
- "name": "SHEARS",
+ "name": "RED_SAND",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 359
+ "id": 12,
+ "durability": 1
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 614
+ "protocolRangeEnd": 578,
+ "id": 27
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 578,
- "id": 672
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 31
}
]
},
{
- "name": "RED_SAND",
+ "name": "SHEARS",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 12,
- "durability": 1
+ "id": 359
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 614
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 27
+ "id": 672
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 734
}
]
},
@@ -5530,6 +7282,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 478
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 529
}
]
},
@@ -5561,48 +7319,66 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 804
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 871
}
]
},
{
- "name": "QUARTZ_STAIRS",
+ "name": "DRIED_KELP_BLOCK",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 156
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 260
+ "id": 560
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 278
+ "id": 613
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 676
}
]
},
{
- "name": "DRIED_KELP_BLOCK",
+ "name": "QUARTZ_STAIRS",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 156
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 560
+ "id": 260
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 613
+ "id": 278
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 328
}
]
},
@@ -5633,6 +7409,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 693
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 755
}
]
},
@@ -5657,6 +7439,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 178
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 205
}
]
},
@@ -5681,6 +7469,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 653
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 715
}
]
},
@@ -5693,6 +7487,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 499
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 550
}
]
},
@@ -5717,18 +7517,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 570
- }
- ]
- },
- {
- "name": "STRIPPED_ACACIA_WOOD",
- "maxStackSize": 64,
- "mappings": [
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 393,
- "protocolRangeEnd": 578,
- "id": 48
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 629
}
]
},
@@ -5759,6 +7553,30 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 779
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 846
+ }
+ ]
+ },
+ {
+ "name": "STRIPPED_ACACIA_WOOD",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 393,
+ "protocolRangeEnd": 578,
+ "id": 48
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 57
}
]
},
@@ -5784,6 +7602,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 636
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 698
}
]
},
@@ -5815,6 +7639,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 704
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 766
}
]
},
@@ -5833,6 +7663,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 709
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 771
}
]
},
@@ -5864,6 +7700,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 810
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 877
}
]
},
@@ -5895,6 +7737,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 815
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 882
}
]
},
@@ -5907,49 +7755,67 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 590
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 653
}
]
},
{
- "name": "BLUE_STAINED_GLASS",
+ "name": "ZOMBIE_VILLAGER_SPAWN_EGG",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 95,
- "durability": 11
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 322
+ "id": 689
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 340
+ "id": 755
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 820
}
]
},
{
- "name": "ZOMBIE_VILLAGER_SPAWN_EGG",
+ "name": "BLUE_STAINED_GLASS",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 95,
+ "durability": 11
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 689
+ "id": 322
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 755
+ "id": 340
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 390
}
]
},
@@ -5962,6 +7828,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 46
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 55
}
]
},
@@ -5986,6 +7858,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 321
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 371
+ }
+ ]
+ },
+ {
+ "name": "DRIED_KELP",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 616
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 573,
+ "protocolRangeEnd": 578,
+ "id": 674
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 736
}
]
},
@@ -6010,54 +7912,61 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 112
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 125
}
]
},
{
- "name": "DRIED_KELP",
+ "name": "NAUTILUS_SHELL",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 616
+ "id": 788
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 674
+ "id": 855
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 923
}
]
},
{
- "name": "MUTTON",
+ "name": "SPRUCE_SAPLING",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 498,
- "id": 799
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 423
+ "id": 6,
+ "durability": 1
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 733
+ "protocolRangeEnd": 578,
+ "id": 20
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
- "protocolRangeEnd": 578,
- "id": 800
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 24
}
]
},
@@ -6083,43 +7992,48 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 332
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 382
}
]
},
{
- "name": "SPRUCE_SAPLING",
+ "name": "MUTTON",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 6,
- "durability": 1
+ "protocolRangeStart": 477,
+ "protocolRangeEnd": 498,
+ "id": 799
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 393,
- "protocolRangeEnd": 578,
- "id": 20
- }
- ]
- },
- {
- "name": "NAUTILUS_SHELL",
- "maxStackSize": 64,
- "mappings": [
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 423
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 788
+ "id": 733
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 855
+ "id": 800
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 867
}
]
},
@@ -6132,6 +8046,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 864
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 932
}
]
},
@@ -6144,6 +8064,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 492
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 543
}
]
},
@@ -6156,6 +8082,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 479
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 530
}
]
},
@@ -6174,6 +8106,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 457
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 508
}
]
},
@@ -6192,6 +8130,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 518
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 570
}
]
},
@@ -6210,6 +8154,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 605
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 670
}
]
},
@@ -6234,6 +8184,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 514
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 567
}
]
},
@@ -6265,6 +8221,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 726
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 789
}
]
},
@@ -6289,6 +8251,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 172
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 200
}
]
},
@@ -6313,6 +8281,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 689
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 751
+ }
+ ]
+ },
+ {
+ "name": "STRIPPED_CRIMSON_HYPHAE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 59
}
]
},
@@ -6331,6 +8317,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 449
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 500
}
]
},
@@ -6362,6 +8354,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 770
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 836
}
]
},
@@ -6374,6 +8372,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 249
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 291
}
]
},
@@ -6399,6 +8403,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 289
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 339
}
]
},
@@ -6424,6 +8434,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 348
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 398
}
]
},
@@ -6440,7 +8456,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 8
}
]
@@ -6472,6 +8488,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 839
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 906
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_AXE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 609
}
]
},
@@ -6497,6 +8531,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 331
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 381
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_PRESSURE_PLATE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 197
}
]
},
@@ -6521,6 +8573,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 619
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 681
}
]
},
@@ -6539,6 +8597,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 31
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 35
}
]
},
@@ -6569,6 +8633,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 786
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 853
}
]
},
@@ -6593,6 +8663,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 176
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 203
}
]
},
@@ -6617,6 +8693,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 391
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 442
}
]
},
@@ -6635,6 +8717,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 437
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 488
}
]
},
@@ -6647,49 +8735,79 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 44
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 53
}
]
},
{
- "name": "GOLD_ORE",
+ "name": "GREEN_CARPET",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 14
+ "id": 171,
+ "durability": 13
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
+ "protocolRangeEnd": 404,
+ "id": 295
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 29
+ "id": 313
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 363
}
]
},
{
- "name": "GREEN_CARPET",
+ "name": "GOLD_ORE",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 171,
- "durability": 13
+ "id": 14
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 404,
- "id": 295
+ "protocolRangeEnd": 578,
+ "id": 29
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 578,
- "id": 313
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 33
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 966
}
]
},
@@ -6714,48 +8832,66 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 691
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 753
}
]
},
{
- "name": "TUBE_CORAL_BLOCK",
+ "name": "CLAY",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 47,
+ "protocolRangeEnd": 340,
+ "id": 82
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 433
+ "id": 173
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 451
+ "id": 179
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 206
}
]
},
{
- "name": "CLAY",
+ "name": "TUBE_CORAL_BLOCK",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 82
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 173
+ "id": 433
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 179
+ "id": 451
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 502
}
]
},
@@ -6781,60 +8917,78 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 324
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 374
}
]
},
{
- "name": "RABBIT_FOOT",
+ "name": "RED_SANDSTONE_STAIRS",
"maxStackSize": 64,
"mappings": [
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
- "protocolRangeEnd": 498,
- "id": 789
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 414
+ "id": 180
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 724
+ "id": 353
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 790
+ "id": 371
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 421
}
]
},
{
- "name": "RED_SANDSTONE_STAIRS",
+ "name": "RABBIT_FOOT",
"maxStackSize": 64,
"mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 477,
+ "protocolRangeEnd": 498,
+ "id": 789
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 180
+ "id": 414
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 353
+ "id": 724
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 371
+ "id": 790
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 857
}
]
},
@@ -6859,6 +9013,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 600
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 665
}
]
},
@@ -6884,6 +9044,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 363
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 413
}
]
},
@@ -6914,6 +9080,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 852
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 919
+ }
+ ]
+ },
+ {
+ "name": "NETHER_SPROUTS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 130
}
]
},
@@ -6944,6 +9128,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 828
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 895
}
]
},
@@ -6962,6 +9152,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 453
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 504
}
]
},
@@ -6986,78 +9182,108 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 408
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 459
+ }
+ ]
+ },
+ {
+ "name": "WHITE_DYE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 573,
+ "protocolRangeEnd": 578,
+ "id": 650
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 712
}
]
},
{
- "name": "WHITE_DYE",
+ "name": "BRICK_WALL",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 650
+ "id": 247
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 289
}
]
},
{
- "name": "SLIME_BALL",
+ "name": "ACACIA_FENCE_GATE",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 341
+ "id": 187
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 563
+ "id": 214
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 617
+ "id": 220
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 256
}
]
},
{
- "name": "ACACIA_FENCE_GATE",
+ "name": "SLIME_BALL",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 187
+ "id": 341
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 214
+ "id": 563
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 220
- }
- ]
- },
- {
- "name": "BRICK_WALL",
- "maxStackSize": 64,
- "mappings": [
+ "id": 617
+ },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
- "protocolRangeEnd": 578,
- "id": 247
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 679
}
]
},
@@ -7082,6 +9308,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 218
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 254
}
]
},
@@ -7106,6 +9338,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 577
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 636
}
]
},
@@ -7124,6 +9362,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 421
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 472
}
]
},
@@ -7142,6 +9386,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 824
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 891
}
]
},
@@ -7154,6 +9404,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 482
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 533
}
]
},
@@ -7172,6 +9428,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 198
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 231
}
]
},
@@ -7197,6 +9459,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 285
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 335
}
]
},
@@ -7222,6 +9490,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 369
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 419
}
]
},
@@ -7241,6 +9515,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 53
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 64
+ }
+ ]
+ },
+ {
+ "name": "WARPED_FUNGUS_ON_A_STICK",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 842
}
]
},
@@ -7265,6 +9557,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 675
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 737
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_INGOT",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 584
}
]
},
@@ -7296,6 +9606,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 802
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 869
}
]
},
@@ -7326,55 +9642,85 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 511
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 562
}
]
},
{
- "name": "PRISMARINE",
+ "name": "MOSSY_STONE_BRICKS",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 168
+ "id": 98,
+ "durability": 1
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 343
+ "id": 200
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 477,
+ "protocolRangeStart": 573,
"protocolRangeEnd": 578,
- "id": 361
+ "id": 206
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 241
}
]
},
{
- "name": "MOSSY_STONE_BRICKS",
+ "name": "PRISMARINE",
"maxStackSize": 64,
"mappings": [
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
"protocolRangeEnd": 340,
- "id": 98,
- "durability": 1
+ "id": 168
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
"protocolRangeEnd": 404,
- "id": 200
+ "id": 343
},
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 573,
+ "protocolRangeStart": 477,
"protocolRangeEnd": 578,
- "id": 206
+ "id": 361
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 411
+ }
+ ]
+ },
+ {
+ "name": "WARPED_BUTTON",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 312
}
]
},
@@ -7399,6 +9745,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 579
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 638
}
]
},
@@ -7417,6 +9769,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 446
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 497
}
]
},
@@ -7442,6 +9800,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 139
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 164
}
]
},
@@ -7466,6 +9830,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 157
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 182
}
]
},
@@ -7484,6 +9854,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 19
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 23
}
]
},
@@ -7502,6 +9878,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 724
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 787
}
]
},
@@ -7527,6 +9909,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 128
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 153
}
]
},
@@ -7545,6 +9933,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 420
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 471
}
]
},
@@ -7564,6 +9958,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 61
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 74
}
]
},
@@ -7588,6 +9988,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 522
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 574
}
]
},
@@ -7612,6 +10018,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 367
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 417
}
]
},
@@ -7642,6 +10054,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 214
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 250
}
]
},
@@ -7660,6 +10078,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 426
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 477
}
]
},
@@ -7672,6 +10096,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 875
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 945
}
]
},
@@ -7702,6 +10132,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 829
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 896
}
]
},
@@ -7714,6 +10150,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 122
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 147
}
]
},
@@ -7732,6 +10174,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 140
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 165
}
]
},
@@ -7750,6 +10198,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 703
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 765
}
]
},
@@ -7775,6 +10229,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 358
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 408
}
]
},
@@ -7793,6 +10253,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 414
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 465
}
]
},
@@ -7817,6 +10283,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 651
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 713
}
]
},
@@ -7847,6 +10319,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 766
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 832
}
]
},
@@ -7865,6 +10343,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 376
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 427
}
]
},
@@ -7895,6 +10379,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 845
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 912
}
]
},
@@ -7913,6 +10403,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 438
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 489
}
]
},
@@ -7925,6 +10421,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 866
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 936
}
]
},
@@ -7949,6 +10451,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 535
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 589
}
]
},
@@ -7968,6 +10476,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 15
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 17
}
]
},
@@ -7986,6 +10500,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 372
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 422
}
]
},
@@ -8004,6 +10524,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 744
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 809
}
]
},
@@ -8022,6 +10548,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 443
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 494
}
]
},
@@ -8052,6 +10584,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 509
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 560
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_SIGN",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 658
}
]
},
@@ -8076,6 +10626,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 683
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 745
}
]
},
@@ -8100,6 +10656,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 835
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 902
}
]
},
@@ -8124,6 +10686,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 616
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 678
}
]
},
@@ -8143,6 +10711,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 642
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 704
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_TRAPDOOR",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 232
}
]
},
@@ -8168,6 +10754,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 311
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 361
}
]
},
@@ -8198,6 +10790,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 794
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 861
}
]
},
@@ -8222,6 +10820,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 233
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 273
}
]
},
@@ -8240,6 +10844,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 68
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 81
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_STAIRS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 283
}
]
},
@@ -8270,6 +10892,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 847
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 914
}
]
},
@@ -8294,6 +10922,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 562
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 621
}
]
},
@@ -8318,6 +10952,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 265
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 314
}
]
},
@@ -8342,6 +10982,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 513
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 566
}
]
},
@@ -8360,6 +11006,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 461
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 512
}
]
},
@@ -8384,6 +11036,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 143
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 168
}
]
},
@@ -8396,6 +11054,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 486
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 537
}
]
},
@@ -8420,6 +11084,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 680
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 742
}
]
},
@@ -8439,6 +11109,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 51
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 62
}
]
},
@@ -8464,6 +11140,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 296
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 346
}
]
},
@@ -8476,6 +11158,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 484
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 535
}
]
},
@@ -8506,6 +11194,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 756
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 822
}
]
},
@@ -8536,6 +11230,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 799
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 866
}
]
},
@@ -8554,6 +11254,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 854
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 922
}
]
},
@@ -8578,6 +11284,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 182
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 209
}
]
},
@@ -8597,6 +11309,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 87
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 100
}
]
},
@@ -8622,6 +11340,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 626
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 688
}
]
},
@@ -8646,6 +11370,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 166
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 191
}
]
},
@@ -8658,6 +11388,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 882
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 955
}
]
},
@@ -8670,6 +11406,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 49
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 58
}
]
},
@@ -8694,6 +11436,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 241
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 281
}
]
},
@@ -8712,6 +11460,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 195
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 228
}
]
},
@@ -8724,6 +11478,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 517
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 934
}
]
},
@@ -8749,6 +11509,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 330
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 380
}
]
},
@@ -8773,6 +11539,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 531
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 583
}
]
},
@@ -8791,6 +11563,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 64
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 77
}
]
},
@@ -8821,6 +11599,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 761
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 827
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_BOOTS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 645
}
]
},
@@ -8845,6 +11641,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 190
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 219
}
]
},
@@ -8875,6 +11677,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 760
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 826
}
]
},
@@ -8899,6 +11707,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 578
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 634
}
]
},
@@ -8924,6 +11738,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 342
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 392
}
]
},
@@ -8949,6 +11769,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 352
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 402
}
]
},
@@ -8979,6 +11805,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 837
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 904
}
]
},
@@ -8998,6 +11830,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 93
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 106
}
]
},
@@ -9017,6 +11855,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 84
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 97
}
]
},
@@ -9041,6 +11885,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 571
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 630
}
]
},
@@ -9059,6 +11909,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 464
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 515
}
]
},
@@ -9084,6 +11940,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 634
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 696
}
]
},
@@ -9109,6 +11971,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 660
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 722
}
]
},
@@ -9127,6 +11995,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 99
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 112
}
]
},
@@ -9152,6 +12026,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 290
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 340
}
]
},
@@ -9176,6 +12056,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 238
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 278
}
]
},
@@ -9200,6 +12086,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 318
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 368
}
]
},
@@ -9218,6 +12110,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 417
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 468
}
]
},
@@ -9242,6 +12140,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 319
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 369
}
]
},
@@ -9266,6 +12170,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 621
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 683
}
]
},
@@ -9290,6 +12200,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 215
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 251
}
]
},
@@ -9314,6 +12230,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 580
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 639
}
]
},
@@ -9339,6 +12261,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 201
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 236
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_HOE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 618
}
]
},
@@ -9375,6 +12315,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 763
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 829
}
]
},
@@ -9406,6 +12352,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 719
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 782
}
]
},
@@ -9436,6 +12388,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 841
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 908
}
]
},
@@ -9466,6 +12424,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 850
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 917
}
]
},
@@ -9496,6 +12460,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 851
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 918
}
]
},
@@ -9513,11 +12483,59 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 11
}
]
},
+ {
+ "name": "WARPED_WART_BLOCK",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 426
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_WALL",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 302
+ }
+ ]
+ },
+ {
+ "name": "WARPED_NYLIUM",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 13
+ }
+ ]
+ },
+ {
+ "name": "STRIPPED_CRIMSON_STEM",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 51
+ }
+ ]
+ },
{
"name": "BLUE_BED",
"maxStackSize": 64,
@@ -9540,6 +12558,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 665
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 727
}
]
},
@@ -9558,6 +12582,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 463
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 514
}
]
},
@@ -9583,6 +12613,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 315
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 365
}
]
},
@@ -9608,6 +12644,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 287
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 337
}
]
},
@@ -9632,6 +12674,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 542
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 596
}
]
},
@@ -9650,6 +12698,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 454
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 505
}
]
},
@@ -9674,6 +12728,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 404
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 455
}
]
},
@@ -9704,6 +12764,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 798
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 865
}
]
},
@@ -9728,6 +12794,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 184
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 211
}
]
},
@@ -9752,6 +12824,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 153
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 178
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BASALT",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 222
+ }
+ ]
+ },
+ {
+ "name": "WARPED_FUNGUS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 127
}
]
},
@@ -9770,6 +12872,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 429
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 480
}
]
},
@@ -9794,6 +12902,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 162
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 187
}
]
},
@@ -9819,6 +12933,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 288
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 338
}
]
},
@@ -9831,6 +12951,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 876
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 947
}
]
},
@@ -9861,6 +12987,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 758
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 824
}
]
},
@@ -9885,6 +13017,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 578
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 637
}
]
},
@@ -9903,6 +13041,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 25
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 29
}
]
},
@@ -9933,6 +13077,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 787
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 854
+ }
+ ]
+ },
+ {
+ "name": "SHROOMLIGHT",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 950
}
]
},
@@ -9957,6 +13119,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 406
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 457
}
]
},
@@ -9975,6 +13143,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 373
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 423
}
]
},
@@ -9994,6 +13168,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 89
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 102
}
]
},
@@ -10006,6 +13186,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 43
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 50
}
]
},
@@ -10031,6 +13217,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 120
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 143
}
]
},
@@ -10055,6 +13247,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 589
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 652
}
]
},
@@ -10073,6 +13271,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 427
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 478
+ }
+ ]
+ },
+ {
+ "name": "CRACKED_POLISHED_BLACKSTONE_BRICKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 973
}
]
},
@@ -10097,6 +13313,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 560
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 619
}
]
},
@@ -10109,6 +13331,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 880
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 953
}
]
},
@@ -10133,6 +13361,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 388
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 439
+ }
+ ]
+ },
+ {
+ "name": "WARPED_DOOR",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 565
}
]
},
@@ -10151,6 +13397,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 608
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 673
}
]
},
@@ -10175,6 +13427,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 226
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 264
}
]
},
@@ -10199,6 +13457,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 181
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 208
}
]
},
@@ -10211,6 +13475,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 869
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 939
}
]
},
@@ -10223,6 +13493,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 860
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 928
}
]
},
@@ -10247,6 +13523,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 620
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 682
}
]
},
@@ -10277,6 +13559,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 609
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 674
}
]
},
@@ -10308,6 +13596,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 809
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 876
}
]
},
@@ -10339,6 +13633,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 710
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 772
}
]
},
@@ -10369,6 +13669,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 822
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 889
}
]
},
@@ -10393,6 +13699,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 219
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 255
}
]
},
@@ -10411,6 +13723,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 415
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 466
}
]
},
@@ -10435,6 +13753,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 396
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 447
}
]
},
@@ -10453,6 +13777,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 196
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 229
}
]
},
@@ -10477,6 +13807,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 279
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 329
}
]
},
@@ -10501,6 +13837,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 546
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 600
}
]
},
@@ -10532,6 +13874,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 735
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 799
}
]
},
@@ -10556,6 +13904,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 587
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 650
}
]
},
@@ -10574,6 +13928,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 753
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 819
}
]
},
@@ -10598,6 +13958,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 574
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 633
}
]
},
@@ -10623,6 +13989,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 588
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 651
}
]
},
@@ -10641,6 +14013,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 734
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 798
}
]
},
@@ -10671,6 +14049,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 784
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 851
}
]
},
@@ -10696,6 +14080,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 301
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 351
}
]
},
@@ -10721,6 +14111,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 306
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 356
}
]
},
@@ -10745,6 +14141,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 378
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 429
}
]
},
@@ -10769,6 +14171,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 599
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 664
}
]
},
@@ -10781,6 +14189,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 873
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 943
}
]
},
@@ -10799,6 +14213,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 434
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 485
}
]
},
@@ -10830,6 +14250,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 808
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 875
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_PRESSURE_PLATE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 199
}
]
},
@@ -10849,6 +14287,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 95
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 108
}
]
},
@@ -10867,6 +14311,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 470
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 521
}
]
},
@@ -10879,6 +14329,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 648
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 710
}
]
},
@@ -10897,6 +14353,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 820
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 887
}
]
},
@@ -10921,6 +14383,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 557
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 615
}
]
},
@@ -10933,6 +14401,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 496
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 547
}
]
},
@@ -10951,6 +14425,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 366
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 416
+ }
+ ]
+ },
+ {
+ "name": "TWISTING_VINES",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 132
}
]
},
@@ -10975,6 +14467,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 554
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 612
}
]
},
@@ -11006,6 +14504,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 807
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 874
}
]
},
@@ -11024,6 +14528,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 419
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 470
}
]
},
@@ -11048,6 +14558,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 547
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 601
}
]
},
@@ -11072,6 +14588,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 572
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 631
}
]
},
@@ -11102,6 +14624,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 785
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 852
}
]
},
@@ -11126,6 +14654,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 677
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 739
}
]
},
@@ -11144,6 +14678,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 262
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 308
}
]
},
@@ -11169,6 +14709,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 211
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 246
}
]
},
@@ -11194,6 +14740,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 292
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 342
}
]
},
@@ -11218,6 +14770,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 209
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 244
}
]
},
@@ -11236,6 +14794,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 471
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 522
}
]
},
@@ -11260,6 +14824,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 399
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 450
}
]
},
@@ -11278,6 +14848,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 462
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 513
}
]
},
@@ -11302,6 +14878,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 397
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 448
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_SCRAP",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 585
}
]
},
@@ -11326,6 +14920,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 559
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 617
}
]
},
@@ -11351,6 +14951,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 667
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 729
}
]
},
@@ -11381,6 +14987,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 694
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 756
}
]
},
@@ -11393,6 +15005,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 490
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 541
}
]
},
@@ -11411,6 +15029,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 750
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 815
}
]
},
@@ -11435,6 +15059,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 239
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 279
}
]
},
@@ -11459,6 +15089,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 520
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 572
}
]
},
@@ -11484,6 +15120,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 350
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 400
}
]
},
@@ -11515,6 +15157,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 803
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 870
}
]
},
@@ -11545,6 +15193,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 843
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 910
}
]
},
@@ -11557,6 +15211,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 649
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 711
}
]
},
@@ -11581,6 +15241,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 582
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 641
}
]
},
@@ -11605,6 +15271,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 400
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 451
}
]
},
@@ -11630,6 +15302,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 335
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 385
}
]
},
@@ -11654,6 +15332,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 240
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 280
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_LEGGINGS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 644
}
]
},
@@ -11685,6 +15381,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 701
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 763
}
]
},
@@ -11703,6 +15405,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 476
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 527
}
]
},
@@ -11728,6 +15436,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 637
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 699
}
]
},
@@ -11740,6 +15454,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 505
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 556
}
]
},
@@ -11764,6 +15484,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 392
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 443
}
]
},
@@ -11782,6 +15508,36 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 455
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 506
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_SLAB",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 144
+ }
+ ]
+ },
+ {
+ "name": "RESPAWN_ANCHOR",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 974
}
]
},
@@ -11800,6 +15556,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 612
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 134
+ }
+ ]
+ },
+ {
+ "name": "STRIPPED_WARPED_HYPHAE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 60
}
]
},
@@ -11812,6 +15586,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 41
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 48
}
]
},
@@ -11824,6 +15604,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 501
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 552
}
]
},
@@ -11848,6 +15634,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 113
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 136
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_PLANKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 21
}
]
},
@@ -11872,6 +15676,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 221
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 257
}
]
},
@@ -11890,6 +15700,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 167
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 192
}
]
},
@@ -11908,6 +15724,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 60
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 73
}
]
},
@@ -11933,6 +15755,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 126
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 151
}
]
},
@@ -11957,6 +15785,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 270
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 319
}
]
},
@@ -11975,6 +15809,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 435
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 486
}
]
},
@@ -11999,6 +15839,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 673
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 735
}
]
},
@@ -12017,6 +15863,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 432
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 483
}
]
},
@@ -12042,6 +15894,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 643
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 705
}
]
},
@@ -12067,6 +15925,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 635
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 697
}
]
},
@@ -12091,6 +15955,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 654
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 716
}
]
},
@@ -12109,6 +15979,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 468
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 519
}
]
},
@@ -12135,6 +16011,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 35
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 40
}
]
},
@@ -12153,6 +16035,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 71
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 84
+ }
+ ]
+ },
+ {
+ "name": "WARPED_HYPHAE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 68
}
]
},
@@ -12184,6 +16084,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 738
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 802
}
]
},
@@ -12208,6 +16114,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 597
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 662
}
]
},
@@ -12233,6 +16145,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 116
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 139
}
]
},
@@ -12257,6 +16175,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 544
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 598
}
]
},
@@ -12282,6 +16206,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 326
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 376
}
]
},
@@ -12306,6 +16236,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 545
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 599
}
]
},
@@ -12325,6 +16261,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 107
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 120
}
]
},
@@ -12349,6 +16291,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 596
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 661
}
]
},
@@ -12361,6 +16309,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 593
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 656
+ }
+ ]
+ },
+ {
+ "name": "STRIPPED_WARPED_STEM",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 52
}
]
},
@@ -12385,6 +16351,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 244
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 286
}
]
},
@@ -12397,6 +16369,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 883
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 956
}
]
},
@@ -12421,6 +16399,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 228
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 268
}
]
},
@@ -12439,6 +16423,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 75
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 88
}
]
},
@@ -12463,6 +16453,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 32
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 37
}
]
},
@@ -12475,6 +16471,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 47
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 56
}
]
},
@@ -12493,6 +16495,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 447
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 498
}
]
},
@@ -12518,6 +16526,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 628
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 690
}
]
},
@@ -12543,6 +16557,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 658
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 720
}
]
},
@@ -12579,6 +16599,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 825
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 892
}
]
},
@@ -12610,6 +16636,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 702
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 764
}
]
},
@@ -12635,6 +16667,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 305
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 355
}
]
},
@@ -12659,6 +16697,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 553
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 611
}
]
},
@@ -12684,6 +16728,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 275
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 324
}
]
},
@@ -12708,6 +16758,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 407
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 458
}
]
},
@@ -12732,6 +16788,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 212
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 247
}
]
},
@@ -12750,6 +16812,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 413
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 464
}
]
},
@@ -12774,6 +16842,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 576
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 635
}
]
},
@@ -12784,11 +16858,23 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 1
}
]
},
+ {
+ "name": "NETHERITE_SHOVEL",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 607
+ }
+ ]
+ },
{
"name": "YELLOW_WOOL",
"maxStackSize": 64,
@@ -12805,6 +16891,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 86
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 99
}
]
},
@@ -12830,6 +16922,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 325
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 375
}
]
},
@@ -12855,6 +16953,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 312
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 362
}
]
},
@@ -12879,6 +16983,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 685
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 747
+ }
+ ]
+ },
+ {
+ "name": "BLACKSTONE_STAIRS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 964
}
]
},
@@ -12903,6 +17025,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 551
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 605
}
]
},
@@ -12927,6 +17055,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 36
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 41
}
]
},
@@ -12958,6 +17092,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 705
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 767
}
]
},
@@ -12983,6 +17123,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 202
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 237
}
]
},
@@ -13007,6 +17153,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 398
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 449
}
]
},
@@ -13025,6 +17177,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 431
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 482
}
]
},
@@ -13049,6 +17207,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 142
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 167
}
]
},
@@ -13061,6 +17225,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 874
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 944
+ }
+ ]
+ },
+ {
+ "name": "BLACKSTONE_SLAB",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 963
}
]
},
@@ -13073,6 +17255,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 42
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 49
}
]
},
@@ -13092,12 +17280,6 @@
"protocolRangeEnd": 340,
"id": 392
},
- {
- "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
- "protocolRangeStart": 47,
- "protocolRangeEnd": 340,
- "id": 142
- },
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
@@ -13109,6 +17291,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 764
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 830
}
]
},
@@ -13133,6 +17321,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 684
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 746
}
]
},
@@ -13164,6 +17358,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 814
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 881
}
]
},
@@ -13174,7 +17374,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 47,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 0
}
]
@@ -13188,6 +17388,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 487
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 538
}
]
},
@@ -13200,6 +17406,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 879
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 952
}
]
},
@@ -13224,6 +17436,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 155
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 180
}
]
},
@@ -13242,6 +17460,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 706
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 768
}
]
},
@@ -13267,6 +17491,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 646
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 708
}
]
},
@@ -13292,6 +17522,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 641
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 703
}
]
},
@@ -13316,6 +17552,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 507
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 558
}
]
},
@@ -13340,6 +17582,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 225
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 263
}
]
},
@@ -13370,6 +17618,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 765
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 831
}
]
},
@@ -13394,6 +17648,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 152
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 177
}
]
},
@@ -13418,6 +17678,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 161
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 186
}
]
},
@@ -13442,6 +17708,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 210
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 245
+ }
+ ]
+ },
+ {
+ "name": "BASALT",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 221
}
]
},
@@ -13466,6 +17750,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 327
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 377
}
]
},
@@ -13484,6 +17774,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 78
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 91
}
]
},
@@ -13508,6 +17804,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 625
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 687
}
]
},
@@ -13526,6 +17828,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 125
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 150
}
]
},
@@ -13551,6 +17859,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 303
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 353
}
]
},
@@ -13576,6 +17890,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 640
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 702
+ }
+ ]
+ },
+ {
+ "name": "WARPED_ROOTS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 129
}
]
},
@@ -13594,6 +17926,36 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 459
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 510
+ }
+ ]
+ },
+ {
+ "name": "CHAIN",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 248
+ }
+ ]
+ },
+ {
+ "name": "CHISELED_NETHER_BRICKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 266
}
]
},
@@ -13619,6 +17981,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 353
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 403
}
]
},
@@ -13637,6 +18005,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 856
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 924
}
]
},
@@ -13661,6 +18035,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 317
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 367
}
]
},
@@ -13685,6 +18065,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 329
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 379
}
]
},
@@ -13709,6 +18095,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 151
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 176
}
]
},
@@ -13739,6 +18131,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 844
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 911
}
]
},
@@ -13751,6 +18149,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 647
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 709
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_HELMET",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 642
}
]
},
@@ -13769,6 +18185,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 197
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 230
}
]
},
@@ -13793,6 +18215,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 300
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 350
}
]
},
@@ -13811,6 +18239,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 747
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 812
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_STEM",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 43
}
]
},
@@ -13835,6 +18281,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 527
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 579
}
]
},
@@ -13860,6 +18312,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 208
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 243
}
]
},
@@ -13872,6 +18330,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 516
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 569
}
]
},
@@ -13896,6 +18360,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 150
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 175
}
]
},
@@ -13914,6 +18384,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 853
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 921
}
]
},
@@ -13938,6 +18414,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 160
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 185
}
]
},
@@ -13956,6 +18438,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 712
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 774
}
]
},
@@ -13980,6 +18468,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 192
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 225
}
]
},
@@ -14005,6 +18499,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 669
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 731
}
]
},
@@ -14023,6 +18523,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 168
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 193
}
]
},
@@ -14054,6 +18560,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 746
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 811
}
]
},
@@ -14073,6 +18585,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 76
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 89
}
]
},
@@ -14098,6 +18616,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 328
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 378
}
]
},
@@ -14128,6 +18652,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 782
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 849
}
]
},
@@ -14153,6 +18683,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 291
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 341
}
]
},
@@ -14165,6 +18701,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 132
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 157
}
]
},
@@ -14189,6 +18731,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 692
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 754
}
]
},
@@ -14219,6 +18767,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 830
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 897
}
]
},
@@ -14235,11 +18789,23 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 9
}
]
},
+ {
+ "name": "WEEPING_VINES",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 131
+ }
+ ]
+ },
{
"name": "GRAY_BED",
"maxStackSize": 64,
@@ -14262,6 +18828,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 661
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 723
}
]
},
@@ -14280,6 +18852,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 721
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 784
}
]
},
@@ -14304,6 +18882,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 377
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 428
}
]
},
@@ -14321,7 +18905,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 5
}
]
@@ -14347,6 +18931,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 696
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 758
}
]
},
@@ -14359,6 +18949,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 70
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 83
}
]
},
@@ -14383,6 +18979,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 281
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 331
}
]
},
@@ -14401,6 +19003,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 607
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 672
}
]
},
@@ -14426,6 +19034,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 246
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 288
}
]
},
@@ -14438,6 +19052,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 862
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 930
}
]
},
@@ -14450,6 +19070,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 870
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 940
}
]
},
@@ -14468,6 +19094,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 72
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 85
}
]
},
@@ -14480,6 +19112,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 592
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 655
}
]
},
@@ -14499,6 +19137,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 18
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 20
}
]
},
@@ -14530,6 +19174,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 715
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 777
}
]
},
@@ -14549,6 +19199,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 54
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 65
}
]
},
@@ -14561,6 +19217,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 497
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 548
}
]
},
@@ -14585,6 +19247,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 831
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 898
}
]
},
@@ -14610,6 +19278,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 337
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 387
}
]
},
@@ -14635,6 +19309,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 627
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 689
}
]
},
@@ -14647,6 +19327,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 79
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 92
}
]
},
@@ -14665,6 +19351,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 13
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 15
}
]
},
@@ -14689,6 +19381,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 230
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 270
}
]
},
@@ -14713,6 +19411,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 603
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 668
}
]
},
@@ -14737,6 +19441,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 538
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 592
}
]
},
@@ -14773,6 +19483,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 762
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 828
}
]
},
@@ -14797,6 +19513,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 521
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 573
}
]
},
@@ -14822,6 +19544,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 638
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 700
}
]
},
@@ -14840,6 +19568,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 741
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 805
}
]
},
@@ -14865,6 +19599,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 295
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 345
}
]
},
@@ -14896,6 +19636,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 720
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 783
}
]
},
@@ -14920,6 +19666,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 615
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 677
}
]
},
@@ -14944,6 +19696,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 532
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 586
}
]
},
@@ -14962,6 +19720,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 606
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 671
+ }
+ ]
+ },
+ {
+ "name": "WARPED_SIGN",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 659
}
]
},
@@ -14986,6 +19762,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 177
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 204
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_FENCE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 214
}
]
},
@@ -14998,6 +19792,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 495
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 546
}
]
},
@@ -15010,6 +19810,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 727
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 791
}
]
},
@@ -15028,6 +19834,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 452
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 503
}
]
},
@@ -15040,6 +19852,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 731
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 795
}
]
},
@@ -15052,6 +19870,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 494
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 545
}
]
},
@@ -15076,6 +19900,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 205
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 240
}
]
},
@@ -15100,6 +19930,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 235
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 275
}
]
},
@@ -15124,6 +19960,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 581
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 640
}
]
},
@@ -15149,6 +19991,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 666
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 728
}
]
},
@@ -15179,6 +20027,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 775
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 841
}
]
},
@@ -15191,6 +20045,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 498
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 549
}
]
},
@@ -15216,6 +20076,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 283
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 333
}
]
},
@@ -15228,6 +20094,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 485
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 536
}
]
},
@@ -15247,6 +20119,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 14
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 16
}
]
},
@@ -15278,6 +20156,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 774
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 840
}
]
},
@@ -15290,6 +20174,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 254
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 296
}
]
},
@@ -15309,6 +20199,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 97
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 110
}
]
},
@@ -15334,6 +20230,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 308
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 358
}
]
},
@@ -15352,6 +20254,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 423
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 474
+ }
+ ]
+ },
+ {
+ "name": "ZOMBIFIED_PIGLIN_SPAWN_EGG",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 821
}
]
},
@@ -15377,6 +20297,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 663
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 725
}
]
},
@@ -15401,6 +20327,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 395
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 446
}
]
},
@@ -15425,6 +20357,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 539
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 593
}
]
},
@@ -15450,6 +20388,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 302
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 352
}
]
},
@@ -15474,6 +20418,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 173
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 201
}
]
},
@@ -15492,6 +20442,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 74
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 87
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_ROOTS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 128
}
]
},
@@ -15516,6 +20484,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 187
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 216
}
]
},
@@ -15534,6 +20508,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 137
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 162
}
]
},
@@ -15558,6 +20538,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 375
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 425
}
]
},
@@ -15582,6 +20568,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 245
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 287
}
]
},
@@ -15606,6 +20598,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 561
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 620
}
]
},
@@ -15624,6 +20622,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 474
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 525
}
]
},
@@ -15649,6 +20653,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 119
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 142
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_NYLIUM",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 12
}
]
},
@@ -15674,6 +20696,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 282
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 332
}
]
},
@@ -15686,6 +20714,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 878
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 951
}
]
},
@@ -15704,6 +20738,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 428
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 479
}
]
},
@@ -15728,6 +20768,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 280
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 330
}
]
},
@@ -15740,6 +20786,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 480
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 531
}
]
},
@@ -15758,6 +20810,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 707
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 769
}
]
},
@@ -15782,6 +20840,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 154
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 179
}
]
},
@@ -15806,6 +20870,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 298
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 348
}
]
},
@@ -15831,6 +20901,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 344
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 394
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_PICKAXE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 608
}
]
},
@@ -15856,6 +20944,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 204
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 239
}
]
},
@@ -15887,6 +20981,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 813
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 880
}
]
},
@@ -15899,6 +20999,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 481
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 532
+ }
+ ]
+ },
+ {
+ "name": "WARPED_PRESSURE_PLATE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 198
}
]
},
@@ -15923,6 +21041,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 115
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 138
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_FUNGUS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 126
}
]
},
@@ -15935,6 +21071,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 861
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 929
}
]
},
@@ -15954,6 +21096,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 24
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 28
}
]
},
@@ -15978,6 +21126,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 568
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 627
}
]
},
@@ -15996,6 +21150,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 263
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 309
}
]
},
@@ -16026,6 +21186,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 846
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 913
}
]
},
@@ -16050,6 +21216,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 236
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 276
}
]
},
@@ -16080,6 +21252,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 848
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 915
}
]
},
@@ -16092,6 +21270,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 881
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 954
}
]
},
@@ -16116,6 +21300,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 216
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 252
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_STAIRS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 968
}
]
},
@@ -16140,6 +21342,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 323
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 373
}
]
},
@@ -16152,6 +21360,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 877
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 948
}
]
},
@@ -16177,6 +21391,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 123
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 148
}
]
},
@@ -16195,6 +21415,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 260
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 306
}
]
},
@@ -16214,6 +21440,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 91
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 104
}
]
},
@@ -16245,6 +21477,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 714
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 776
}
]
},
@@ -16269,6 +21507,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 552
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 610
}
]
},
@@ -16300,6 +21544,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 740
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 804
}
]
},
@@ -16318,6 +21568,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 729
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 793
+ }
+ ]
+ },
+ {
+ "name": "TARGET",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 960
}
]
},
@@ -16336,6 +21604,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 135
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 160
}
]
},
@@ -16348,6 +21622,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 859
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 927
}
]
},
@@ -16379,6 +21659,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 773
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 839
}
]
},
@@ -16397,6 +21683,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 732
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 796
}
]
},
@@ -16409,6 +21701,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 723
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 786
}
]
},
@@ -16433,6 +21731,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 273
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 322
}
]
},
@@ -16451,6 +21755,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 473
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 524
+ }
+ ]
+ },
+ {
+ "name": "NETHERITE_SWORD",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 606
}
]
},
@@ -16481,6 +21803,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 817
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 884
}
]
},
@@ -16506,6 +21834,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 657
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 719
}
]
},
@@ -16518,6 +21852,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 248
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 290
}
]
},
@@ -16543,6 +21883,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 351
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 401
}
]
},
@@ -16555,6 +21901,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 491
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 542
+ }
+ ]
+ },
+ {
+ "name": "BLACKSTONE_WALL",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 301
}
]
},
@@ -16579,6 +21943,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 222
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 260
}
]
},
@@ -16604,6 +21974,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 267
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 316
}
]
},
@@ -16616,6 +21992,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 614
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 135
}
]
},
@@ -16634,6 +22016,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 477
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 528
}
]
},
@@ -16658,6 +22046,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 563
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 622
}
]
},
@@ -16676,6 +22070,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 718
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 781
}
]
},
@@ -16700,6 +22100,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 548
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 602
}
]
},
@@ -16719,6 +22125,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 59
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 72
}
]
},
@@ -16738,6 +22150,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 103
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 116
}
]
},
@@ -16762,6 +22180,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 320
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 370
}
]
},
@@ -16786,6 +22210,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 385
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 436
}
]
},
@@ -16810,6 +22240,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 403
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 454
}
]
},
@@ -16834,6 +22270,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 583
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 646
}
]
},
@@ -16852,6 +22294,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 98
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 111
}
]
},
@@ -16876,6 +22324,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 411
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 462
+ }
+ ]
+ },
+ {
+ "name": "WARPED_STEM",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 44
}
]
},
@@ -16900,6 +22366,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 193
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 226
}
]
},
@@ -16918,6 +22390,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 433
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 484
}
]
},
@@ -16943,6 +22421,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 644
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 706
}
]
},
@@ -16962,6 +22446,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 92
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 105
}
]
},
@@ -16993,6 +22483,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 805
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 872
}
]
},
@@ -17017,6 +22513,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 217
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 253
}
]
},
@@ -17041,6 +22543,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 231
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 271
}
]
},
@@ -17059,6 +22567,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 28
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 32
}
]
},
@@ -17089,6 +22603,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 793
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 860
}
]
},
@@ -17114,6 +22634,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 338
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 388
}
]
},
@@ -17132,6 +22658,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 65
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 78
}
]
},
@@ -17156,6 +22688,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 679
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 741
}
]
},
@@ -17181,6 +22719,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 655
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 717
}
]
},
@@ -17206,6 +22750,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 632
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 694
}
]
},
@@ -17224,6 +22774,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 67
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 80
}
]
},
@@ -17249,6 +22805,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 129
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 154
}
]
},
@@ -17267,6 +22829,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 422
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 473
}
]
},
@@ -17279,6 +22847,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 872
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 942
}
]
},
@@ -17297,6 +22871,24 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 30
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 34
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_BRICK_SLAB",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 971
}
]
},
@@ -17321,6 +22913,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 189
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 218
}
]
},
@@ -17346,6 +22944,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 359
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 409
}
]
},
@@ -17376,6 +22980,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 788
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 855
}
]
},
@@ -17394,6 +23004,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 743
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 808
}
]
},
@@ -17424,6 +23040,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 819
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 886
}
]
},
@@ -17449,6 +23071,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 630
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 692
}
]
},
@@ -17473,6 +23101,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 393
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 444
}
]
},
@@ -17497,6 +23131,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 676
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 738
}
]
},
@@ -17515,6 +23155,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 134
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 159
}
]
},
@@ -17540,6 +23186,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 138
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 163
}
]
},
@@ -17565,6 +23217,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 341
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 391
}
]
},
@@ -17589,6 +23247,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 567
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 626
}
]
},
@@ -17619,6 +23283,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 769
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 835
}
]
},
@@ -17631,6 +23301,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 257
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 299
}
]
},
@@ -17655,6 +23331,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 586
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 649
}
]
},
@@ -17679,6 +23361,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 146
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 171
}
]
},
@@ -17703,6 +23391,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 237
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 277
}
]
},
@@ -17722,6 +23416,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 77
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 90
}
]
},
@@ -17734,6 +23434,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 591
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 654
}
]
},
@@ -17751,7 +23457,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 3
}
]
@@ -17772,6 +23478,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 106
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 119
}
]
},
@@ -17797,6 +23509,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 203
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 238
}
]
},
@@ -17816,6 +23534,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 22
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 26
}
]
},
@@ -17840,6 +23564,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 164
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 189
}
]
},
@@ -17858,6 +23588,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 448
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 499
}
]
},
@@ -17882,6 +23618,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 165
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 190
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_BRICK_STAIRS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 972
}
]
},
@@ -17907,6 +23661,36 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 659
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 721
+ }
+ ]
+ },
+ {
+ "name": "NETHER_GOLD_ORE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 36
+ }
+ ]
+ },
+ {
+ "name": "QUARTZ_BRICKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 326
}
]
},
@@ -17919,6 +23703,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 38
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 45
}
]
},
@@ -17943,6 +23733,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 147
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 172
+ }
+ ]
+ },
+ {
+ "name": "WARPED_PLANKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 22
}
]
},
@@ -17967,6 +23775,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 530
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 582
}
]
},
@@ -17985,6 +23799,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 430
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 481
}
]
},
@@ -18004,6 +23824,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 83
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 96
}
]
},
@@ -18035,6 +23861,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 771
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 837
}
]
},
@@ -18060,6 +23892,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 286
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 336
}
]
},
@@ -18078,6 +23916,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 82
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 95
}
]
},
@@ -18103,6 +23947,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 307
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 357
}
]
},
@@ -18128,6 +23978,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 294
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 344
}
]
},
@@ -18152,6 +24008,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 602
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 667
}
]
},
@@ -18176,6 +24038,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 541
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 595
}
]
},
@@ -18200,6 +24068,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 394
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 445
}
]
},
@@ -18230,6 +24104,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 512
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 563
}
]
},
@@ -18254,6 +24134,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 834
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 901
}
]
},
@@ -18272,6 +24158,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 436
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 487
}
]
},
@@ -18296,6 +24188,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 558
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 616
}
]
},
@@ -18327,6 +24225,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 699
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 761
}
]
},
@@ -18351,6 +24255,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 381
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 432
+ }
+ ]
+ },
+ {
+ "name": "CRIMSON_BUTTON",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 311
}
]
},
@@ -18375,6 +24297,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 114
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 137
}
]
},
@@ -18399,6 +24327,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 695
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 757
}
]
},
@@ -18417,6 +24351,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 424
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 475
}
]
},
@@ -18442,6 +24382,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 639
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 701
}
]
},
@@ -18466,6 +24412,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 234
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 274
}
]
},
@@ -18496,6 +24448,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 768
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 834
+ }
+ ]
+ },
+ {
+ "name": "POLISHED_BLACKSTONE_BRICK_WALL",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 303
}
]
},
@@ -18514,6 +24484,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 261
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 307
}
]
},
@@ -18538,6 +24514,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 274
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 323
}
]
},
@@ -18562,6 +24544,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 269
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 318
}
]
},
@@ -18592,6 +24580,36 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 776
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 843
+ }
+ ]
+ },
+ {
+ "name": "SOUL_SOIL",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 220
+ }
+ ]
+ },
+ {
+ "name": "SOUL_TORCH",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 223
}
]
},
@@ -18611,6 +24629,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 85
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 98
}
]
},
@@ -18641,6 +24665,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 797
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 864
}
]
},
@@ -18671,6 +24701,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 801
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 868
}
]
},
@@ -18689,6 +24725,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 745
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 810
}
]
},
@@ -18713,6 +24755,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 389
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 440
}
]
},
@@ -18737,6 +24785,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 688
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 750
}
]
},
@@ -18762,6 +24816,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 349
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 399
}
]
},
@@ -18786,6 +24846,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 555
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 613
}
]
},
@@ -18816,6 +24882,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 842
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 909
}
]
},
@@ -18828,6 +24900,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 742
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 807
+ }
+ ]
+ },
+ {
+ "name": "BLACKSTONE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 962
}
]
},
@@ -18840,6 +24930,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 502
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 553
}
]
},
@@ -18864,6 +24960,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 585
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 648
}
]
},
@@ -18889,6 +24991,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 633
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 695
+ }
+ ]
+ },
+ {
+ "name": "ZOGLIN_SPAWN_EGG",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 817
}
]
},
@@ -18914,6 +25034,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 347
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 397
}
]
},
@@ -18932,6 +25058,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 475
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 526
}
]
},
@@ -18962,6 +25094,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 826
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 893
}
]
},
@@ -18980,6 +25118,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 380
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 431
}
]
},
@@ -18998,6 +25142,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 450
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 501
}
]
},
@@ -19022,6 +25172,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 537
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 591
}
]
},
@@ -19053,6 +25209,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 711
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 773
}
]
},
@@ -19071,6 +25233,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 728
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 792
}
]
},
@@ -19089,6 +25257,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 188
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 217
}
]
},
@@ -19113,6 +25287,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 681
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 743
}
]
},
@@ -19132,6 +25312,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 88
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 101
}
]
},
@@ -19151,6 +25337,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 90
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 103
}
]
},
@@ -19175,6 +25367,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 540
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 594
}
]
},
@@ -19205,6 +25403,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 510
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 561
}
]
},
@@ -19229,6 +25433,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 174
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 304
}
]
},
@@ -19241,6 +25451,24 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 500
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 551
+ }
+ ]
+ },
+ {
+ "name": "CRACKED_NETHER_BRICKS",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 265
}
]
},
@@ -19266,6 +25494,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 662
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 724
}
]
},
@@ -19285,6 +25519,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 23
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 27
}
]
},
@@ -19309,6 +25549,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 506
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 557
}
]
},
@@ -19334,6 +25580,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 357
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 407
}
]
},
@@ -19353,6 +25605,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 52
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 63
}
]
},
@@ -19377,6 +25635,24 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 690
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 752
+ }
+ ]
+ },
+ {
+ "name": "LODESTONE",
+ "maxStackSize": 64,
+ "mappings": [
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 957
}
]
},
@@ -19389,6 +25665,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 80
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 93
}
]
},
@@ -19408,6 +25690,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 57
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 70
}
]
},
@@ -19427,6 +25715,12 @@
"protocolRangeStart": 393,
"protocolRangeEnd": 578,
"id": 104
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 117
}
]
},
@@ -19444,7 +25738,7 @@
{
"type": "de.exceptionflug.protocolize.items.ItemIDMapping",
"protocolRangeStart": 393,
- "protocolRangeEnd": 578,
+ "protocolRangeEnd": 736,
"id": 6
}
]
@@ -19458,6 +25752,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 489
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 540
}
]
},
@@ -19482,6 +25782,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 409
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 460
}
]
},
@@ -19494,6 +25800,12 @@
"protocolRangeStart": 573,
"protocolRangeEnd": 578,
"id": 865
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 935
}
]
},
@@ -19518,6 +25830,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 199
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 234
}
]
},
@@ -19542,6 +25860,12 @@
"protocolRangeStart": 477,
"protocolRangeEnd": 578,
"id": 401
+ },
+ {
+ "type": "de.exceptionflug.protocolize.items.ItemIDMapping",
+ "protocolRangeStart": 735,
+ "protocolRangeEnd": 736,
+ "id": 452
}
]
}
diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java
index 5303bd52..27785ce1 100644
--- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java
+++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java
@@ -38,6 +38,7 @@ public class ChangeGameState extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x1F);
MAPPING.put(MINECRAFT_1_15_2, 0x1F);
MAPPING.put(MINECRAFT_1_16, 0x1E);
+ MAPPING.put(MINECRAFT_1_16_1, 0x1E);
}
private Reason reason;
diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java
index 401eaaf3..999f7b69 100644
--- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java
+++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java
@@ -42,6 +42,7 @@ public class NamedSoundEffect extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x1A);
MAPPING.put(MINECRAFT_1_15_2, 0x1A);
MAPPING.put(MINECRAFT_1_16, 0x19);
+ MAPPING.put(MINECRAFT_1_16_1, 0x19);
}
private String sound;
diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java
index e8a9d77a..4560043e 100644
--- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java
+++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java
@@ -38,6 +38,7 @@ public class PlayerLook extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x13);
MAPPING.put(MINECRAFT_1_15_2, 0x13);
MAPPING.put(MINECRAFT_1_16, 0x14);
+ MAPPING.put(MINECRAFT_1_16_1, 0x14);
}
private float yaw, pitch;
diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java
index a60f29da..6ed2f1f9 100644
--- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java
+++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java
@@ -39,6 +39,7 @@ public class PlayerPosition extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x11);
MAPPING.put(MINECRAFT_1_15_2, 0x11);
MAPPING.put(MINECRAFT_1_16, 0x12);
+ MAPPING.put(MINECRAFT_1_16_1, 0x12);
}
private Location location;
diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java
index 37ce5345..a6bd578c 100644
--- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java
+++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java
@@ -39,6 +39,7 @@ public class PlayerPositionLook extends AbstractPacket {
MAPPING.put(MINECRAFT_1_15_1, 0x12);
MAPPING.put(MINECRAFT_1_15_2, 0x12);
MAPPING.put(MINECRAFT_1_16, 0x13);
+ MAPPING.put(MINECRAFT_1_16_1, 0x13);
}
private Location location;
diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java
index 30b21cf9..906a442f 100644
--- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java
+++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java
@@ -44,6 +44,7 @@ public class SignUpdate extends AbstractPacket {
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x29);
MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x29);
MAPPING_SERVERBOUND.put(MINECRAFT_1_16, 0x2A);
+ MAPPING_SERVERBOUND.put(MINECRAFT_1_16_1, 0x2A);
MAPPING_CLIENTBOUND.put(MINECRAFT_1_8, 0x33);
MAPPING_CLIENTBOUND.put(MINECRAFT_1_9, 0x46);