mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add support for Minecraft 1.16.2 (#1214)
* Implement MC version 1.16.2 basic support
All packets ID update done
Tested in 1.16.2 craftbukkit server
* Implement MC 1.16.2 entity handling
New EntityPalette
* Add back protocol version checking for entity handling
Was removed during testing and forgot to add it back
* Implement inventory handling for MC 1.16+
Item ID got changed in 1.16+ so a palette is needed.
* Fix ChangeSlot command
What a joke
* Handle 1.16 new entity properties name
Convert new naming style to old style
* Revert "Handle 1.16 new entity properties name"
This reverts commit 52c7d29062.
* Update AutoAttack to use the new entity properties key
* Fix item type to ID conversion
* Sort item types by name
* Remove ZombiePigmanSpawnEgg
User ZombifiedPiglinSpawnEgg instead (new name for same item)
* Add missing 1.16.2 version strings
* Remove old ItemTypeGenerator
* Sort entity types by name
* Palette loading, instructions, NotImplemented err
Co-authored-by: ORelio <ORelio@users.noreply.github.com>
This commit is contained in:
parent
ee5199f760
commit
6bbb7236e3
21 changed files with 4296 additions and 988 deletions
907
MinecraftClient/Inventory/ItemPalettes/ItemPalette115.cs
Normal file
907
MinecraftClient/Inventory/ItemPalettes/ItemPalette115.cs
Normal file
|
|
@ -0,0 +1,907 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MinecraftClient.Inventory.ItemPalettes
|
||||
{
|
||||
/// <summary>
|
||||
/// For MC 1.15.2 or below
|
||||
/// Generated by ItemPaletteGenerator.cs
|
||||
/// </summary>
|
||||
public class ItemPalette115 : ItemPalette
|
||||
{
|
||||
private static Dictionary<int, ItemType> mappings = new Dictionary<int, ItemType>();
|
||||
|
||||
static ItemPalette115()
|
||||
{
|
||||
mappings[0] = ItemType.Air;
|
||||
mappings[1] = ItemType.Stone;
|
||||
mappings[2] = ItemType.Granite;
|
||||
mappings[3] = ItemType.PolishedGranite;
|
||||
mappings[4] = ItemType.Diorite;
|
||||
mappings[5] = ItemType.PolishedDiorite;
|
||||
mappings[6] = ItemType.Andesite;
|
||||
mappings[7] = ItemType.PolishedAndesite;
|
||||
mappings[8] = ItemType.GrassBlock;
|
||||
mappings[9] = ItemType.Dirt;
|
||||
mappings[10] = ItemType.CoarseDirt;
|
||||
mappings[11] = ItemType.Podzol;
|
||||
mappings[12] = ItemType.Cobblestone;
|
||||
mappings[13] = ItemType.OakPlanks;
|
||||
mappings[14] = ItemType.SprucePlanks;
|
||||
mappings[15] = ItemType.BirchPlanks;
|
||||
mappings[16] = ItemType.JunglePlanks;
|
||||
mappings[17] = ItemType.AcaciaPlanks;
|
||||
mappings[18] = ItemType.DarkOakPlanks;
|
||||
mappings[19] = ItemType.OakSapling;
|
||||
mappings[20] = ItemType.SpruceSapling;
|
||||
mappings[21] = ItemType.BirchSapling;
|
||||
mappings[22] = ItemType.JungleSapling;
|
||||
mappings[23] = ItemType.AcaciaSapling;
|
||||
mappings[24] = ItemType.DarkOakSapling;
|
||||
mappings[25] = ItemType.Bedrock;
|
||||
mappings[26] = ItemType.Sand;
|
||||
mappings[27] = ItemType.RedSand;
|
||||
mappings[28] = ItemType.Gravel;
|
||||
mappings[29] = ItemType.GoldOre;
|
||||
mappings[30] = ItemType.IronOre;
|
||||
mappings[31] = ItemType.CoalOre;
|
||||
mappings[32] = ItemType.OakLog;
|
||||
mappings[33] = ItemType.SpruceLog;
|
||||
mappings[34] = ItemType.BirchLog;
|
||||
mappings[35] = ItemType.JungleLog;
|
||||
mappings[36] = ItemType.AcaciaLog;
|
||||
mappings[37] = ItemType.DarkOakLog;
|
||||
mappings[38] = ItemType.StrippedOakLog;
|
||||
mappings[39] = ItemType.StrippedSpruceLog;
|
||||
mappings[40] = ItemType.StrippedBirchLog;
|
||||
mappings[41] = ItemType.StrippedJungleLog;
|
||||
mappings[42] = ItemType.StrippedAcaciaLog;
|
||||
mappings[43] = ItemType.StrippedDarkOakLog;
|
||||
mappings[44] = ItemType.StrippedOakWood;
|
||||
mappings[45] = ItemType.StrippedSpruceWood;
|
||||
mappings[46] = ItemType.StrippedBirchWood;
|
||||
mappings[47] = ItemType.StrippedJungleWood;
|
||||
mappings[48] = ItemType.StrippedAcaciaWood;
|
||||
mappings[49] = ItemType.StrippedDarkOakWood;
|
||||
mappings[50] = ItemType.OakWood;
|
||||
mappings[51] = ItemType.SpruceWood;
|
||||
mappings[52] = ItemType.BirchWood;
|
||||
mappings[53] = ItemType.JungleWood;
|
||||
mappings[54] = ItemType.AcaciaWood;
|
||||
mappings[55] = ItemType.DarkOakWood;
|
||||
mappings[56] = ItemType.OakLeaves;
|
||||
mappings[57] = ItemType.SpruceLeaves;
|
||||
mappings[58] = ItemType.BirchLeaves;
|
||||
mappings[59] = ItemType.JungleLeaves;
|
||||
mappings[60] = ItemType.AcaciaLeaves;
|
||||
mappings[61] = ItemType.DarkOakLeaves;
|
||||
mappings[62] = ItemType.Sponge;
|
||||
mappings[63] = ItemType.WetSponge;
|
||||
mappings[64] = ItemType.Glass;
|
||||
mappings[65] = ItemType.LapisOre;
|
||||
mappings[66] = ItemType.LapisBlock;
|
||||
mappings[67] = ItemType.Dispenser;
|
||||
mappings[68] = ItemType.Sandstone;
|
||||
mappings[69] = ItemType.ChiseledSandstone;
|
||||
mappings[70] = ItemType.CutSandstone;
|
||||
mappings[71] = ItemType.NoteBlock;
|
||||
mappings[72] = ItemType.PoweredRail;
|
||||
mappings[73] = ItemType.DetectorRail;
|
||||
mappings[74] = ItemType.StickyPiston;
|
||||
mappings[75] = ItemType.Cobweb;
|
||||
mappings[76] = ItemType.Grass;
|
||||
mappings[77] = ItemType.Fern;
|
||||
mappings[78] = ItemType.DeadBush;
|
||||
mappings[79] = ItemType.Seagrass;
|
||||
mappings[80] = ItemType.SeaPickle;
|
||||
mappings[81] = ItemType.Piston;
|
||||
mappings[82] = ItemType.WhiteWool;
|
||||
mappings[83] = ItemType.OrangeWool;
|
||||
mappings[84] = ItemType.MagentaWool;
|
||||
mappings[85] = ItemType.LightBlueWool;
|
||||
mappings[86] = ItemType.YellowWool;
|
||||
mappings[87] = ItemType.LimeWool;
|
||||
mappings[88] = ItemType.PinkWool;
|
||||
mappings[89] = ItemType.GrayWool;
|
||||
mappings[90] = ItemType.LightGrayWool;
|
||||
mappings[91] = ItemType.CyanWool;
|
||||
mappings[92] = ItemType.PurpleWool;
|
||||
mappings[93] = ItemType.BlueWool;
|
||||
mappings[94] = ItemType.BrownWool;
|
||||
mappings[95] = ItemType.GreenWool;
|
||||
mappings[96] = ItemType.RedWool;
|
||||
mappings[97] = ItemType.BlackWool;
|
||||
mappings[98] = ItemType.Dandelion;
|
||||
mappings[99] = ItemType.Poppy;
|
||||
mappings[100] = ItemType.BlueOrchid;
|
||||
mappings[101] = ItemType.Allium;
|
||||
mappings[102] = ItemType.AzureBluet;
|
||||
mappings[103] = ItemType.RedTulip;
|
||||
mappings[104] = ItemType.OrangeTulip;
|
||||
mappings[105] = ItemType.WhiteTulip;
|
||||
mappings[106] = ItemType.PinkTulip;
|
||||
mappings[107] = ItemType.OxeyeDaisy;
|
||||
mappings[108] = ItemType.Cornflower;
|
||||
mappings[109] = ItemType.LilyOfTheValley;
|
||||
mappings[110] = ItemType.WitherRose;
|
||||
mappings[111] = ItemType.BrownMushroom;
|
||||
mappings[112] = ItemType.RedMushroom;
|
||||
mappings[113] = ItemType.GoldBlock;
|
||||
mappings[114] = ItemType.IronBlock;
|
||||
mappings[115] = ItemType.OakSlab;
|
||||
mappings[116] = ItemType.SpruceSlab;
|
||||
mappings[117] = ItemType.BirchSlab;
|
||||
mappings[118] = ItemType.JungleSlab;
|
||||
mappings[119] = ItemType.AcaciaSlab;
|
||||
mappings[120] = ItemType.DarkOakSlab;
|
||||
mappings[121] = ItemType.StoneSlab;
|
||||
mappings[122] = ItemType.SmoothStoneSlab;
|
||||
mappings[123] = ItemType.SandstoneSlab;
|
||||
mappings[124] = ItemType.CutSandstoneSlab;
|
||||
mappings[125] = ItemType.PetrifiedOakSlab;
|
||||
mappings[126] = ItemType.CobblestoneSlab;
|
||||
mappings[127] = ItemType.BrickSlab;
|
||||
mappings[128] = ItemType.StoneBrickSlab;
|
||||
mappings[129] = ItemType.NetherBrickSlab;
|
||||
mappings[130] = ItemType.QuartzSlab;
|
||||
mappings[131] = ItemType.RedSandstoneSlab;
|
||||
mappings[132] = ItemType.CutRedSandstoneSlab;
|
||||
mappings[133] = ItemType.PurpurSlab;
|
||||
mappings[134] = ItemType.PrismarineSlab;
|
||||
mappings[135] = ItemType.PrismarineBrickSlab;
|
||||
mappings[136] = ItemType.DarkPrismarineSlab;
|
||||
mappings[137] = ItemType.SmoothQuartz;
|
||||
mappings[138] = ItemType.SmoothRedSandstone;
|
||||
mappings[139] = ItemType.SmoothSandstone;
|
||||
mappings[140] = ItemType.SmoothStone;
|
||||
mappings[141] = ItemType.Bricks;
|
||||
mappings[142] = ItemType.Tnt;
|
||||
mappings[143] = ItemType.Bookshelf;
|
||||
mappings[144] = ItemType.MossyCobblestone;
|
||||
mappings[145] = ItemType.Obsidian;
|
||||
mappings[146] = ItemType.Torch;
|
||||
mappings[147] = ItemType.EndRod;
|
||||
mappings[148] = ItemType.ChorusPlant;
|
||||
mappings[149] = ItemType.ChorusFlower;
|
||||
mappings[150] = ItemType.PurpurBlock;
|
||||
mappings[151] = ItemType.PurpurPillar;
|
||||
mappings[152] = ItemType.PurpurStairs;
|
||||
mappings[153] = ItemType.Spawner;
|
||||
mappings[154] = ItemType.OakStairs;
|
||||
mappings[155] = ItemType.Chest;
|
||||
mappings[156] = ItemType.DiamondOre;
|
||||
mappings[157] = ItemType.DiamondBlock;
|
||||
mappings[158] = ItemType.CraftingTable;
|
||||
mappings[159] = ItemType.Farmland;
|
||||
mappings[160] = ItemType.Furnace;
|
||||
mappings[161] = ItemType.Ladder;
|
||||
mappings[162] = ItemType.Rail;
|
||||
mappings[163] = ItemType.CobblestoneStairs;
|
||||
mappings[164] = ItemType.Lever;
|
||||
mappings[165] = ItemType.StonePressurePlate;
|
||||
mappings[166] = ItemType.OakPressurePlate;
|
||||
mappings[167] = ItemType.SprucePressurePlate;
|
||||
mappings[168] = ItemType.BirchPressurePlate;
|
||||
mappings[169] = ItemType.JunglePressurePlate;
|
||||
mappings[170] = ItemType.AcaciaPressurePlate;
|
||||
mappings[171] = ItemType.DarkOakPressurePlate;
|
||||
mappings[172] = ItemType.RedstoneOre;
|
||||
mappings[173] = ItemType.RedstoneTorch;
|
||||
mappings[174] = ItemType.StoneButton;
|
||||
mappings[175] = ItemType.Snow;
|
||||
mappings[176] = ItemType.Ice;
|
||||
mappings[177] = ItemType.SnowBlock;
|
||||
mappings[178] = ItemType.Cactus;
|
||||
mappings[179] = ItemType.Clay;
|
||||
mappings[180] = ItemType.Jukebox;
|
||||
mappings[181] = ItemType.OakFence;
|
||||
mappings[182] = ItemType.SpruceFence;
|
||||
mappings[183] = ItemType.BirchFence;
|
||||
mappings[184] = ItemType.JungleFence;
|
||||
mappings[185] = ItemType.AcaciaFence;
|
||||
mappings[186] = ItemType.DarkOakFence;
|
||||
mappings[187] = ItemType.Pumpkin;
|
||||
mappings[188] = ItemType.CarvedPumpkin;
|
||||
mappings[189] = ItemType.Netherrack;
|
||||
mappings[190] = ItemType.SoulSand;
|
||||
mappings[191] = ItemType.Glowstone;
|
||||
mappings[192] = ItemType.JackOLantern;
|
||||
mappings[193] = ItemType.OakTrapdoor;
|
||||
mappings[194] = ItemType.SpruceTrapdoor;
|
||||
mappings[195] = ItemType.BirchTrapdoor;
|
||||
mappings[196] = ItemType.JungleTrapdoor;
|
||||
mappings[197] = ItemType.AcaciaTrapdoor;
|
||||
mappings[198] = ItemType.DarkOakTrapdoor;
|
||||
mappings[199] = ItemType.InfestedStone;
|
||||
mappings[200] = ItemType.InfestedCobblestone;
|
||||
mappings[201] = ItemType.InfestedStoneBricks;
|
||||
mappings[202] = ItemType.InfestedMossyStoneBricks;
|
||||
mappings[203] = ItemType.InfestedCrackedStoneBricks;
|
||||
mappings[204] = ItemType.InfestedChiseledStoneBricks;
|
||||
mappings[205] = ItemType.StoneBricks;
|
||||
mappings[206] = ItemType.MossyStoneBricks;
|
||||
mappings[207] = ItemType.CrackedStoneBricks;
|
||||
mappings[208] = ItemType.ChiseledStoneBricks;
|
||||
mappings[209] = ItemType.BrownMushroomBlock;
|
||||
mappings[210] = ItemType.RedMushroomBlock;
|
||||
mappings[211] = ItemType.MushroomStem;
|
||||
mappings[212] = ItemType.IronBars;
|
||||
mappings[213] = ItemType.GlassPane;
|
||||
mappings[214] = ItemType.Melon;
|
||||
mappings[215] = ItemType.Vine;
|
||||
mappings[216] = ItemType.OakFenceGate;
|
||||
mappings[217] = ItemType.SpruceFenceGate;
|
||||
mappings[218] = ItemType.BirchFenceGate;
|
||||
mappings[219] = ItemType.JungleFenceGate;
|
||||
mappings[220] = ItemType.AcaciaFenceGate;
|
||||
mappings[221] = ItemType.DarkOakFenceGate;
|
||||
mappings[222] = ItemType.BrickStairs;
|
||||
mappings[223] = ItemType.StoneBrickStairs;
|
||||
mappings[224] = ItemType.Mycelium;
|
||||
mappings[225] = ItemType.LilyPad;
|
||||
mappings[226] = ItemType.NetherBricks;
|
||||
mappings[227] = ItemType.NetherBrickFence;
|
||||
mappings[228] = ItemType.NetherBrickStairs;
|
||||
mappings[229] = ItemType.EnchantingTable;
|
||||
mappings[230] = ItemType.EndPortalFrame;
|
||||
mappings[231] = ItemType.EndStone;
|
||||
mappings[232] = ItemType.EndStoneBricks;
|
||||
mappings[233] = ItemType.DragonEgg;
|
||||
mappings[234] = ItemType.RedstoneLamp;
|
||||
mappings[235] = ItemType.SandstoneStairs;
|
||||
mappings[236] = ItemType.EmeraldOre;
|
||||
mappings[237] = ItemType.EnderChest;
|
||||
mappings[238] = ItemType.TripwireHook;
|
||||
mappings[239] = ItemType.EmeraldBlock;
|
||||
mappings[240] = ItemType.SpruceStairs;
|
||||
mappings[241] = ItemType.BirchStairs;
|
||||
mappings[242] = ItemType.JungleStairs;
|
||||
mappings[243] = ItemType.CommandBlock;
|
||||
mappings[244] = ItemType.Beacon;
|
||||
mappings[245] = ItemType.CobblestoneWall;
|
||||
mappings[246] = ItemType.MossyCobblestoneWall;
|
||||
mappings[247] = ItemType.BrickWall;
|
||||
mappings[248] = ItemType.PrismarineWall;
|
||||
mappings[249] = ItemType.RedSandstoneWall;
|
||||
mappings[250] = ItemType.MossyStoneBrickWall;
|
||||
mappings[251] = ItemType.GraniteWall;
|
||||
mappings[252] = ItemType.StoneBrickWall;
|
||||
mappings[253] = ItemType.NetherBrickWall;
|
||||
mappings[254] = ItemType.AndesiteWall;
|
||||
mappings[255] = ItemType.RedNetherBrickWall;
|
||||
mappings[256] = ItemType.SandstoneWall;
|
||||
mappings[257] = ItemType.EndStoneBrickWall;
|
||||
mappings[258] = ItemType.DioriteWall;
|
||||
mappings[259] = ItemType.OakButton;
|
||||
mappings[260] = ItemType.SpruceButton;
|
||||
mappings[261] = ItemType.BirchButton;
|
||||
mappings[262] = ItemType.JungleButton;
|
||||
mappings[263] = ItemType.AcaciaButton;
|
||||
mappings[264] = ItemType.DarkOakButton;
|
||||
mappings[265] = ItemType.Anvil;
|
||||
mappings[266] = ItemType.ChippedAnvil;
|
||||
mappings[267] = ItemType.DamagedAnvil;
|
||||
mappings[268] = ItemType.TrappedChest;
|
||||
mappings[269] = ItemType.LightWeightedPressurePlate;
|
||||
mappings[270] = ItemType.HeavyWeightedPressurePlate;
|
||||
mappings[271] = ItemType.DaylightDetector;
|
||||
mappings[272] = ItemType.RedstoneBlock;
|
||||
mappings[273] = ItemType.NetherQuartzOre;
|
||||
mappings[274] = ItemType.Hopper;
|
||||
mappings[275] = ItemType.ChiseledQuartzBlock;
|
||||
mappings[276] = ItemType.QuartzBlock;
|
||||
mappings[277] = ItemType.QuartzPillar;
|
||||
mappings[278] = ItemType.QuartzStairs;
|
||||
mappings[279] = ItemType.ActivatorRail;
|
||||
mappings[280] = ItemType.Dropper;
|
||||
mappings[281] = ItemType.WhiteTerracotta;
|
||||
mappings[282] = ItemType.OrangeTerracotta;
|
||||
mappings[283] = ItemType.MagentaTerracotta;
|
||||
mappings[284] = ItemType.LightBlueTerracotta;
|
||||
mappings[285] = ItemType.YellowTerracotta;
|
||||
mappings[286] = ItemType.LimeTerracotta;
|
||||
mappings[287] = ItemType.PinkTerracotta;
|
||||
mappings[288] = ItemType.GrayTerracotta;
|
||||
mappings[289] = ItemType.LightGrayTerracotta;
|
||||
mappings[290] = ItemType.CyanTerracotta;
|
||||
mappings[291] = ItemType.PurpleTerracotta;
|
||||
mappings[292] = ItemType.BlueTerracotta;
|
||||
mappings[293] = ItemType.BrownTerracotta;
|
||||
mappings[294] = ItemType.GreenTerracotta;
|
||||
mappings[295] = ItemType.RedTerracotta;
|
||||
mappings[296] = ItemType.BlackTerracotta;
|
||||
mappings[297] = ItemType.Barrier;
|
||||
mappings[298] = ItemType.IronTrapdoor;
|
||||
mappings[299] = ItemType.HayBlock;
|
||||
mappings[300] = ItemType.WhiteCarpet;
|
||||
mappings[301] = ItemType.OrangeCarpet;
|
||||
mappings[302] = ItemType.MagentaCarpet;
|
||||
mappings[303] = ItemType.LightBlueCarpet;
|
||||
mappings[304] = ItemType.YellowCarpet;
|
||||
mappings[305] = ItemType.LimeCarpet;
|
||||
mappings[306] = ItemType.PinkCarpet;
|
||||
mappings[307] = ItemType.GrayCarpet;
|
||||
mappings[308] = ItemType.LightGrayCarpet;
|
||||
mappings[309] = ItemType.CyanCarpet;
|
||||
mappings[310] = ItemType.PurpleCarpet;
|
||||
mappings[311] = ItemType.BlueCarpet;
|
||||
mappings[312] = ItemType.BrownCarpet;
|
||||
mappings[313] = ItemType.GreenCarpet;
|
||||
mappings[314] = ItemType.RedCarpet;
|
||||
mappings[315] = ItemType.BlackCarpet;
|
||||
mappings[316] = ItemType.Terracotta;
|
||||
mappings[317] = ItemType.CoalBlock;
|
||||
mappings[318] = ItemType.PackedIce;
|
||||
mappings[319] = ItemType.AcaciaStairs;
|
||||
mappings[320] = ItemType.DarkOakStairs;
|
||||
mappings[321] = ItemType.SlimeBlock;
|
||||
mappings[322] = ItemType.GrassPath;
|
||||
mappings[323] = ItemType.Sunflower;
|
||||
mappings[324] = ItemType.Lilac;
|
||||
mappings[325] = ItemType.RoseBush;
|
||||
mappings[326] = ItemType.Peony;
|
||||
mappings[327] = ItemType.TallGrass;
|
||||
mappings[328] = ItemType.LargeFern;
|
||||
mappings[329] = ItemType.WhiteStainedGlass;
|
||||
mappings[330] = ItemType.OrangeStainedGlass;
|
||||
mappings[331] = ItemType.MagentaStainedGlass;
|
||||
mappings[332] = ItemType.LightBlueStainedGlass;
|
||||
mappings[333] = ItemType.YellowStainedGlass;
|
||||
mappings[334] = ItemType.LimeStainedGlass;
|
||||
mappings[335] = ItemType.PinkStainedGlass;
|
||||
mappings[336] = ItemType.GrayStainedGlass;
|
||||
mappings[337] = ItemType.LightGrayStainedGlass;
|
||||
mappings[338] = ItemType.CyanStainedGlass;
|
||||
mappings[339] = ItemType.PurpleStainedGlass;
|
||||
mappings[340] = ItemType.BlueStainedGlass;
|
||||
mappings[341] = ItemType.BrownStainedGlass;
|
||||
mappings[342] = ItemType.GreenStainedGlass;
|
||||
mappings[343] = ItemType.RedStainedGlass;
|
||||
mappings[344] = ItemType.BlackStainedGlass;
|
||||
mappings[345] = ItemType.WhiteStainedGlassPane;
|
||||
mappings[346] = ItemType.OrangeStainedGlassPane;
|
||||
mappings[347] = ItemType.MagentaStainedGlassPane;
|
||||
mappings[348] = ItemType.LightBlueStainedGlassPane;
|
||||
mappings[349] = ItemType.YellowStainedGlassPane;
|
||||
mappings[350] = ItemType.LimeStainedGlassPane;
|
||||
mappings[351] = ItemType.PinkStainedGlassPane;
|
||||
mappings[352] = ItemType.GrayStainedGlassPane;
|
||||
mappings[353] = ItemType.LightGrayStainedGlassPane;
|
||||
mappings[354] = ItemType.CyanStainedGlassPane;
|
||||
mappings[355] = ItemType.PurpleStainedGlassPane;
|
||||
mappings[356] = ItemType.BlueStainedGlassPane;
|
||||
mappings[357] = ItemType.BrownStainedGlassPane;
|
||||
mappings[358] = ItemType.GreenStainedGlassPane;
|
||||
mappings[359] = ItemType.RedStainedGlassPane;
|
||||
mappings[360] = ItemType.BlackStainedGlassPane;
|
||||
mappings[361] = ItemType.Prismarine;
|
||||
mappings[362] = ItemType.PrismarineBricks;
|
||||
mappings[363] = ItemType.DarkPrismarine;
|
||||
mappings[364] = ItemType.PrismarineStairs;
|
||||
mappings[365] = ItemType.PrismarineBrickStairs;
|
||||
mappings[366] = ItemType.DarkPrismarineStairs;
|
||||
mappings[367] = ItemType.SeaLantern;
|
||||
mappings[368] = ItemType.RedSandstone;
|
||||
mappings[369] = ItemType.ChiseledRedSandstone;
|
||||
mappings[370] = ItemType.CutRedSandstone;
|
||||
mappings[371] = ItemType.RedSandstoneStairs;
|
||||
mappings[372] = ItemType.RepeatingCommandBlock;
|
||||
mappings[373] = ItemType.ChainCommandBlock;
|
||||
mappings[374] = ItemType.MagmaBlock;
|
||||
mappings[375] = ItemType.NetherWartBlock;
|
||||
mappings[376] = ItemType.RedNetherBricks;
|
||||
mappings[377] = ItemType.BoneBlock;
|
||||
mappings[378] = ItemType.StructureVoid;
|
||||
mappings[379] = ItemType.Observer;
|
||||
mappings[380] = ItemType.ShulkerBox;
|
||||
mappings[381] = ItemType.WhiteShulkerBox;
|
||||
mappings[382] = ItemType.OrangeShulkerBox;
|
||||
mappings[383] = ItemType.MagentaShulkerBox;
|
||||
mappings[384] = ItemType.LightBlueShulkerBox;
|
||||
mappings[385] = ItemType.YellowShulkerBox;
|
||||
mappings[386] = ItemType.LimeShulkerBox;
|
||||
mappings[387] = ItemType.PinkShulkerBox;
|
||||
mappings[388] = ItemType.GrayShulkerBox;
|
||||
mappings[389] = ItemType.LightGrayShulkerBox;
|
||||
mappings[390] = ItemType.CyanShulkerBox;
|
||||
mappings[391] = ItemType.PurpleShulkerBox;
|
||||
mappings[392] = ItemType.BlueShulkerBox;
|
||||
mappings[393] = ItemType.BrownShulkerBox;
|
||||
mappings[394] = ItemType.GreenShulkerBox;
|
||||
mappings[395] = ItemType.RedShulkerBox;
|
||||
mappings[396] = ItemType.BlackShulkerBox;
|
||||
mappings[397] = ItemType.WhiteGlazedTerracotta;
|
||||
mappings[398] = ItemType.OrangeGlazedTerracotta;
|
||||
mappings[399] = ItemType.MagentaGlazedTerracotta;
|
||||
mappings[400] = ItemType.LightBlueGlazedTerracotta;
|
||||
mappings[401] = ItemType.YellowGlazedTerracotta;
|
||||
mappings[402] = ItemType.LimeGlazedTerracotta;
|
||||
mappings[403] = ItemType.PinkGlazedTerracotta;
|
||||
mappings[404] = ItemType.GrayGlazedTerracotta;
|
||||
mappings[405] = ItemType.LightGrayGlazedTerracotta;
|
||||
mappings[406] = ItemType.CyanGlazedTerracotta;
|
||||
mappings[407] = ItemType.PurpleGlazedTerracotta;
|
||||
mappings[408] = ItemType.BlueGlazedTerracotta;
|
||||
mappings[409] = ItemType.BrownGlazedTerracotta;
|
||||
mappings[410] = ItemType.GreenGlazedTerracotta;
|
||||
mappings[411] = ItemType.RedGlazedTerracotta;
|
||||
mappings[412] = ItemType.BlackGlazedTerracotta;
|
||||
mappings[413] = ItemType.WhiteConcrete;
|
||||
mappings[414] = ItemType.OrangeConcrete;
|
||||
mappings[415] = ItemType.MagentaConcrete;
|
||||
mappings[416] = ItemType.LightBlueConcrete;
|
||||
mappings[417] = ItemType.YellowConcrete;
|
||||
mappings[418] = ItemType.LimeConcrete;
|
||||
mappings[419] = ItemType.PinkConcrete;
|
||||
mappings[420] = ItemType.GrayConcrete;
|
||||
mappings[421] = ItemType.LightGrayConcrete;
|
||||
mappings[422] = ItemType.CyanConcrete;
|
||||
mappings[423] = ItemType.PurpleConcrete;
|
||||
mappings[424] = ItemType.BlueConcrete;
|
||||
mappings[425] = ItemType.BrownConcrete;
|
||||
mappings[426] = ItemType.GreenConcrete;
|
||||
mappings[427] = ItemType.RedConcrete;
|
||||
mappings[428] = ItemType.BlackConcrete;
|
||||
mappings[429] = ItemType.WhiteConcretePowder;
|
||||
mappings[430] = ItemType.OrangeConcretePowder;
|
||||
mappings[431] = ItemType.MagentaConcretePowder;
|
||||
mappings[432] = ItemType.LightBlueConcretePowder;
|
||||
mappings[433] = ItemType.YellowConcretePowder;
|
||||
mappings[434] = ItemType.LimeConcretePowder;
|
||||
mappings[435] = ItemType.PinkConcretePowder;
|
||||
mappings[436] = ItemType.GrayConcretePowder;
|
||||
mappings[437] = ItemType.LightGrayConcretePowder;
|
||||
mappings[438] = ItemType.CyanConcretePowder;
|
||||
mappings[439] = ItemType.PurpleConcretePowder;
|
||||
mappings[440] = ItemType.BlueConcretePowder;
|
||||
mappings[441] = ItemType.BrownConcretePowder;
|
||||
mappings[442] = ItemType.GreenConcretePowder;
|
||||
mappings[443] = ItemType.RedConcretePowder;
|
||||
mappings[444] = ItemType.BlackConcretePowder;
|
||||
mappings[445] = ItemType.TurtleEgg;
|
||||
mappings[446] = ItemType.DeadTubeCoralBlock;
|
||||
mappings[447] = ItemType.DeadBrainCoralBlock;
|
||||
mappings[448] = ItemType.DeadBubbleCoralBlock;
|
||||
mappings[449] = ItemType.DeadFireCoralBlock;
|
||||
mappings[450] = ItemType.DeadHornCoralBlock;
|
||||
mappings[451] = ItemType.TubeCoralBlock;
|
||||
mappings[452] = ItemType.BrainCoralBlock;
|
||||
mappings[453] = ItemType.BubbleCoralBlock;
|
||||
mappings[454] = ItemType.FireCoralBlock;
|
||||
mappings[455] = ItemType.HornCoralBlock;
|
||||
mappings[456] = ItemType.TubeCoral;
|
||||
mappings[457] = ItemType.BrainCoral;
|
||||
mappings[458] = ItemType.BubbleCoral;
|
||||
mappings[459] = ItemType.FireCoral;
|
||||
mappings[460] = ItemType.HornCoral;
|
||||
mappings[461] = ItemType.DeadBrainCoral;
|
||||
mappings[462] = ItemType.DeadBubbleCoral;
|
||||
mappings[463] = ItemType.DeadFireCoral;
|
||||
mappings[464] = ItemType.DeadHornCoral;
|
||||
mappings[465] = ItemType.DeadTubeCoral;
|
||||
mappings[466] = ItemType.TubeCoralFan;
|
||||
mappings[467] = ItemType.BrainCoralFan;
|
||||
mappings[468] = ItemType.BubbleCoralFan;
|
||||
mappings[469] = ItemType.FireCoralFan;
|
||||
mappings[470] = ItemType.HornCoralFan;
|
||||
mappings[471] = ItemType.DeadTubeCoralFan;
|
||||
mappings[472] = ItemType.DeadBrainCoralFan;
|
||||
mappings[473] = ItemType.DeadBubbleCoralFan;
|
||||
mappings[474] = ItemType.DeadFireCoralFan;
|
||||
mappings[475] = ItemType.DeadHornCoralFan;
|
||||
mappings[476] = ItemType.BlueIce;
|
||||
mappings[477] = ItemType.Conduit;
|
||||
mappings[478] = ItemType.PolishedGraniteStairs;
|
||||
mappings[479] = ItemType.SmoothRedSandstoneStairs;
|
||||
mappings[480] = ItemType.MossyStoneBrickStairs;
|
||||
mappings[481] = ItemType.PolishedDioriteStairs;
|
||||
mappings[482] = ItemType.MossyCobblestoneStairs;
|
||||
mappings[483] = ItemType.EndStoneBrickStairs;
|
||||
mappings[484] = ItemType.StoneStairs;
|
||||
mappings[485] = ItemType.SmoothSandstoneStairs;
|
||||
mappings[486] = ItemType.SmoothQuartzStairs;
|
||||
mappings[487] = ItemType.GraniteStairs;
|
||||
mappings[488] = ItemType.AndesiteStairs;
|
||||
mappings[489] = ItemType.RedNetherBrickStairs;
|
||||
mappings[490] = ItemType.PolishedAndesiteStairs;
|
||||
mappings[491] = ItemType.DioriteStairs;
|
||||
mappings[492] = ItemType.PolishedGraniteSlab;
|
||||
mappings[493] = ItemType.SmoothRedSandstoneSlab;
|
||||
mappings[494] = ItemType.MossyStoneBrickSlab;
|
||||
mappings[495] = ItemType.PolishedDioriteSlab;
|
||||
mappings[496] = ItemType.MossyCobblestoneSlab;
|
||||
mappings[497] = ItemType.EndStoneBrickSlab;
|
||||
mappings[498] = ItemType.SmoothSandstoneSlab;
|
||||
mappings[499] = ItemType.SmoothQuartzSlab;
|
||||
mappings[500] = ItemType.GraniteSlab;
|
||||
mappings[501] = ItemType.AndesiteSlab;
|
||||
mappings[502] = ItemType.RedNetherBrickSlab;
|
||||
mappings[503] = ItemType.PolishedAndesiteSlab;
|
||||
mappings[504] = ItemType.DioriteSlab;
|
||||
mappings[505] = ItemType.Scaffolding;
|
||||
mappings[506] = ItemType.IronDoor;
|
||||
mappings[507] = ItemType.OakDoor;
|
||||
mappings[508] = ItemType.SpruceDoor;
|
||||
mappings[509] = ItemType.BirchDoor;
|
||||
mappings[510] = ItemType.JungleDoor;
|
||||
mappings[511] = ItemType.AcaciaDoor;
|
||||
mappings[512] = ItemType.DarkOakDoor;
|
||||
mappings[513] = ItemType.Repeater;
|
||||
mappings[514] = ItemType.Comparator;
|
||||
mappings[515] = ItemType.StructureBlock;
|
||||
mappings[516] = ItemType.Jigsaw;
|
||||
mappings[517] = ItemType.Composter;
|
||||
mappings[518] = ItemType.TurtleHelmet;
|
||||
mappings[519] = ItemType.Scute;
|
||||
mappings[520] = ItemType.IronShovel;
|
||||
mappings[521] = ItemType.IronPickaxe;
|
||||
mappings[522] = ItemType.IronAxe;
|
||||
mappings[523] = ItemType.FlintAndSteel;
|
||||
mappings[524] = ItemType.Apple;
|
||||
mappings[525] = ItemType.Bow;
|
||||
mappings[526] = ItemType.Arrow;
|
||||
mappings[527] = ItemType.Coal;
|
||||
mappings[528] = ItemType.Charcoal;
|
||||
mappings[529] = ItemType.Diamond;
|
||||
mappings[530] = ItemType.IronIngot;
|
||||
mappings[531] = ItemType.GoldIngot;
|
||||
mappings[532] = ItemType.IronSword;
|
||||
mappings[533] = ItemType.WoodenSword;
|
||||
mappings[534] = ItemType.WoodenShovel;
|
||||
mappings[535] = ItemType.WoodenPickaxe;
|
||||
mappings[536] = ItemType.WoodenAxe;
|
||||
mappings[537] = ItemType.StoneSword;
|
||||
mappings[538] = ItemType.StoneShovel;
|
||||
mappings[539] = ItemType.StonePickaxe;
|
||||
mappings[540] = ItemType.StoneAxe;
|
||||
mappings[541] = ItemType.DiamondSword;
|
||||
mappings[542] = ItemType.DiamondShovel;
|
||||
mappings[543] = ItemType.DiamondPickaxe;
|
||||
mappings[544] = ItemType.DiamondAxe;
|
||||
mappings[545] = ItemType.Stick;
|
||||
mappings[546] = ItemType.Bowl;
|
||||
mappings[547] = ItemType.MushroomStew;
|
||||
mappings[548] = ItemType.GoldenSword;
|
||||
mappings[549] = ItemType.GoldenShovel;
|
||||
mappings[550] = ItemType.GoldenPickaxe;
|
||||
mappings[551] = ItemType.GoldenAxe;
|
||||
mappings[552] = ItemType.String;
|
||||
mappings[553] = ItemType.Feather;
|
||||
mappings[554] = ItemType.Gunpowder;
|
||||
mappings[555] = ItemType.WoodenHoe;
|
||||
mappings[556] = ItemType.StoneHoe;
|
||||
mappings[557] = ItemType.IronHoe;
|
||||
mappings[558] = ItemType.DiamondHoe;
|
||||
mappings[559] = ItemType.GoldenHoe;
|
||||
mappings[560] = ItemType.WheatSeeds;
|
||||
mappings[561] = ItemType.Wheat;
|
||||
mappings[562] = ItemType.Bread;
|
||||
mappings[563] = ItemType.LeatherHelmet;
|
||||
mappings[564] = ItemType.LeatherChestplate;
|
||||
mappings[565] = ItemType.LeatherLeggings;
|
||||
mappings[566] = ItemType.LeatherBoots;
|
||||
mappings[567] = ItemType.ChainmailHelmet;
|
||||
mappings[568] = ItemType.ChainmailChestplate;
|
||||
mappings[569] = ItemType.ChainmailLeggings;
|
||||
mappings[570] = ItemType.ChainmailBoots;
|
||||
mappings[571] = ItemType.IronHelmet;
|
||||
mappings[572] = ItemType.IronChestplate;
|
||||
mappings[573] = ItemType.IronLeggings;
|
||||
mappings[574] = ItemType.IronBoots;
|
||||
mappings[575] = ItemType.DiamondHelmet;
|
||||
mappings[576] = ItemType.DiamondChestplate;
|
||||
mappings[577] = ItemType.DiamondLeggings;
|
||||
mappings[578] = ItemType.DiamondBoots;
|
||||
mappings[579] = ItemType.GoldenHelmet;
|
||||
mappings[580] = ItemType.GoldenChestplate;
|
||||
mappings[581] = ItemType.GoldenLeggings;
|
||||
mappings[582] = ItemType.GoldenBoots;
|
||||
mappings[583] = ItemType.Flint;
|
||||
mappings[584] = ItemType.Porkchop;
|
||||
mappings[585] = ItemType.CookedPorkchop;
|
||||
mappings[586] = ItemType.Painting;
|
||||
mappings[587] = ItemType.GoldenApple;
|
||||
mappings[588] = ItemType.EnchantedGoldenApple;
|
||||
mappings[589] = ItemType.OakSign;
|
||||
mappings[590] = ItemType.SpruceSign;
|
||||
mappings[591] = ItemType.BirchSign;
|
||||
mappings[592] = ItemType.JungleSign;
|
||||
mappings[593] = ItemType.AcaciaSign;
|
||||
mappings[594] = ItemType.DarkOakSign;
|
||||
mappings[595] = ItemType.Bucket;
|
||||
mappings[596] = ItemType.WaterBucket;
|
||||
mappings[597] = ItemType.LavaBucket;
|
||||
mappings[598] = ItemType.Minecart;
|
||||
mappings[599] = ItemType.Saddle;
|
||||
mappings[600] = ItemType.Redstone;
|
||||
mappings[601] = ItemType.Snowball;
|
||||
mappings[602] = ItemType.OakBoat;
|
||||
mappings[603] = ItemType.Leather;
|
||||
mappings[604] = ItemType.MilkBucket;
|
||||
mappings[605] = ItemType.PufferfishBucket;
|
||||
mappings[606] = ItemType.SalmonBucket;
|
||||
mappings[607] = ItemType.CodBucket;
|
||||
mappings[608] = ItemType.TropicalFishBucket;
|
||||
mappings[609] = ItemType.Brick;
|
||||
mappings[610] = ItemType.ClayBall;
|
||||
mappings[611] = ItemType.SugarCane;
|
||||
mappings[612] = ItemType.Kelp;
|
||||
mappings[613] = ItemType.DriedKelpBlock;
|
||||
mappings[614] = ItemType.Bamboo;
|
||||
mappings[615] = ItemType.Paper;
|
||||
mappings[616] = ItemType.Book;
|
||||
mappings[617] = ItemType.SlimeBall;
|
||||
mappings[618] = ItemType.ChestMinecart;
|
||||
mappings[619] = ItemType.FurnaceMinecart;
|
||||
mappings[620] = ItemType.Egg;
|
||||
mappings[621] = ItemType.Compass;
|
||||
mappings[622] = ItemType.FishingRod;
|
||||
mappings[623] = ItemType.Clock;
|
||||
mappings[624] = ItemType.GlowstoneDust;
|
||||
mappings[625] = ItemType.Cod;
|
||||
mappings[626] = ItemType.Salmon;
|
||||
mappings[627] = ItemType.TropicalFish;
|
||||
mappings[628] = ItemType.Pufferfish;
|
||||
mappings[629] = ItemType.CookedCod;
|
||||
mappings[630] = ItemType.CookedSalmon;
|
||||
mappings[631] = ItemType.InkSac;
|
||||
mappings[632] = ItemType.RedDye;
|
||||
mappings[633] = ItemType.GreenDye;
|
||||
mappings[634] = ItemType.CocoaBeans;
|
||||
mappings[635] = ItemType.LapisLazuli;
|
||||
mappings[636] = ItemType.PurpleDye;
|
||||
mappings[637] = ItemType.CyanDye;
|
||||
mappings[638] = ItemType.LightGrayDye;
|
||||
mappings[639] = ItemType.GrayDye;
|
||||
mappings[640] = ItemType.PinkDye;
|
||||
mappings[641] = ItemType.LimeDye;
|
||||
mappings[642] = ItemType.YellowDye;
|
||||
mappings[643] = ItemType.LightBlueDye;
|
||||
mappings[644] = ItemType.MagentaDye;
|
||||
mappings[645] = ItemType.OrangeDye;
|
||||
mappings[646] = ItemType.BoneMeal;
|
||||
mappings[647] = ItemType.BlueDye;
|
||||
mappings[648] = ItemType.BrownDye;
|
||||
mappings[649] = ItemType.BlackDye;
|
||||
mappings[650] = ItemType.WhiteDye;
|
||||
mappings[651] = ItemType.Bone;
|
||||
mappings[652] = ItemType.Sugar;
|
||||
mappings[653] = ItemType.Cake;
|
||||
mappings[654] = ItemType.WhiteBed;
|
||||
mappings[655] = ItemType.OrangeBed;
|
||||
mappings[656] = ItemType.MagentaBed;
|
||||
mappings[657] = ItemType.LightBlueBed;
|
||||
mappings[658] = ItemType.YellowBed;
|
||||
mappings[659] = ItemType.LimeBed;
|
||||
mappings[660] = ItemType.PinkBed;
|
||||
mappings[661] = ItemType.GrayBed;
|
||||
mappings[662] = ItemType.LightGrayBed;
|
||||
mappings[663] = ItemType.CyanBed;
|
||||
mappings[664] = ItemType.PurpleBed;
|
||||
mappings[665] = ItemType.BlueBed;
|
||||
mappings[666] = ItemType.BrownBed;
|
||||
mappings[667] = ItemType.GreenBed;
|
||||
mappings[668] = ItemType.RedBed;
|
||||
mappings[669] = ItemType.BlackBed;
|
||||
mappings[670] = ItemType.Cookie;
|
||||
mappings[671] = ItemType.FilledMap;
|
||||
mappings[672] = ItemType.Shears;
|
||||
mappings[673] = ItemType.MelonSlice;
|
||||
mappings[674] = ItemType.DriedKelp;
|
||||
mappings[675] = ItemType.PumpkinSeeds;
|
||||
mappings[676] = ItemType.MelonSeeds;
|
||||
mappings[677] = ItemType.Beef;
|
||||
mappings[678] = ItemType.CookedBeef;
|
||||
mappings[679] = ItemType.Chicken;
|
||||
mappings[680] = ItemType.CookedChicken;
|
||||
mappings[681] = ItemType.RottenFlesh;
|
||||
mappings[682] = ItemType.EnderPearl;
|
||||
mappings[683] = ItemType.BlazeRod;
|
||||
mappings[684] = ItemType.GhastTear;
|
||||
mappings[685] = ItemType.GoldNugget;
|
||||
mappings[686] = ItemType.NetherWart;
|
||||
mappings[687] = ItemType.Potion;
|
||||
mappings[688] = ItemType.GlassBottle;
|
||||
mappings[689] = ItemType.SpiderEye;
|
||||
mappings[690] = ItemType.FermentedSpiderEye;
|
||||
mappings[691] = ItemType.BlazePowder;
|
||||
mappings[692] = ItemType.MagmaCream;
|
||||
mappings[693] = ItemType.BrewingStand;
|
||||
mappings[694] = ItemType.Cauldron;
|
||||
mappings[695] = ItemType.EnderEye;
|
||||
mappings[696] = ItemType.GlisteringMelonSlice;
|
||||
mappings[697] = ItemType.BatSpawnEgg;
|
||||
mappings[698] = ItemType.BeeSpawnEgg;
|
||||
mappings[699] = ItemType.BlazeSpawnEgg;
|
||||
mappings[700] = ItemType.CatSpawnEgg;
|
||||
mappings[701] = ItemType.CaveSpiderSpawnEgg;
|
||||
mappings[702] = ItemType.ChickenSpawnEgg;
|
||||
mappings[703] = ItemType.CodSpawnEgg;
|
||||
mappings[704] = ItemType.CowSpawnEgg;
|
||||
mappings[705] = ItemType.CreeperSpawnEgg;
|
||||
mappings[706] = ItemType.DolphinSpawnEgg;
|
||||
mappings[707] = ItemType.DonkeySpawnEgg;
|
||||
mappings[708] = ItemType.DrownedSpawnEgg;
|
||||
mappings[709] = ItemType.ElderGuardianSpawnEgg;
|
||||
mappings[710] = ItemType.EndermanSpawnEgg;
|
||||
mappings[711] = ItemType.EndermiteSpawnEgg;
|
||||
mappings[712] = ItemType.EvokerSpawnEgg;
|
||||
mappings[713] = ItemType.FoxSpawnEgg;
|
||||
mappings[714] = ItemType.GhastSpawnEgg;
|
||||
mappings[715] = ItemType.GuardianSpawnEgg;
|
||||
mappings[716] = ItemType.HorseSpawnEgg;
|
||||
mappings[717] = ItemType.HuskSpawnEgg;
|
||||
mappings[718] = ItemType.LlamaSpawnEgg;
|
||||
mappings[719] = ItemType.MagmaCubeSpawnEgg;
|
||||
mappings[720] = ItemType.MooshroomSpawnEgg;
|
||||
mappings[721] = ItemType.MuleSpawnEgg;
|
||||
mappings[722] = ItemType.OcelotSpawnEgg;
|
||||
mappings[723] = ItemType.PandaSpawnEgg;
|
||||
mappings[724] = ItemType.ParrotSpawnEgg;
|
||||
mappings[725] = ItemType.PhantomSpawnEgg;
|
||||
mappings[726] = ItemType.PigSpawnEgg;
|
||||
mappings[727] = ItemType.PillagerSpawnEgg;
|
||||
mappings[728] = ItemType.PolarBearSpawnEgg;
|
||||
mappings[729] = ItemType.PufferfishSpawnEgg;
|
||||
mappings[730] = ItemType.RabbitSpawnEgg;
|
||||
mappings[731] = ItemType.RavagerSpawnEgg;
|
||||
mappings[732] = ItemType.SalmonSpawnEgg;
|
||||
mappings[733] = ItemType.SheepSpawnEgg;
|
||||
mappings[734] = ItemType.ShulkerSpawnEgg;
|
||||
mappings[735] = ItemType.SilverfishSpawnEgg;
|
||||
mappings[736] = ItemType.SkeletonSpawnEgg;
|
||||
mappings[737] = ItemType.SkeletonHorseSpawnEgg;
|
||||
mappings[738] = ItemType.SlimeSpawnEgg;
|
||||
mappings[739] = ItemType.SpiderSpawnEgg;
|
||||
mappings[740] = ItemType.SquidSpawnEgg;
|
||||
mappings[741] = ItemType.StraySpawnEgg;
|
||||
mappings[742] = ItemType.TraderLlamaSpawnEgg;
|
||||
mappings[743] = ItemType.TropicalFishSpawnEgg;
|
||||
mappings[744] = ItemType.TurtleSpawnEgg;
|
||||
mappings[745] = ItemType.VexSpawnEgg;
|
||||
mappings[746] = ItemType.VillagerSpawnEgg;
|
||||
mappings[747] = ItemType.VindicatorSpawnEgg;
|
||||
mappings[748] = ItemType.WanderingTraderSpawnEgg;
|
||||
mappings[749] = ItemType.WitchSpawnEgg;
|
||||
mappings[750] = ItemType.WitherSkeletonSpawnEgg;
|
||||
mappings[751] = ItemType.WolfSpawnEgg;
|
||||
mappings[752] = ItemType.ZombieSpawnEgg;
|
||||
mappings[753] = ItemType.ZombieHorseSpawnEgg;
|
||||
mappings[754] = ItemType.ZombifiedPiglinSpawnEgg;
|
||||
mappings[755] = ItemType.ZombieVillagerSpawnEgg;
|
||||
mappings[756] = ItemType.ExperienceBottle;
|
||||
mappings[757] = ItemType.FireCharge;
|
||||
mappings[758] = ItemType.WritableBook;
|
||||
mappings[759] = ItemType.WrittenBook;
|
||||
mappings[760] = ItemType.Emerald;
|
||||
mappings[761] = ItemType.ItemFrame;
|
||||
mappings[762] = ItemType.FlowerPot;
|
||||
mappings[763] = ItemType.Carrot;
|
||||
mappings[764] = ItemType.Potato;
|
||||
mappings[765] = ItemType.BakedPotato;
|
||||
mappings[766] = ItemType.PoisonousPotato;
|
||||
mappings[767] = ItemType.Map;
|
||||
mappings[768] = ItemType.GoldenCarrot;
|
||||
mappings[769] = ItemType.SkeletonSkull;
|
||||
mappings[770] = ItemType.WitherSkeletonSkull;
|
||||
mappings[771] = ItemType.PlayerHead;
|
||||
mappings[772] = ItemType.ZombieHead;
|
||||
mappings[773] = ItemType.CreeperHead;
|
||||
mappings[774] = ItemType.DragonHead;
|
||||
mappings[775] = ItemType.CarrotOnAStick;
|
||||
mappings[776] = ItemType.NetherStar;
|
||||
mappings[777] = ItemType.PumpkinPie;
|
||||
mappings[778] = ItemType.FireworkRocket;
|
||||
mappings[779] = ItemType.FireworkStar;
|
||||
mappings[780] = ItemType.EnchantedBook;
|
||||
mappings[781] = ItemType.NetherBrick;
|
||||
mappings[782] = ItemType.Quartz;
|
||||
mappings[783] = ItemType.TntMinecart;
|
||||
mappings[784] = ItemType.HopperMinecart;
|
||||
mappings[785] = ItemType.PrismarineShard;
|
||||
mappings[786] = ItemType.PrismarineCrystals;
|
||||
mappings[787] = ItemType.Rabbit;
|
||||
mappings[788] = ItemType.CookedRabbit;
|
||||
mappings[789] = ItemType.RabbitStew;
|
||||
mappings[790] = ItemType.RabbitFoot;
|
||||
mappings[791] = ItemType.RabbitHide;
|
||||
mappings[792] = ItemType.ArmorStand;
|
||||
mappings[793] = ItemType.IronHorseArmor;
|
||||
mappings[794] = ItemType.GoldenHorseArmor;
|
||||
mappings[795] = ItemType.DiamondHorseArmor;
|
||||
mappings[796] = ItemType.LeatherHorseArmor;
|
||||
mappings[797] = ItemType.Lead;
|
||||
mappings[798] = ItemType.NameTag;
|
||||
mappings[799] = ItemType.CommandBlockMinecart;
|
||||
mappings[800] = ItemType.Mutton;
|
||||
mappings[801] = ItemType.CookedMutton;
|
||||
mappings[802] = ItemType.WhiteBanner;
|
||||
mappings[803] = ItemType.OrangeBanner;
|
||||
mappings[804] = ItemType.MagentaBanner;
|
||||
mappings[805] = ItemType.LightBlueBanner;
|
||||
mappings[806] = ItemType.YellowBanner;
|
||||
mappings[807] = ItemType.LimeBanner;
|
||||
mappings[808] = ItemType.PinkBanner;
|
||||
mappings[809] = ItemType.GrayBanner;
|
||||
mappings[810] = ItemType.LightGrayBanner;
|
||||
mappings[811] = ItemType.CyanBanner;
|
||||
mappings[812] = ItemType.PurpleBanner;
|
||||
mappings[813] = ItemType.BlueBanner;
|
||||
mappings[814] = ItemType.BrownBanner;
|
||||
mappings[815] = ItemType.GreenBanner;
|
||||
mappings[816] = ItemType.RedBanner;
|
||||
mappings[817] = ItemType.BlackBanner;
|
||||
mappings[818] = ItemType.EndCrystal;
|
||||
mappings[819] = ItemType.ChorusFruit;
|
||||
mappings[820] = ItemType.PoppedChorusFruit;
|
||||
mappings[821] = ItemType.Beetroot;
|
||||
mappings[822] = ItemType.BeetrootSeeds;
|
||||
mappings[823] = ItemType.BeetrootSoup;
|
||||
mappings[824] = ItemType.DragonBreath;
|
||||
mappings[825] = ItemType.SplashPotion;
|
||||
mappings[826] = ItemType.SpectralArrow;
|
||||
mappings[827] = ItemType.TippedArrow;
|
||||
mappings[828] = ItemType.LingeringPotion;
|
||||
mappings[829] = ItemType.Shield;
|
||||
mappings[830] = ItemType.Elytra;
|
||||
mappings[831] = ItemType.SpruceBoat;
|
||||
mappings[832] = ItemType.BirchBoat;
|
||||
mappings[833] = ItemType.JungleBoat;
|
||||
mappings[834] = ItemType.AcaciaBoat;
|
||||
mappings[835] = ItemType.DarkOakBoat;
|
||||
mappings[836] = ItemType.TotemOfUndying;
|
||||
mappings[837] = ItemType.ShulkerShell;
|
||||
mappings[838] = ItemType.IronNugget;
|
||||
mappings[839] = ItemType.KnowledgeBook;
|
||||
mappings[840] = ItemType.DebugStick;
|
||||
mappings[841] = ItemType.MusicDisc13;
|
||||
mappings[842] = ItemType.MusicDiscCat;
|
||||
mappings[843] = ItemType.MusicDiscBlocks;
|
||||
mappings[844] = ItemType.MusicDiscChirp;
|
||||
mappings[845] = ItemType.MusicDiscFar;
|
||||
mappings[846] = ItemType.MusicDiscMall;
|
||||
mappings[847] = ItemType.MusicDiscMellohi;
|
||||
mappings[848] = ItemType.MusicDiscStal;
|
||||
mappings[849] = ItemType.MusicDiscStrad;
|
||||
mappings[850] = ItemType.MusicDiscWard;
|
||||
mappings[851] = ItemType.MusicDisc11;
|
||||
mappings[852] = ItemType.MusicDiscWait;
|
||||
mappings[853] = ItemType.Trident;
|
||||
mappings[854] = ItemType.PhantomMembrane;
|
||||
mappings[855] = ItemType.NautilusShell;
|
||||
mappings[856] = ItemType.HeartOfTheSea;
|
||||
mappings[857] = ItemType.Crossbow;
|
||||
mappings[858] = ItemType.SuspiciousStew;
|
||||
mappings[859] = ItemType.Loom;
|
||||
mappings[860] = ItemType.FlowerBannerPattern;
|
||||
mappings[861] = ItemType.CreeperBannerPattern;
|
||||
mappings[862] = ItemType.SkullBannerPattern;
|
||||
mappings[863] = ItemType.MojangBannerPattern;
|
||||
mappings[864] = ItemType.GlobeBannerPattern;
|
||||
mappings[865] = ItemType.Barrel;
|
||||
mappings[866] = ItemType.Smoker;
|
||||
mappings[867] = ItemType.BlastFurnace;
|
||||
mappings[868] = ItemType.CartographyTable;
|
||||
mappings[869] = ItemType.FletchingTable;
|
||||
mappings[870] = ItemType.Grindstone;
|
||||
mappings[871] = ItemType.Lectern;
|
||||
mappings[872] = ItemType.SmithingTable;
|
||||
mappings[873] = ItemType.Stonecutter;
|
||||
mappings[874] = ItemType.Bell;
|
||||
mappings[875] = ItemType.Lantern;
|
||||
mappings[876] = ItemType.SweetBerries;
|
||||
mappings[877] = ItemType.Campfire;
|
||||
mappings[878] = ItemType.Honeycomb;
|
||||
mappings[879] = ItemType.BeeNest;
|
||||
mappings[880] = ItemType.Beehive;
|
||||
mappings[881] = ItemType.HoneyBottle;
|
||||
mappings[882] = ItemType.HoneyBlock;
|
||||
mappings[883] = ItemType.HoneycombBlock;
|
||||
}
|
||||
|
||||
protected override Dictionary<int, ItemType> GetDict()
|
||||
{
|
||||
return mappings;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue