From cfba203981adb307a45093d167050eebb2fff3c9 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 24 Apr 2019 13:37:43 +0100 Subject: [PATCH 01/37] Add prerelease support to VersionUtil --- .../essentials/utils/VersionUtil.java | 41 +++++++++++++++---- .../com/earth2me/essentials/UtilTest.java | 16 +++++++- 2 files changed, 48 insertions(+), 9 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java index f87fb5800..746c6fd53 100644 --- a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java @@ -20,6 +20,8 @@ public class VersionUtil { public static final BukkitVersion v1_12_2_R01 = BukkitVersion.fromString("1.12.2-R0.1-SNAPSHOT"); public static final BukkitVersion v1_13_0_R01 = BukkitVersion.fromString("1.13.0-R0.1-SNAPSHOT"); public static final BukkitVersion v1_13_2_R01 = BukkitVersion.fromString("1.13.2-R0.1-SNAPSHOT"); + // TODO: update to 1.14 release + public static final BukkitVersion v1_14_PRE5 = BukkitVersion.fromString("1.14-pre5-SNAPSHOT"); private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01); @@ -41,6 +43,7 @@ public class VersionUtil { private final int major; private final int minor; + private final int prerelease; private final int patch; private final double revision; @@ -55,22 +58,26 @@ public class VersionUtil { Preconditions.checkArgument(matcher.matches(), string + " is not in valid version format. e.g. 1.8.8-R0.1"); } - return from(matcher.group(1), matcher.group(2), matcher.group(3), matcher.group(4)); + return from(matcher.group(1), matcher.group(2), matcher.group(3), matcher.group(4), matcher.group(5)); } - private static BukkitVersion from(String major, String minor, String patch, String revision) { + private static BukkitVersion from(String major, String minor, String patch, String revision, String prerelease) { if (patch.isEmpty()) patch = "0"; + if (revision.isEmpty()) revision = "0"; + if (prerelease.isEmpty()) prerelease = "-1"; return new BukkitVersion(Integer.parseInt(major), Integer.parseInt(minor), Integer.parseInt(patch), - Double.parseDouble(revision)); + Double.parseDouble(revision), + Integer.parseInt(prerelease)); } - private BukkitVersion(int major, int minor, int patch, double revision) { + private BukkitVersion(int major, int minor, int patch, double revision, int prerelease) { this.major = major; this.minor = minor; this.patch = patch; this.revision = revision; + this.prerelease = prerelease; } public boolean isHigherThan(BukkitVersion o) { @@ -105,6 +112,10 @@ public class VersionUtil { return revision; } + public int getPrerelease() { + return prerelease; + } + @Override public boolean equals(Object o) { if (this == o) { @@ -117,17 +128,25 @@ public class VersionUtil { return major == that.major && minor == that.minor && patch == that.patch && - revision == that.revision; + revision == that.revision && + prerelease == that.prerelease; } @Override public int hashCode() { - return Objects.hashCode(major, minor, patch, revision); + return Objects.hashCode(major, minor, patch, revision, prerelease); } @Override public String toString() { - return major + "." + minor + "." + patch + "-R" + revision; + StringBuilder sb = new StringBuilder(major + "." + minor); + if (patch != 0) { + sb.append(".").append(patch); + } + if (prerelease != -1) { + sb.append("-pre").append(prerelease); + } + return sb.append("-R").append(revision).toString(); } @Override @@ -147,7 +166,13 @@ public class VersionUtil { } else if (patch > o.patch) { return 1; } else { // equal patch - return Double.compare(revision, o.revision); + if (prerelease < o.prerelease) { + return -1; + } else if (prerelease > o.prerelease) { + return 1; + } else { // equal prerelease + return Double.compare(revision, o.revision); + } } } } diff --git a/Essentials/test/com/earth2me/essentials/UtilTest.java b/Essentials/test/com/earth2me/essentials/UtilTest.java index cd905f9ad..6c22e5508 100644 --- a/Essentials/test/com/earth2me/essentials/UtilTest.java +++ b/Essentials/test/com/earth2me/essentials/UtilTest.java @@ -197,10 +197,24 @@ public class UtilTest extends TestCase { assertEquals(v.getMinor(), 13); assertEquals(v.getPatch(), 2); assertEquals(v.getRevision(), 0.1); - v = VersionUtil.BukkitVersion.fromString("1.9-R1.4"); + assertEquals(v.getPrerelease(), -1); + v = VersionUtil.BukkitVersion.fromString("1.9-R1.4"); // not real assertEquals(v.getMajor(), 1); assertEquals(v.getMinor(), 9); assertEquals(v.getPatch(), 0); assertEquals(v.getRevision(), 1.4); + assertEquals(v.getPrerelease(), -1); + v = VersionUtil.BukkitVersion.fromString("1.14-pre5"); + assertEquals(v.getMajor(), 1); + assertEquals(v.getMinor(), 14); + assertEquals(v.getPatch(), 0); + assertEquals(v.getRevision(), 0); + assertEquals(v.getPrerelease(), 5); + v = VersionUtil.BukkitVersion.fromString("1.13.2-pre1-R0.1"); // not real + assertEquals(v.getMajor(), 1); + assertEquals(v.getMinor(), 13); + assertEquals(v.getPatch(), 2); + assertEquals(v.getRevision(), 0.1); + assertEquals(v.getPrerelease(), 1); } } From af4cfd3fe92c2312176096ed6efd23e3c8a17aa5 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 24 Apr 2019 13:54:33 +0100 Subject: [PATCH 02/37] Update bStats Metrics to use Gson --- .../earth2me/essentials/metrics/Metrics.java | 152 +++++++++--------- 1 file changed, 75 insertions(+), 77 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java index 00f640e9f..2d009d8db 100644 --- a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java +++ b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java @@ -1,13 +1,12 @@ package com.earth2me.essentials.metrics; +import com.google.gson.*; import org.bukkit.Bukkit; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.entity.Player; import org.bukkit.plugin.Plugin; import org.bukkit.plugin.RegisteredServiceProvider; import org.bukkit.plugin.ServicePriority; -import org.json.simple.JSONArray; -import org.json.simple.JSONObject; import javax.net.ssl.HttpsURLConnection; import java.io.*; @@ -68,6 +67,8 @@ public class Metrics { // A list with all custom charts private final List charts = new ArrayList<>(); + + private final Gson gson = new Gson(); /** * Class constructor. @@ -186,24 +187,24 @@ public class Metrics { * * @return The plugin specific data. */ - public JSONObject getPluginData() { - JSONObject data = new JSONObject(); + public JsonObject getPluginData() { + JsonObject data = new JsonObject(); String pluginName = plugin.getDescription().getName().replace("Essentials", "EssentialsX"); String pluginVersion = plugin.getDescription().getVersion(); - data.put("pluginName", pluginName); // Append the name of the plugin - data.put("pluginVersion", pluginVersion); // Append the version of the plugin - JSONArray customCharts = new JSONArray(); + data.addProperty("pluginName", pluginName); // Append the name of the plugin + data.addProperty("pluginVersion", pluginVersion); // Append the version of the plugin + JsonArray customCharts = new JsonArray(); for (CustomChart customChart : charts) { // Add the data of the custom charts - JSONObject chart = customChart.getRequestJsonObject(); + JsonObject chart = customChart.getRequestJsonObject(); if (chart == null) { // If the chart is null, we skip it continue; } customCharts.add(chart); } - data.put("customCharts", customCharts); + data.add("customCharts", customCharts); return data; } @@ -213,7 +214,7 @@ public class Metrics { * * @return The server specific data. */ - private JSONObject getServerData() { + private JsonObject getServerData() { // Minecraft specific data int playerAmount; try { @@ -236,19 +237,19 @@ public class Metrics { String osVersion = System.getProperty("os.version"); int coreCount = Runtime.getRuntime().availableProcessors(); - JSONObject data = new JSONObject(); + JsonObject data = new JsonObject(); - data.put("serverUUID", serverUUID); + data.addProperty("serverUUID", serverUUID); - data.put("playerAmount", playerAmount); - data.put("onlineMode", onlineMode); - data.put("bukkitVersion", bukkitVersion); + data.addProperty("playerAmount", playerAmount); + data.addProperty("onlineMode", onlineMode); + data.addProperty("bukkitVersion", bukkitVersion); - data.put("javaVersion", javaVersion); - data.put("osName", osName); - data.put("osArch", osArch); - data.put("osVersion", osVersion); - data.put("coreCount", coreCount); + data.addProperty("javaVersion", javaVersion); + data.addProperty("osName", osName); + data.addProperty("osArch", osArch); + data.addProperty("osVersion", osVersion); + data.addProperty("coreCount", coreCount); return data; } @@ -257,9 +258,9 @@ public class Metrics { * Collects the data and sends it afterwards. */ private void submitData() { - final JSONObject data = getServerData(); + final JsonObject data = getServerData(); - JSONArray pluginData = new JSONArray(); + JsonArray pluginData = new JsonArray(); // Search for all other bStats Metrics classes to get their plugin data for (Class service : Bukkit.getServicesManager().getKnownServices()) { try { @@ -267,26 +268,23 @@ public class Metrics { for (RegisteredServiceProvider provider : Bukkit.getServicesManager().getRegistrations(service)) { try { - pluginData.add(provider.getService().getMethod("getPluginData").invoke(provider.getProvider())); + pluginData.add(gson.toJsonTree(provider.getService().getMethod("getPluginData").invoke(provider.getProvider()))); } catch (NullPointerException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ignored) { } } } catch (NoSuchFieldException ignored) { } } - data.put("plugins", pluginData); + data.add("plugins", pluginData); // Create a new thread for the connection to the bStats server - new Thread(new Runnable() { - @Override - public void run() { - try { - // Send the data - sendData(plugin, data); - } catch (Exception e) { - // Something went wrong! :( - if (logFailedRequests) { - plugin.getLogger().log(Level.WARNING, "Could not submit plugin stats of " + plugin.getName(), e); - } + new Thread(() -> { + try { + // Send the data + sendData(plugin, data); + } catch (Exception e) { + // Something went wrong! :( + if (logFailedRequests) { + plugin.getLogger().log(Level.WARNING, "Could not submit plugin stats of " + plugin.getName(), e); } } }).start(); @@ -299,7 +297,7 @@ public class Metrics { * @param data The data to send. * @throws Exception If the request failed. */ - private static void sendData(Plugin plugin, JSONObject data) throws Exception { + private static void sendData(Plugin plugin, JsonObject data) throws Exception { if (data == null) { throw new IllegalArgumentException("Data cannot be null!"); } @@ -382,16 +380,16 @@ public class Metrics { this.chartId = chartId; } - private JSONObject getRequestJsonObject() { - JSONObject chart = new JSONObject(); - chart.put("chartId", chartId); + private JsonObject getRequestJsonObject() { + JsonObject chart = new JsonObject(); + chart.addProperty("chartId", chartId); try { - JSONObject data = getChartData(); + JsonObject data = getChartData(); if (data == null) { // If the data is null we don't send the chart. return null; } - chart.put("data", data); + chart.add("data", data); } catch (Throwable t) { if (logFailedRequests) { Bukkit.getLogger().log(Level.WARNING, "Failed to get data for custom chart with id " + chartId, t); @@ -401,7 +399,7 @@ public class Metrics { return chart; } - protected abstract JSONObject getChartData() throws Exception; + protected abstract JsonObject getChartData() throws Exception; } @@ -424,14 +422,14 @@ public class Metrics { } @Override - protected JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); + protected JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); String value = callable.call(); if (value == null || value.isEmpty()) { // Null = skip the chart return null; } - data.put("value", value); + data.addProperty("value", value); return data; } } @@ -455,9 +453,9 @@ public class Metrics { } @Override - protected JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); - JSONObject values = new JSONObject(); + protected JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); + JsonObject values = new JsonObject(); Map map = callable.call(); if (map == null || map.isEmpty()) { // Null = skip the chart @@ -469,13 +467,13 @@ public class Metrics { continue; // Skip this invalid } allSkipped = false; - values.put(entry.getKey(), entry.getValue()); + values.addProperty(entry.getKey(), entry.getValue()); } if (allSkipped) { // Null = skip the chart return null; } - data.put("values", values); + data.add("values", values); return data; } } @@ -499,9 +497,9 @@ public class Metrics { } @Override - public JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); - JSONObject values = new JSONObject(); + public JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); + JsonObject values = new JsonObject(); Map> map = callable.call(); if (map == null || map.isEmpty()) { // Null = skip the chart @@ -509,22 +507,22 @@ public class Metrics { } boolean reallyAllSkipped = true; for (Map.Entry> entryValues : map.entrySet()) { - JSONObject value = new JSONObject(); + JsonObject value = new JsonObject(); boolean allSkipped = true; for (Map.Entry valueEntry : map.get(entryValues.getKey()).entrySet()) { - value.put(valueEntry.getKey(), valueEntry.getValue()); + value.addProperty(valueEntry.getKey(), valueEntry.getValue()); allSkipped = false; } if (!allSkipped) { reallyAllSkipped = false; - values.put(entryValues.getKey(), value); + values.add(entryValues.getKey(), value); } } if (reallyAllSkipped) { // Null = skip the chart return null; } - data.put("values", values); + data.add("values", values); return data; } } @@ -548,14 +546,14 @@ public class Metrics { } @Override - protected JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); + protected JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); int value = callable.call(); if (value == 0) { // Null = skip the chart return null; } - data.put("value", value); + data.addProperty("value", value); return data; } @@ -580,9 +578,9 @@ public class Metrics { } @Override - protected JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); - JSONObject values = new JSONObject(); + protected JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); + JsonObject values = new JsonObject(); Map map = callable.call(); if (map == null || map.isEmpty()) { // Null = skip the chart @@ -594,13 +592,13 @@ public class Metrics { continue; // Skip this invalid } allSkipped = false; - values.put(entry.getKey(), entry.getValue()); + values.addProperty(entry.getKey(), entry.getValue()); } if (allSkipped) { // Null = skip the chart return null; } - data.put("values", values); + data.add("values", values); return data; } @@ -625,20 +623,20 @@ public class Metrics { } @Override - protected JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); - JSONObject values = new JSONObject(); + protected JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); + JsonObject values = new JsonObject(); Map map = callable.call(); if (map == null || map.isEmpty()) { // Null = skip the chart return null; } for (Map.Entry entry : map.entrySet()) { - JSONArray categoryValues = new JSONArray(); + JsonArray categoryValues = new JsonArray(); categoryValues.add(entry.getValue()); - values.put(entry.getKey(), categoryValues); + values.add(entry.getKey(), categoryValues); } - data.put("values", values); + data.add("values", values); return data; } @@ -663,9 +661,9 @@ public class Metrics { } @Override - protected JSONObject getChartData() throws Exception { - JSONObject data = new JSONObject(); - JSONObject values = new JSONObject(); + protected JsonObject getChartData() throws Exception { + JsonObject data = new JsonObject(); + JsonObject values = new JsonObject(); Map map = callable.call(); if (map == null || map.isEmpty()) { // Null = skip the chart @@ -677,17 +675,17 @@ public class Metrics { continue; // Skip this invalid } allSkipped = false; - JSONArray categoryValues = new JSONArray(); + JsonArray categoryValues = new JsonArray(); for (int categoryValue : entry.getValue()) { categoryValues.add(categoryValue); } - values.put(entry.getKey(), categoryValues); + values.add(entry.getKey(), categoryValues); } if (allSkipped) { // Null = skip the chart return null; } - data.put("values", values); + data.add("values", values); return data; } } From d2824625472383d08a678768e3e8f181ffbc2e3f Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 24 Apr 2019 14:28:15 +0100 Subject: [PATCH 03/37] Use MaterialUtil to check signs --- .../essentials/signs/EssentialsSign.java | 6 ++--- .../essentials/signs/SignBlockListener.java | 17 ++++++------- .../essentials/signs/SignEntityListener.java | 6 ++--- .../essentials/signs/SignProtection.java | 2 +- .../essentials/utils/MaterialUtil.java | 25 ++++++++++++++++--- 5 files changed, 36 insertions(+), 20 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java b/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java index 46dcb4e0c..59e4eba01 100644 --- a/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java +++ b/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java @@ -2,6 +2,7 @@ package com.earth2me.essentials.signs; import com.earth2me.essentials.*; import com.earth2me.essentials.utils.EnumUtil; +import com.earth2me.essentials.utils.MaterialUtil; import com.earth2me.essentials.utils.NumberUtil; import net.ess3.api.IEssentials; import net.ess3.api.MaxMoneyException; @@ -26,7 +27,6 @@ import static com.earth2me.essentials.I18n.tl; public class EssentialsSign { - private static final Material SIGN_POST = EnumUtil.getMaterial("SIGN", "SIGN_POST"); private static final Set EMPTY_SET = new HashSet(); protected static final BigDecimal MINTRANSACTION = new BigDecimal("0.01"); protected transient final String signName; @@ -206,13 +206,13 @@ public class EssentialsSign { protected static boolean checkIfBlockBreaksSigns(final Block block) { final Block sign = block.getRelative(BlockFace.UP); - if (sign.getType() == SIGN_POST && isValidSign(new BlockSign(sign))) { + if (MaterialUtil.isSignPost(sign.getType()) && isValidSign(new BlockSign(sign))) { return true; } final BlockFace[] directions = new BlockFace[]{BlockFace.NORTH, BlockFace.EAST, BlockFace.SOUTH, BlockFace.WEST}; for (BlockFace blockFace : directions) { final Block signblock = block.getRelative(blockFace); - if (signblock.getType() == Material.WALL_SIGN) { + if (MaterialUtil.isWallSign(signblock.getType())) { try { final org.bukkit.material.Sign signMat = (org.bukkit.material.Sign) signblock.getState().getData(); if (signMat != null && signMat.getFacing() == blockFace && isValidSign(new BlockSign(signblock))) { diff --git a/Essentials/src/com/earth2me/essentials/signs/SignBlockListener.java b/Essentials/src/com/earth2me/essentials/signs/SignBlockListener.java index 89b027a1b..c1fdbfa9e 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignBlockListener.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignBlockListener.java @@ -4,6 +4,7 @@ import com.earth2me.essentials.I18n; import com.earth2me.essentials.User; import com.earth2me.essentials.utils.EnumUtil; import com.earth2me.essentials.utils.FormatUtil; +import com.earth2me.essentials.utils.MaterialUtil; import net.ess3.api.IEssentials; import net.ess3.api.MaxMoneyException; import org.bukkit.ChatColor; @@ -22,8 +23,6 @@ import java.util.logging.Logger; public class SignBlockListener implements Listener { private static final Logger LOGGER = Logger.getLogger("Essentials"); - private static final Material WALL_SIGN = Material.WALL_SIGN; - private static final Material SIGN_POST = EnumUtil.getMaterial("SIGN", "SIGN_POST"); private final transient IEssentials ess; public SignBlockListener(IEssentials ess) { @@ -55,7 +54,7 @@ public class SignBlockListener implements Listener { } final Material mat = block.getType(); - if (mat == SIGN_POST || mat == WALL_SIGN) { + if (MaterialUtil.isSign(mat)) { final Sign csign = (Sign) block.getState(); for (EssentialsSign sign : ess.getSettings().enabledSigns()) { @@ -143,12 +142,12 @@ public class SignBlockListener implements Listener { } final Block against = event.getBlockAgainst(); - if ((against.getType() == WALL_SIGN || against.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(against))) { + if (MaterialUtil.isSign(against.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(against))) { event.setCancelled(true); return; } final Block block = event.getBlock(); - if (block.getType() == WALL_SIGN || block.getType() == SIGN_POST) { + if (MaterialUtil.isSign(block.getType())) { return; } for (EssentialsSign sign : ess.getSettings().enabledSigns()) { @@ -167,7 +166,7 @@ public class SignBlockListener implements Listener { } final Block block = event.getBlock(); - if (((block.getType() == WALL_SIGN || block.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { + if ((MaterialUtil.isSign(block.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { event.setCancelled(true); return; } @@ -187,7 +186,7 @@ public class SignBlockListener implements Listener { } final Block block = event.getBlock(); - if (((block.getType() == WALL_SIGN || block.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { + if ((MaterialUtil.isSign(block.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { event.setCancelled(true); return; } @@ -207,7 +206,7 @@ public class SignBlockListener implements Listener { } for (Block block : event.getBlocks()) { - if (((block.getType() == WALL_SIGN || block.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { + if ((MaterialUtil.isSign(block.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { event.setCancelled(true); return; } @@ -232,7 +231,7 @@ public class SignBlockListener implements Listener { final Block[] affectedBlocks = new Block[]{pistonBaseBlock, pistonBaseBlock.getRelative(event.getDirection()), event.getRetractLocation().getBlock()}; for (Block block : affectedBlocks) { - if (((block.getType() == WALL_SIGN || block.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { + if ((MaterialUtil.isSign(block.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { event.setCancelled(true); return; } diff --git a/Essentials/src/com/earth2me/essentials/signs/SignEntityListener.java b/Essentials/src/com/earth2me/essentials/signs/SignEntityListener.java index 7b8670200..08544ba99 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignEntityListener.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignEntityListener.java @@ -1,6 +1,7 @@ package com.earth2me.essentials.signs; import com.earth2me.essentials.utils.EnumUtil; +import com.earth2me.essentials.utils.MaterialUtil; import net.ess3.api.IEssentials; import org.bukkit.Material; import org.bukkit.block.Block; @@ -13,7 +14,6 @@ import org.bukkit.event.entity.EntityExplodeEvent; public class SignEntityListener implements Listener { - private static final Material SIGN_POST = EnumUtil.getMaterial("SIGN", "SIGN_POST"); private final transient IEssentials ess; public SignEntityListener(final IEssentials ess) { @@ -28,7 +28,7 @@ public class SignEntityListener implements Listener { } for (Block block : event.blockList()) { - if (((block.getType() == Material.WALL_SIGN || block.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { + if ((MaterialUtil.isSign(block.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { event.setCancelled(true); return; } @@ -49,7 +49,7 @@ public class SignEntityListener implements Listener { } final Block block = event.getBlock(); - if (((block.getType() == Material.WALL_SIGN || block.getType() == SIGN_POST) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { + if ((MaterialUtil.isSign(block.getType()) && EssentialsSign.isValidSign(ess, new EssentialsSign.BlockSign(block))) || EssentialsSign.checkIfBlockBreaksSigns(block)) { event.setCancelled(true); return; } diff --git a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java index 9368ae60e..d36f199d1 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java @@ -75,7 +75,7 @@ public class SignProtection extends EssentialsSign { final Block sign = entry.getKey().getBlock(); if (!hasAdjacentBlock(sign, block)) { block.setType(Material.AIR); - final Trade trade = new Trade(new ItemStack(Material.SIGN, 1), ess); + final Trade trade = new Trade(new ItemStack(sign.getType(), 1), ess); trade.pay(player, OverflowType.DROP); } } diff --git a/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java b/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java index 02b44d54a..7504605f1 100644 --- a/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java @@ -3,6 +3,7 @@ package com.earth2me.essentials.utils; import org.bukkit.Bukkit; import org.bukkit.DyeColor; import org.bukkit.Material; +import org.bukkit.Registry; import org.bukkit.material.MaterialData; import java.util.EnumSet; @@ -21,7 +22,8 @@ public class MaterialUtil { // includes TIPPED_ARROW which also has potion effects private static final Set PLAYER_HEADS; private static final Set POTIONS; - private static final Set SIGNS; + private static final Set SIGN_POSTS; + private static final Set WALL_SIGNS; public static final Material SPAWNER = EnumUtil.getMaterial("MOB_SPAWNER", "SPAWNER"); @@ -55,7 +57,14 @@ public class MaterialUtil { POTIONS = EnumUtil.getAllMatching(Material.class, "POTION", "SPLASH_POTION", "LINGERING_POTION", "TIPPED_ARROW"); - SIGNS = EnumUtil.getAllMatching(Material.class, "SIGN", "SIGN_POST", "WALL_SIGN"); + SIGN_POSTS = EnumUtil.getAllMatching(Material.class, "SIGN", "SIGN_POST", + "ACACIA_SIGN", "BIRCH_SIGN", + "DARK_OAK_SIGN", "JUNGLE_SIGN", + "OAK_SIGN", "SPRUCE_SIGN"); + + WALL_SIGNS = EnumUtil.getAllMatching(Material.class, "WALL_SIGN", + "ACACIA_WALL_SIGN", "BIRCH_WALL_SIGN", "DARK_OAK_WALL_SIGN", "JUNGLE_WALL_SIGN", + "OAK_WALL_SIGN", "SPRUCE_WALL_SIGN"); } public static boolean isBed(Material material) { @@ -94,8 +103,16 @@ public class MaterialUtil { return POTIONS.contains(material); } + public static boolean isSignPost(Material material) { + return SIGN_POSTS.contains(material); + } + + public static boolean isWallSign(Material material) { + return WALL_SIGNS.contains(material); + } + public static boolean isSign(Material material) { - return SIGNS.contains(material); + return isSignPost(material) || isWallSign(material); } public static boolean isSkull(Material material) { @@ -108,7 +125,7 @@ public class MaterialUtil { try { return Bukkit.getUnsafe().fromLegacy(new MaterialData(material, damage)); } catch (NoSuchMethodError error) { - return material; + return null; } } } From c567bc22e9d6a3e3cae4e55db47d8c64440e86cd Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 24 Apr 2019 14:30:53 +0100 Subject: [PATCH 04/37] Compile against 1.14-pre5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8513d2108..a413c19bb 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ org.bukkit bukkit - 1.13.2-R0.1-SNAPSHOT + 1.14-pre5-SNAPSHOT provided From 78b2dba42a8bd17bf68fa5fcaa8ebcf296f408b5 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 13:49:35 +0100 Subject: [PATCH 05/37] Bump to API 1.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a413c19bb..df842265f 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ org.bukkit bukkit - 1.14-pre5-SNAPSHOT + 1.14-R0.1-SNAPSHOT provided From 365efe4f2d803335e781dd7824de1d026bbdbc3b Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 13:49:54 +0100 Subject: [PATCH 06/37] Implement missing FakeWorld and OfflinePlayer methods --- .../src/com/earth2me/essentials/OfflinePlayer.java | 11 +++++++++++ .../earth2me/essentials/craftbukkit/FakeWorld.java | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index 2769a2e6f..63d4283b4 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -23,6 +23,7 @@ import org.bukkit.metadata.MetadataValue; import org.bukkit.permissions.Permission; import org.bukkit.permissions.PermissionAttachment; import org.bukkit.permissions.PermissionAttachmentInfo; +import org.bukkit.persistence.PersistentDataContainer; import org.bukkit.plugin.Plugin; import org.bukkit.potion.PotionEffect; import org.bukkit.potion.PotionEffectType; @@ -162,6 +163,11 @@ public class OfflinePlayer implements Player { return null; } + @Override + public Pose getPose() { + return null; + } + @Override public boolean performCommand(String string) { return false; @@ -1614,4 +1620,9 @@ public class OfflinePlayer implements Player { @Override public void updateCommands() { } + + @Override + public PersistentDataContainer getPersistentDataContainer() { + return null; + } } diff --git a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java index 4d471545b..a2a48425a 100644 --- a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java +++ b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java @@ -112,7 +112,7 @@ public class FakeWorld implements World { throw new UnsupportedOperationException("Not supported yet."); } - @Override + //@Override public boolean unloadChunk(int i, int i1, boolean bln, boolean bln1) { throw new UnsupportedOperationException("Not supported yet."); } @@ -122,7 +122,7 @@ public class FakeWorld implements World { throw new UnsupportedOperationException("Not supported yet."); } - @Override + //@Override public boolean unloadChunkRequest(int i, int i1, boolean bln) { throw new UnsupportedOperationException("Not supported yet."); } From fb48aaba9d0370b865afb874f46869aff41f4955 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 22:40:51 +0100 Subject: [PATCH 07/37] Initial cross-version mob compatibility Incorporates part of https://github.com/EssentialsX/Essentials/pull/2523 - thanks @JRoy. --- .../src/com/earth2me/essentials/Mob.java | 21 +++--- .../com/earth2me/essentials/MobCompat.java | 74 +++++++++++++++++++ .../src/com/earth2me/essentials/MobData.java | 72 +++++++++++++----- .../earth2me/essentials/utils/EnumUtil.java | 4 + 4 files changed, 144 insertions(+), 27 deletions(-) create mode 100644 Essentials/src/com/earth2me/essentials/MobCompat.java diff --git a/Essentials/src/com/earth2me/essentials/Mob.java b/Essentials/src/com/earth2me/essentials/Mob.java index 562727975..1b3896a08 100644 --- a/Essentials/src/com/earth2me/essentials/Mob.java +++ b/Essentials/src/com/earth2me/essentials/Mob.java @@ -1,10 +1,10 @@ package com.earth2me.essentials; +import com.earth2me.essentials.utils.EnumUtil; import org.bukkit.Location; import org.bukkit.Server; import org.bukkit.World; -import org.bukkit.entity.Entity; -import org.bukkit.entity.EntityType; +import org.bukkit.entity.*; import java.util.*; import java.util.logging.Level; @@ -83,6 +83,13 @@ public enum Mob { TROPICAL_FISH("TropicalFish", Enemies.NEUTRAL, "TROPICAL_FISH"), DROWNED("Drowned", Enemies.ENEMY, "DROWNED"), DOLPHIN("Dolphin", Enemies.NEUTRAL, "DOLPHIN"), + CAT("Cat", Enemies.FRIENDLY, "CAT"), + FOX("Fox", Enemies.FRIENDLY, "FOX"), + PANDA("Panda", Enemies.NEUTRAL, "PANDA"), + PILLAGER("Pillager", Enemies.ENEMY, "PILLAGER"), + RAVAGER("Ravager", Enemies.ENEMY, "RAVAGER"), + TRADER_LLAMA("TraderLlama", Enemies.FRIENDLY, "TRADER_LLAMA"), + WANDERING_TRADER("WanderingTrader", Enemies.FRIENDLY, "WANDERING_TRADER") ; public static final Logger logger = Logger.getLogger("Essentials"); @@ -100,16 +107,10 @@ public enum Mob { this.bukkitType = type; } - Mob(String n, Enemies en, String typeName) { + Mob(String n, Enemies en, String... typeName) { this.name = n; this.type = en; - EntityType entityType; - try { - entityType = EntityType.valueOf(typeName); - } catch (IllegalArgumentException ignored) { - entityType = null; - } - bukkitType = entityType; + bukkitType = EnumUtil.getEntityType(typeName); } public String suffix = "s"; diff --git a/Essentials/src/com/earth2me/essentials/MobCompat.java b/Essentials/src/com/earth2me/essentials/MobCompat.java new file mode 100644 index 000000000..2fbf0d209 --- /dev/null +++ b/Essentials/src/com/earth2me/essentials/MobCompat.java @@ -0,0 +1,74 @@ +package com.earth2me.essentials; + +import com.earth2me.essentials.utils.EnumUtil; +import org.bukkit.entity.Entity; +import org.bukkit.entity.EntityType; +import org.bukkit.entity.Ocelot; +import org.bukkit.entity.Villager; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.Arrays; + +public class MobCompat { + + public static final EntityType CAT = EnumUtil.getEntityType("CAT", "OCELOT"); + + private static Class catClass = null; + private static Class catTypeClass = null; + private static Method catSetTypeMethod = null; + private static Boolean isNewCat = null; + + public enum CatType { + SIAMESE("SIAMESE", "SIAMESE_CAT"), + WHITE("WHITE", "SIAMESE_CAT"), + RED("RED", "RED_CAT"), + TABBY("TABBY", "RED_CAT"), + TUXEDO("BLACK", "BLACK_CAT"), + BRITISH_SHORTHAIR("BRITISH_SHORTHAIR", null), + CALICO("CALICO", null), + PERSIAN("PERSIAN", null), + RAGDOLL("RAGDOLL", null), + JELLIE("JELLIE", null), + BLACK("ALL_BLACK", "BLACK"), + ; + + private final String catTypeName; + private final String ocelotTypeName; + + CatType(final String catTypeName, final String ocelotTypeName) { + this.catTypeName = catTypeName; + this.ocelotTypeName = ocelotTypeName; + } + } + + public static void setCatType(final Entity entity, final CatType type) { + if (isNewCat == null) { + try { + catClass = Class.forName("org.bukkit.entity.Cat"); + catTypeClass = Class.forName("org.bukkit.entity.Cat.Type"); + catSetTypeMethod = catClass.getDeclaredMethod("setCatType", catTypeClass); + isNewCat = true; + } catch (ClassNotFoundException | NoSuchMethodException e) { + isNewCat = false; + } + } + + if (isNewCat) { + try { + catSetTypeMethod.invoke(entity, EnumUtil.valueOf(catTypeClass, type.catTypeName)); + } catch (IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } else { + ((Ocelot) entity).setCatType(Ocelot.Type.valueOf(type.ocelotTypeName)); + } + } + + private static Villager.Profession getVillagerProfession(String... names) { + // Add nitwit as a default in case we're on older versions + names = Arrays.asList(names, "NITWIT").toArray(new String[0]); + return EnumUtil.valueOf(Villager.Profession.class, names); + } + +} diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index 38cd4391f..a9bef824f 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -17,8 +17,10 @@ import static com.earth2me.essentials.I18n.tl; public enum MobData { + BABY_AGEABLE("baby", Ageable.class, Data.BABY, true), ADULT_AGEABLE("adult", Ageable.class, Data.ADULT, true), + BABY_CAT("kitten", MobCompat.CAT, Data.BABY, false), BABY_PIG("piglet", EntityType.PIG, Data.BABY, false), BABY_WOLF("puppy", EntityType.WOLF, Data.BABY, false), BABY_CHICKEN("chick", EntityType.CHICKEN, Data.BABY, false), @@ -57,13 +59,19 @@ public enum MobData { GOLD_ARMOR_HORSE("goldarmor", EntityType.HORSE, EnumUtil.getMaterial("GOLDEN_HORSE_ARMOR", "GOLD_BARDING"), true), DIAMOND_ARMOR_HORSE("diamondarmor", EntityType.HORSE, EnumUtil.getMaterial("DIAMOND_HORSE_ARMOR", "DIAMOND_BARDING"), true), ARMOR_HORSE("armor", EntityType.HORSE, EnumUtil.getMaterial("IRON_HORSE_ARMOR", "IRON_BARDING"), true), - SIAMESE_CAT("siamese", EntityType.OCELOT, Ocelot.Type.SIAMESE_CAT, true), - WHITE_CAT("white", EntityType.OCELOT, Ocelot.Type.SIAMESE_CAT, false), - RED_CAT("red", EntityType.OCELOT, Ocelot.Type.RED_CAT, true), - ORANGE_CAT("orange", EntityType.OCELOT, Ocelot.Type.RED_CAT, false), - TABBY_CAT("tabby", EntityType.OCELOT, Ocelot.Type.RED_CAT, false), - BLACK_CAT("black", EntityType.OCELOT, Ocelot.Type.BLACK_CAT, true), - TUXEDO_CAT("tuxedo", EntityType.OCELOT, Ocelot.Type.BLACK_CAT, false), + SIAMESE_CAT("siamese", MobCompat.CAT, MobCompat.CatType.SIAMESE, true), + WHITE_CAT("white", MobCompat.CAT, MobCompat.CatType.WHITE, false), + RED_CAT("red", MobCompat.CAT, MobCompat.CatType.RED, true), + ORANGE_CAT("orange", MobCompat.CAT, MobCompat.CatType.RED, false), + TABBY_CAT("tabby", MobCompat.CAT, MobCompat.CatType.TABBY, true), + BLACK_CAT("black", MobCompat.CAT, MobCompat.CatType.BLACK, true), + TUXEDO_CAT("tuxedo", MobCompat.CAT, MobCompat.CatType.TUXEDO, true), + BRITISH_SHORTHAIR_CAT("britishshorthair", EntityType.CAT, MobCompat.CatType.BRITISH_SHORTHAIR, true), + CALICO_CAT("calico", EntityType.CAT, MobCompat.CatType.CALICO, true), + PERSIAN_CAT("persian", EntityType.CAT, MobCompat.CatType.PERSIAN, true), + RAGDOLL_CAT("ragdoll", EntityType.CAT, MobCompat.CatType.RAGDOLL, true), + JELLIE_CAT("jellie", EntityType.CAT, MobCompat.CatType.JELLIE, true), + ALL_BLACK_CAT("allblack", EntityType.CAT, MobCompat.CatType.BLACK, true), BABY_ZOMBIE("baby", EntityType.ZOMBIE.getEntityClass(), Data.BABYZOMBIE, true), ADULT_ZOMBIE("adult", EntityType.ZOMBIE.getEntityClass(), Data.ADULTZOMBIE, true), DIAMOND_SWORD_ZOMBIE("diamondsword", EntityType.ZOMBIE.getEntityClass(), Material.DIAMOND_SWORD, true), @@ -83,12 +91,21 @@ public enum MobData { SADDLE_PIG("saddle", EntityType.PIG, Data.PIGSADDLE, true), ANGRY_WOLF("angry", EntityType.WOLF, Data.ANGRY, true), RABID_WOLF("rabid", EntityType.WOLF, Data.ANGRY, false), - FARMER_VILLAGER("farmer", EntityType.VILLAGER, Villager.Profession.FARMER, true), - LIBRARIAN_VILLAGER("librarian", EntityType.VILLAGER, Villager.Profession.LIBRARIAN, true), - PRIEST_VILLAGER("priest", EntityType.VILLAGER, Villager.Profession.PRIEST, true), - FATHER_VILLAGER("father", EntityType.VILLAGER, Villager.Profession.PRIEST, false), - SMITH_VILLAGER("smith", EntityType.VILLAGER, Villager.Profession.BLACKSMITH, true), + VILLAGER("villager", EntityType.VILLAGER, Villager.Profession.NONE, true), + ARMORER_VILLAGER("armorer", EntityType.VILLAGER, Villager.Profession.ARMORER, true), BUTCHER_VILLAGER("butcher", EntityType.VILLAGER, Villager.Profession.BUTCHER, true), + CARTOGRAPHER_VILLAGER("cartographer", EntityType.VILLAGER, Villager.Profession.CARTOGRAPHER, true), + CLERIC_VILLAGER("cleric", EntityType.VILLAGER, Villager.Profession.CLERIC, true), + FARMER_VILLAGER("farmer", EntityType.VILLAGER, Villager.Profession.FARMER, true), + FISHERMAN_VILLAGER("fisherman", EntityType.VILLAGER, Villager.Profession.FISHERMAN, true), + FLETCHER_VILLAGER("fletcher", EntityType.VILLAGER, Villager.Profession.FLETCHER, true), + LEATHERWORKER_VILLAGER("leatherworker", EntityType.VILLAGER, Villager.Profession.LEATHERWORKER, true), + LIBRARIAN_VILLAGER("librarian", EntityType.VILLAGER, Villager.Profession.LIBRARIAN, true), + MASON_VILLAGER("mason", EntityType.VILLAGER, Villager.Profession.MASON, true), + NITWIT_VILLAGER("nitwit", EntityType.VILLAGER, Villager.Profession.NITWIT, true), + SHEPHERD_VILLAGER("shepherd", EntityType.VILLAGER, Villager.Profession.SHEPHERD, true), + TOOLSMITH_VILLAGER("toolsmith", EntityType.VILLAGER, Villager.Profession.TOOLSMITH, true), + WEAPONSMITH("weaponsmith", EntityType.VILLAGER, Villager.Profession.WEAPONSMITH, true), SIZE_SLIME("", "<1-100>", EntityType.SLIME.getEntityClass(), Data.SIZE, true), NUM_EXPERIENCE_ORB("", "<1-2000000000>", EntityType.EXPERIENCE_ORB, Data.EXP, true), RED_PARROT("red", EntityType.PARROT, Parrot.Variant.RED, true), @@ -107,7 +124,20 @@ public enum MobData { GLITTER_TROPICAL_FISH("glitter", EntityType.TROPICAL_FISH, TropicalFish.Pattern.GLITTER, true), BLOCKFISH_TROPICAL_FISH("blockfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BLOCKFISH, true), BETTY_TROPICAL_FISH("betty", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BETTY, true), - CLAYFISH_TROPICAL_FISH("clayfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.CLAYFISH, true); + CLAYFISH_TROPICAL_FISH("clayfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.CLAYFISH, true), + BABY_FOX("baby", EntityType.FOX, Data.BABY, false), + BROWN_MUSHROOM_COW("brown", EntityType.MUSHROOM_COW, MushroomCow.Variant.BROWN, true), + RED_MUSHROOM_COW("red", EntityType.MUSHROOM_COW, MushroomCow.Variant.RED, true), + AGGRESSIVE_PANDA("aggressive", EntityType.PANDA, Panda.Gene.AGGRESSIVE, true), + LAZY_PANDA("lazy", EntityType.PANDA, Panda.Gene.LAZY, true), + WORRIED_PANDA("worried", EntityType.PANDA, Panda.Gene.WORRIED, true), + PLAYFUL_PANDA("playful", EntityType.PANDA, Panda.Gene.PLAYFUL, true), + BROWN_PANDA("brown", EntityType.PANDA, Panda.Gene.BROWN, true), + WEAK_PANDA("weak", EntityType.PANDA, Panda.Gene.WEAK, true), + CREAMY_TRADER_LLAMA("creamy", EntityType.TRADER_LLAMA, TraderLlama.Color.CREAMY, true), + WHITE_TRADER_LLAMA("white", EntityType.TRADER_LLAMA, TraderLlama.Color.WHITE, true), + BROWN_TRADER_LLAMA("brown", EntityType.TRADER_LLAMA, TraderLlama.Color.BROWN, true), + GRAY_TRADER_LLAMA("gray", EntityType.TRADER_LLAMA, TraderLlama.Color.GRAY, true) ; @@ -127,6 +157,8 @@ public enum MobData { SIZE } + + public static final Logger logger = Logger.getLogger("Essentials"); MobData(String n, Object type, Object value, boolean isPublic) { @@ -250,8 +282,8 @@ public enum MobData { ((Horse) spawned).setColor((Horse.Color) this.value); } else if (this.value instanceof Horse.Style) { ((Horse) spawned).setStyle((Horse.Style) this.value); - } else if (this.value instanceof Ocelot.Type) { - ((Ocelot) spawned).setCatType((Ocelot.Type) this.value); + } else if (this.value instanceof MobCompat.CatType) { + MobCompat.setCatType(spawned, (MobCompat.CatType) this.value); } else if (this.value instanceof Villager.Profession) { ((Villager) spawned).setProfession((Villager.Profession) this.value); } else if (this.value instanceof Material) { @@ -263,10 +295,16 @@ public enum MobData { InventoryWorkaround.setItemInMainHand(invent, new ItemStack((Material) this.value, 1)); InventoryWorkaround.setItemInMainHandDropChance(invent, 0.1f); } - } else if (this.value instanceof Parrot.Variant) { + } else if (this.value instanceof Parrot.Variant) { // TODO: MobCompat ((Parrot) spawned).setVariant((Parrot.Variant) this.value); - } else if (this.value instanceof TropicalFish.Pattern) { + } else if (this.value instanceof TropicalFish.Pattern) { // TODO: MobCompat ((TropicalFish) spawned).setPattern((TropicalFish.Pattern) this.value); + } else if (this.value instanceof MushroomCow.Variant) { // TODO: MobCompat + ((MushroomCow) spawned).setVariant((MushroomCow.Variant) this.value); + } else if (this.value instanceof Panda.Gene) { // TODO: MobCompat + ((Panda) spawned).setMainGene((Panda.Gene) this.value); + } else if (this.value instanceof TraderLlama.Color) { // TODO: MobCompat + ((TraderLlama) spawned).setColor((TraderLlama.Color) this.value); } } } diff --git a/Essentials/src/com/earth2me/essentials/utils/EnumUtil.java b/Essentials/src/com/earth2me/essentials/utils/EnumUtil.java index 177bff0ef..8efecc0a6 100644 --- a/Essentials/src/com/earth2me/essentials/utils/EnumUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/EnumUtil.java @@ -2,6 +2,7 @@ package com.earth2me.essentials.utils; import org.bukkit.Material; import org.bukkit.Statistic; +import org.bukkit.entity.EntityType; import java.lang.reflect.Field; import java.util.HashSet; @@ -78,4 +79,7 @@ public class EnumUtil { return valueOf(Statistic.class, names); } + public static EntityType getEntityType(String... names) { + return valueOf(EntityType.class, names); + } } From 937c18fe1d278076bca4e819c7ac7052505a43a7 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 22:43:57 +0100 Subject: [PATCH 08/37] Update FakeWorld --- .../src/com/earth2me/essentials/craftbukkit/FakeWorld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java index a2a48425a..2265da5b9 100644 --- a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java +++ b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java @@ -168,7 +168,7 @@ public class FakeWorld implements World { } @Override - public T spawnArrow(Location location, Vector vector, float v, float v1, Class aClass) { + public T spawnArrow(Location location, Vector direction, float speed, float spread, Class clazz) { throw new UnsupportedOperationException("Not supported yet."); } From 5236ad9f64d899c1d1d04d004a4f9b3565ce932d Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 22:56:25 +0100 Subject: [PATCH 09/37] Remove redundant BABY_FOX --- Essentials/src/com/earth2me/essentials/MobData.java | 1 - 1 file changed, 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index a9bef824f..074d648ba 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -125,7 +125,6 @@ public enum MobData { BLOCKFISH_TROPICAL_FISH("blockfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BLOCKFISH, true), BETTY_TROPICAL_FISH("betty", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BETTY, true), CLAYFISH_TROPICAL_FISH("clayfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.CLAYFISH, true), - BABY_FOX("baby", EntityType.FOX, Data.BABY, false), BROWN_MUSHROOM_COW("brown", EntityType.MUSHROOM_COW, MushroomCow.Variant.BROWN, true), RED_MUSHROOM_COW("red", EntityType.MUSHROOM_COW, MushroomCow.Variant.RED, true), AGGRESSIVE_PANDA("aggressive", EntityType.PANDA, Panda.Gene.AGGRESSIVE, true), From 68b933a50111226d941a4f39dae59a908e56b6b0 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 23:06:28 +0100 Subject: [PATCH 10/37] Add Ocelot.Type fallbacks for all MobCompat.CatTypes --- .../src/com/earth2me/essentials/MobCompat.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/MobCompat.java b/Essentials/src/com/earth2me/essentials/MobCompat.java index 2fbf0d209..09d2c7654 100644 --- a/Essentials/src/com/earth2me/essentials/MobCompat.java +++ b/Essentials/src/com/earth2me/essentials/MobCompat.java @@ -25,12 +25,12 @@ public class MobCompat { RED("RED", "RED_CAT"), TABBY("TABBY", "RED_CAT"), TUXEDO("BLACK", "BLACK_CAT"), - BRITISH_SHORTHAIR("BRITISH_SHORTHAIR", null), - CALICO("CALICO", null), - PERSIAN("PERSIAN", null), - RAGDOLL("RAGDOLL", null), - JELLIE("JELLIE", null), - BLACK("ALL_BLACK", "BLACK"), + BRITISH_SHORTHAIR("BRITISH_SHORTHAIR", "SIAMESE_CAT"), + CALICO("CALICO", "RED_CAT"), + PERSIAN("PERSIAN", "RED_CAT"), + RAGDOLL("RAGDOLL", "SIAMESE_CAT"), + JELLIE("JELLIE", "SIAMESE_CAT"), + BLACK("ALL_BLACK", "BLACK_CAT"), ; private final String catTypeName; From 0e668fa0f27bcbf90e8a5703df8fee0204cd0675 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 23:06:50 +0100 Subject: [PATCH 11/37] Fix plural suffixes for fish and foxes --- .../src/com/earth2me/essentials/Mob.java | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/Mob.java b/Essentials/src/com/earth2me/essentials/Mob.java index 1b3896a08..f593f3c3c 100644 --- a/Essentials/src/com/earth2me/essentials/Mob.java +++ b/Essentials/src/com/earth2me/essentials/Mob.java @@ -77,14 +77,14 @@ public enum Mob { PARROT("Parrot", Enemies.NEUTRAL, "PARROT"), TURTLE("Turtle", Enemies.NEUTRAL, "TURTLE"), PHANTOM("Phantom", Enemies.ENEMY, "PHANTOM"), - COD("Cod", Enemies.NEUTRAL, "COD"), - SALMON("Salmon", Enemies.NEUTRAL, "SALMON"), - PUFFERFISH("Pufferfish", Enemies.NEUTRAL, "PUFFERFISH"), - TROPICAL_FISH("TropicalFish", Enemies.NEUTRAL, "TROPICAL_FISH"), + COD("Cod", Enemies.NEUTRAL, "", "COD"), + SALMON("Salmon", Enemies.NEUTRAL, "", "SALMON"), + PUFFERFISH("Pufferfish", Enemies.NEUTRAL, "", "PUFFERFISH"), + TROPICAL_FISH("TropicalFish", Enemies.NEUTRAL, "", "TROPICAL_FISH"), DROWNED("Drowned", Enemies.ENEMY, "DROWNED"), DOLPHIN("Dolphin", Enemies.NEUTRAL, "DOLPHIN"), CAT("Cat", Enemies.FRIENDLY, "CAT"), - FOX("Fox", Enemies.FRIENDLY, "FOX"), + FOX("Fox", Enemies.FRIENDLY, "es", "FOX"), PANDA("Panda", Enemies.NEUTRAL, "PANDA"), PILLAGER("Pillager", Enemies.ENEMY, "PILLAGER"), RAVAGER("Ravager", Enemies.ENEMY, "RAVAGER"), @@ -107,7 +107,14 @@ public enum Mob { this.bukkitType = type; } - Mob(String n, Enemies en, String... typeName) { + Mob(String n, Enemies en, String s, String typeName) { + this.suffix = s; + this.name = n; + this.type = en; + bukkitType = EnumUtil.getEntityType(typeName); + } + + Mob(String n, Enemies en, String typeName) { this.name = n; this.type = en; bukkitType = EnumUtil.getEntityType(typeName); From 4fcb0327919de6e9694d163bd21559797e54f00a Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 23:23:15 +0100 Subject: [PATCH 12/37] Update FakeServer --- .../test/com/earth2me/essentials/FakeServer.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Essentials/test/com/earth2me/essentials/FakeServer.java b/Essentials/test/com/earth2me/essentials/FakeServer.java index 63a08b545..1e994b14a 100644 --- a/Essentials/test/com/earth2me/essentials/FakeServer.java +++ b/Essentials/test/com/earth2me/essentials/FakeServer.java @@ -91,16 +91,6 @@ public class FakeServer implements Server { return "127.0.0.1"; } - @Override - public String getServerName() { - return "Test Server"; - } - - @Override - public String getServerId() { - return "Test Server"; - } - @Override public int broadcastMessage(String string) { int i = 0; From 6d4f7afc799c86e271ffa498964deafe8616f3e0 Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 23:26:40 +0100 Subject: [PATCH 13/37] Improve VersionUtil prerelease handling Actually includes updated regex this time! (I have no idea how I forgot to update it in cfba203981adb307a45093d167050eebb2fff3c9 - I had already written out the regex) Incorporates part of https://github.com/EssentialsX/Essentials/pull/2523 - thanks @JRoy. --- .../essentials/utils/VersionUtil.java | 27 +++++++++---------- .../com/earth2me/essentials/UtilTest.java | 2 +- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java index 746c6fd53..81b07ffc7 100644 --- a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java @@ -20,10 +20,9 @@ public class VersionUtil { public static final BukkitVersion v1_12_2_R01 = BukkitVersion.fromString("1.12.2-R0.1-SNAPSHOT"); public static final BukkitVersion v1_13_0_R01 = BukkitVersion.fromString("1.13.0-R0.1-SNAPSHOT"); public static final BukkitVersion v1_13_2_R01 = BukkitVersion.fromString("1.13.2-R0.1-SNAPSHOT"); - // TODO: update to 1.14 release - public static final BukkitVersion v1_14_PRE5 = BukkitVersion.fromString("1.14-pre5-SNAPSHOT"); + public static final BukkitVersion v1_14_R01 = BukkitVersion.fromString("1.14-R0.1-SNAPSHOT"); - private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01); + private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_R01); private static BukkitVersion serverVersion = null; @@ -39,7 +38,7 @@ public class VersionUtil { } public static class BukkitVersion implements Comparable { - private static final Pattern VERSION_PATTERN = Pattern.compile("^(\\d+)\\.(\\d+)\\.?([0-9]*)-R([\\d.]+)(?:-SNAPSHOT)?"); + private static final Pattern VERSION_PATTERN = Pattern.compile("^(\\d+)\\.(\\d+)\\.?([0-9]*)?-(?:pre(\\d))?-?R?([\\d.]+)?(?:-SNAPSHOT)?"); private final int major; private final int minor; @@ -54,17 +53,17 @@ public class VersionUtil { if (!Bukkit.getName().equals("Essentials Fake Server")) { throw new IllegalArgumentException(string + " is not in valid version format. e.g. 1.8.8-R0.1"); } - matcher = VERSION_PATTERN.matcher(v1_13_2_R01.toString()); + matcher = VERSION_PATTERN.matcher(v1_14_R01.toString()); Preconditions.checkArgument(matcher.matches(), string + " is not in valid version format. e.g. 1.8.8-R0.1"); } - return from(matcher.group(1), matcher.group(2), matcher.group(3), matcher.group(4), matcher.group(5)); + return from(matcher.group(1), matcher.group(2), matcher.group(3), matcher.groupCount() < 5 ? "" : matcher.group(5), matcher.group(4)); } private static BukkitVersion from(String major, String minor, String patch, String revision, String prerelease) { - if (patch.isEmpty()) patch = "0"; - if (revision.isEmpty()) revision = "0"; - if (prerelease.isEmpty()) prerelease = "-1"; + if (patch == null || patch.isEmpty()) patch = "0"; + if (revision == null || revision.isEmpty()) revision = "0"; + if (prerelease == null || prerelease.isEmpty()) prerelease = "-1"; return new BukkitVersion(Integer.parseInt(major), Integer.parseInt(minor), Integer.parseInt(patch), @@ -126,10 +125,10 @@ public class VersionUtil { } BukkitVersion that = (BukkitVersion) o; return major == that.major && - minor == that.minor && - patch == that.patch && - revision == that.revision && - prerelease == that.prerelease; + minor == that.minor && + patch == that.patch && + revision == that.revision && + prerelease == that.prerelease; } @Override @@ -178,4 +177,4 @@ public class VersionUtil { } } } -} +} \ No newline at end of file diff --git a/Essentials/test/com/earth2me/essentials/UtilTest.java b/Essentials/test/com/earth2me/essentials/UtilTest.java index 6c22e5508..4b21ef615 100644 --- a/Essentials/test/com/earth2me/essentials/UtilTest.java +++ b/Essentials/test/com/earth2me/essentials/UtilTest.java @@ -208,7 +208,7 @@ public class UtilTest extends TestCase { assertEquals(v.getMajor(), 1); assertEquals(v.getMinor(), 14); assertEquals(v.getPatch(), 0); - assertEquals(v.getRevision(), 0); + assertEquals(v.getRevision(), 0.0); assertEquals(v.getPrerelease(), 5); v = VersionUtil.BukkitVersion.fromString("1.13.2-pre1-R0.1"); // not real assertEquals(v.getMajor(), 1); From 65017d7f5c65b74b706ec8d4558c88a9ce43e79d Mon Sep 17 00:00:00 2001 From: md678685 Date: Wed, 8 May 2019 23:29:28 +0100 Subject: [PATCH 14/37] Fix /kittycannon The most important command of all! (This hasn't been tested with 1.13 or below yet.) --- .../commands/Commandkittycannon.java | 43 ++++++++++++++----- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java b/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java index 77260ee34..5f0ff3604 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java @@ -4,7 +4,11 @@ import com.earth2me.essentials.Mob; import com.earth2me.essentials.User; import org.bukkit.Location; import org.bukkit.Server; +import org.bukkit.World; +import org.bukkit.entity.Cat; +import org.bukkit.entity.Entity; import org.bukkit.entity.Ocelot; +import org.bukkit.entity.Tameable; import java.util.Random; @@ -18,16 +22,7 @@ public class Commandkittycannon extends EssentialsCommand { @Override protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { - final Mob cat = Mob.OCELOT; - final Ocelot ocelot = (Ocelot) cat.spawn(user.getWorld(), server, user.getBase().getEyeLocation()); - if (ocelot == null) { - return; - } - final int i = random.nextInt(Ocelot.Type.values().length); - ocelot.setCatType(Ocelot.Type.values()[i]); - ocelot.setTamed(true); - ocelot.setBaby(); - ocelot.setVelocity(user.getBase().getEyeLocation().getDirection().multiply(2)); + final Entity ocelot = Mob.CAT.getType() == null ? spawnOcelot(user.getWorld(), server, user) : spawnCat(user.getWorld(), server, user); class KittyCannonExplodeTask implements Runnable { @Override @@ -40,4 +35,32 @@ public class Commandkittycannon extends EssentialsCommand { ess.scheduleSyncDelayedTask(new KittyCannonExplodeTask(), 20); } + + private static Ocelot spawnOcelot(World world, Server server, User user) throws Mob.MobException { + final Ocelot ocelot = (Ocelot) Mob.OCELOT.spawn(user.getWorld(), server, user.getBase().getEyeLocation()); + if (ocelot == null) { + return null; + } + final int i = random.nextInt(Ocelot.Type.values().length); + ocelot.setCatType(Ocelot.Type.values()[i]); + ((Tameable) ocelot).setTamed(true); + ocelot.setBaby(); + ocelot.setVelocity(user.getBase().getEyeLocation().getDirection().multiply(2)); + + return ocelot; + } + + private static Entity spawnCat(World world, Server server, User user) throws Mob.MobException { + final Cat cat = (Cat) Mob.CAT.spawn(user.getWorld(), server, user.getBase().getEyeLocation()); + if (cat == null) { + return null; + } + final int i = random.nextInt(Cat.Type.values().length); + cat.setCatType(Cat.Type.values()[i]); + cat.setTamed(true); + cat.setBaby(); + cat.setVelocity(user.getBase().getEyeLocation().getDirection().multiply(2)); + + return cat; + } } From 72ca629cf17f5751d864bb3d51e5995ce3847e73 Mon Sep 17 00:00:00 2001 From: JRoy Date: Wed, 8 May 2019 21:02:21 -0400 Subject: [PATCH 15/37] Add 1.14 Enchantments --- .../com/earth2me/essentials/Enchantments.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/Enchantments.java b/Essentials/src/com/earth2me/essentials/Enchantments.java index 05990f152..3586c6f16 100644 --- a/Essentials/src/com/earth2me/essentials/Enchantments.java +++ b/Essentials/src/com/earth2me/essentials/Enchantments.java @@ -231,6 +231,26 @@ public class Enchantments { } } catch (IllegalArgumentException ignored) {} + + try { // 1.14 + Enchantment multishot = Enchantment.getByName("MULTISHOT"); + if (multishot != null) { + ENCHANTMENTS.put("multishot", multishot); + ALIASENCHANTMENTS.put("tripleshot", multishot); + } + Enchantment quickCharge = Enchantment.getByName("QUICK_CHARGE"); + if (quickCharge != null) { + ENCHANTMENTS.put("quickcharge", quickCharge); + ALIASENCHANTMENTS.put("quickdraw", quickCharge); + ALIASENCHANTMENTS.put("fastcharge", quickCharge); + ALIASENCHANTMENTS.put("fastdraw", quickCharge); + } + Enchantment piercing = Enchantment.getByName("PIERCING"); + if (piercing != null) { + ENCHANTMENTS.put("piercing", piercing); + } + } catch (IllegalArgumentException ignored) {} + try { Class namespacedKeyClass = Class.forName("org.bukkit.NamespacedKey"); Class enchantmentClass = Class.forName("org.bukkit.enchantments.Enchantment"); From 7790f8818be5b375210ddc7db380c6155226d295 Mon Sep 17 00:00:00 2001 From: md678685 Date: Thu, 9 May 2019 15:12:51 +0100 Subject: [PATCH 16/37] Add Villager variants, pt 1 --- .../com/earth2me/essentials/MobCompat.java | 118 ++++++++++++++++-- .../src/com/earth2me/essentials/MobData.java | 31 ++--- 2 files changed, 124 insertions(+), 25 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/MobCompat.java b/Essentials/src/com/earth2me/essentials/MobCompat.java index 09d2c7654..37387ff6c 100644 --- a/Essentials/src/com/earth2me/essentials/MobCompat.java +++ b/Essentials/src/com/earth2me/essentials/MobCompat.java @@ -8,17 +8,11 @@ import org.bukkit.entity.Villager; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; -import java.util.Arrays; public class MobCompat { public static final EntityType CAT = EnumUtil.getEntityType("CAT", "OCELOT"); - private static Class catClass = null; - private static Class catTypeClass = null; - private static Method catSetTypeMethod = null; - private static Boolean isNewCat = null; - public enum CatType { SIAMESE("SIAMESE", "SIAMESE_CAT"), WHITE("WHITE", "SIAMESE_CAT"), @@ -42,6 +36,60 @@ public class MobCompat { } } + public enum VillagerProfession { + NONE("FARMER", "FARMER", "NONE"), + ARMORER("BLACKSMITH", "ARMORER"), + BUTCHER("FARMER", "BUTCHER"), + CARTOGRAPHER("LIBRARIAN", "CARTOGRAPHER"), + CLERIC("PRIEST", "CLERIC"), + FARMER("FARMER", "FARMER"), + FISHERMAN("FARMER", "FISHERMAN"), + FLETCHER("FARMER", "FLETCHER"), + LEATHERWORKER("BUTCHER", "LEATHERWORKER"), + LIBRARIAN("LIBRARIAN", "LIBRARIAN"), + MASON(null, null, "MASON"), + NITWIT("NITWIT", "NITWIT"), + SHEPHERD("FARMER", "SHEPHERD"), + TOOLSMITH("BLACKSMITH", "TOOL_SMITH", "TOOLSMITH"), + WEAPONSMITH("BLACKSMITH", "WEAPON_SMITH", "WEAPONSMITH") + ; + + private String oldProfession; + private String oldCareer; + private String newProfession; + + VillagerProfession(final String oldProfession, final String career) { + this.oldProfession = oldProfession; + this.oldCareer = career; + this.newProfession = career; + } + + VillagerProfession(final String oldProfession, final String oldCareer, final String newProfession) { + this.oldProfession = oldProfession; + this.oldCareer = oldCareer; + this.newProfession = newProfession; + } + + private Villager.Profession asEnum() { + return EnumUtil.valueOf(Villager.Profession.class, newProfession, oldProfession); + } + } + + public enum VillagerType { + DESERT, + JUNGLE, + PLAINS, + SAVANNA, + SNOWY, + SWAMP, + TAIGA + } + + private static Class catClass = null; + private static Class catTypeClass = null; + private static Method catSetTypeMethod = null; + private static Boolean isNewCat = null; + public static void setCatType(final Entity entity, final CatType type) { if (isNewCat == null) { try { @@ -65,10 +113,60 @@ public class MobCompat { } } - private static Villager.Profession getVillagerProfession(String... names) { - // Add nitwit as a default in case we're on older versions - names = Arrays.asList(names, "NITWIT").toArray(new String[0]); - return EnumUtil.valueOf(Villager.Profession.class, names); + private static Boolean isNewVillager = null; + private static Class villagerCareerClass = null; + private static Method villagerSetCareerMethod = null; + private static Class villagerTypeClass = null; + private static Method villagerSetTypeMethod = null; + + + private static void checkVillagerEnums() { + try { + villagerCareerClass = Class.forName("org.bukkit.entity.Villager.Career"); + villagerSetCareerMethod = Villager.class.getDeclaredMethod("setCareer", villagerCareerClass); + isNewVillager = false; + } catch (ClassNotFoundException | NoSuchMethodException e) { + try { + villagerTypeClass = Class.forName("org.bukkit.entity.Villager.Type"); + villagerSetTypeMethod = Villager.class.getDeclaredMethod("setVillagerType", villagerTypeClass); + isNewVillager = true; + } catch (ClassNotFoundException | NoSuchMethodException e1) { + e1.printStackTrace(); + } + } + } + + public static void setVillagerProfession(final Entity entity, final VillagerProfession profession) { + if (isNewVillager == null) { + checkVillagerEnums(); + } + + if (isNewVillager) { + ((Villager) entity).setProfession(profession.asEnum()); + } else { + ((Villager) entity).setProfession(profession.asEnum()); + try { + villagerSetCareerMethod.invoke(entity, EnumUtil.valueOf(villagerCareerClass, profession.oldCareer)); + } catch (IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } + } + + public static void setVillagerType(final Entity entity, final VillagerType type) { + if (isNewVillager == null) { + checkVillagerEnums(); + } + + if (!isNewVillager) { + return; + } + + try { + villagerSetTypeMethod.invoke(entity, EnumUtil.valueOf(villagerTypeClass, type.name())); + } catch (IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } } } diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index 074d648ba..534010ed4 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -91,21 +91,22 @@ public enum MobData { SADDLE_PIG("saddle", EntityType.PIG, Data.PIGSADDLE, true), ANGRY_WOLF("angry", EntityType.WOLF, Data.ANGRY, true), RABID_WOLF("rabid", EntityType.WOLF, Data.ANGRY, false), - VILLAGER("villager", EntityType.VILLAGER, Villager.Profession.NONE, true), - ARMORER_VILLAGER("armorer", EntityType.VILLAGER, Villager.Profession.ARMORER, true), - BUTCHER_VILLAGER("butcher", EntityType.VILLAGER, Villager.Profession.BUTCHER, true), - CARTOGRAPHER_VILLAGER("cartographer", EntityType.VILLAGER, Villager.Profession.CARTOGRAPHER, true), - CLERIC_VILLAGER("cleric", EntityType.VILLAGER, Villager.Profession.CLERIC, true), - FARMER_VILLAGER("farmer", EntityType.VILLAGER, Villager.Profession.FARMER, true), - FISHERMAN_VILLAGER("fisherman", EntityType.VILLAGER, Villager.Profession.FISHERMAN, true), - FLETCHER_VILLAGER("fletcher", EntityType.VILLAGER, Villager.Profession.FLETCHER, true), - LEATHERWORKER_VILLAGER("leatherworker", EntityType.VILLAGER, Villager.Profession.LEATHERWORKER, true), - LIBRARIAN_VILLAGER("librarian", EntityType.VILLAGER, Villager.Profession.LIBRARIAN, true), - MASON_VILLAGER("mason", EntityType.VILLAGER, Villager.Profession.MASON, true), - NITWIT_VILLAGER("nitwit", EntityType.VILLAGER, Villager.Profession.NITWIT, true), - SHEPHERD_VILLAGER("shepherd", EntityType.VILLAGER, Villager.Profession.SHEPHERD, true), - TOOLSMITH_VILLAGER("toolsmith", EntityType.VILLAGER, Villager.Profession.TOOLSMITH, true), - WEAPONSMITH("weaponsmith", EntityType.VILLAGER, Villager.Profession.WEAPONSMITH, true), + VILLAGER("villager", EntityType.VILLAGER, MobCompat.VillagerProfession.NONE, true), + ARMORER_VILLAGER("armorer", EntityType.VILLAGER, MobCompat.VillagerProfession.ARMORER, true), + BUTCHER_VILLAGER("butcher", EntityType.VILLAGER, MobCompat.VillagerProfession.BUTCHER, true), + CARTOGRAPHER_VILLAGER("cartographer", EntityType.VILLAGER, MobCompat.VillagerProfession.CARTOGRAPHER, true), + CLERIC_VILLAGER("cleric", EntityType.VILLAGER, MobCompat.VillagerProfession.CLERIC, true), + FARMER_VILLAGER("farmer", EntityType.VILLAGER, MobCompat.VillagerProfession.FARMER, true), + FISHERMAN_VILLAGER("fisherman", EntityType.VILLAGER, MobCompat.VillagerProfession.FISHERMAN, true), + FLETCHER_VILLAGER("fletcher", EntityType.VILLAGER, MobCompat.VillagerProfession.FLETCHER, true), + LEATHERWORKER_VILLAGER("leatherworker", EntityType.VILLAGER, MobCompat.VillagerProfession.LEATHERWORKER, true), + LIBRARIAN_VILLAGER("librarian", EntityType.VILLAGER, MobCompat.VillagerProfession.LIBRARIAN, true), + MASON_VILLAGER("mason", EntityType.VILLAGER, MobCompat.VillagerProfession.MASON, true), + NITWIT_VILLAGER("nitwit", EntityType.VILLAGER, MobCompat.VillagerProfession.NITWIT, true), + SHEPHERD_VILLAGER("shepherd", EntityType.VILLAGER, MobCompat.VillagerProfession.SHEPHERD, true), + TOOLSMITH_VILLAGER("toolsmith", EntityType.VILLAGER, MobCompat.VillagerProfession.TOOLSMITH, true), + WEAPONSMITH_VILLAGER("weaponsmith", EntityType.VILLAGER, MobCompat.VillagerProfession.WEAPONSMITH, true), + // TODO: VillagerTypes SIZE_SLIME("", "<1-100>", EntityType.SLIME.getEntityClass(), Data.SIZE, true), NUM_EXPERIENCE_ORB("", "<1-2000000000>", EntityType.EXPERIENCE_ORB, Data.EXP, true), RED_PARROT("red", EntityType.PARROT, Parrot.Variant.RED, true), From ccc000a416edcec829fe09d09636f12b8d08f624 Mon Sep 17 00:00:00 2001 From: md678685 Date: Thu, 9 May 2019 22:20:45 +0100 Subject: [PATCH 17/37] Add Villager variants, pt 2 --- .../src/com/earth2me/essentials/MobData.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index 534010ed4..58f5e4a9e 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -106,7 +106,13 @@ public enum MobData { SHEPHERD_VILLAGER("shepherd", EntityType.VILLAGER, MobCompat.VillagerProfession.SHEPHERD, true), TOOLSMITH_VILLAGER("toolsmith", EntityType.VILLAGER, MobCompat.VillagerProfession.TOOLSMITH, true), WEAPONSMITH_VILLAGER("weaponsmith", EntityType.VILLAGER, MobCompat.VillagerProfession.WEAPONSMITH, true), - // TODO: VillagerTypes + DESERT_VILLAGER("desert", EntityType.VILLAGER, MobCompat.VillagerType.DESERT, true), + JUNGLE_VILLAGER("jungle", EntityType.VILLAGER, MobCompat.VillagerType.JUNGLE, true), + PLAINS_VILLAGER("plains", EntityType.VILLAGER, MobCompat.VillagerType.PLAINS, true), + SAVANNA_VILLAGER("savanna", EntityType.VILLAGER, MobCompat.VillagerType.SAVANNA, true), + SNOWY_VILLAGER("snowy", EntityType.VILLAGER, MobCompat.VillagerType.SNOWY, true), + SWAMP_VILLAGER("swamp", EntityType.VILLAGER, MobCompat.VillagerType.SWAMP, true), + TAIGA_VILLAGER("taiga", EntityType.VILLAGER, MobCompat.VillagerType.TAIGA, true), SIZE_SLIME("", "<1-100>", EntityType.SLIME.getEntityClass(), Data.SIZE, true), NUM_EXPERIENCE_ORB("", "<1-2000000000>", EntityType.EXPERIENCE_ORB, Data.EXP, true), RED_PARROT("red", EntityType.PARROT, Parrot.Variant.RED, true), @@ -284,8 +290,10 @@ public enum MobData { ((Horse) spawned).setStyle((Horse.Style) this.value); } else if (this.value instanceof MobCompat.CatType) { MobCompat.setCatType(spawned, (MobCompat.CatType) this.value); - } else if (this.value instanceof Villager.Profession) { - ((Villager) spawned).setProfession((Villager.Profession) this.value); + } else if (this.value instanceof MobCompat.VillagerProfession) { + MobCompat.setVillagerProfession(spawned, (MobCompat.VillagerProfession) this.value); + } else if (this.value instanceof MobCompat.VillagerType) { + MobCompat.setVillagerType(spawned, (MobCompat.VillagerType) this.value); } else if (this.value instanceof Material) { if (this.type.equals(EntityType.HORSE)) { ((Horse) spawned).setTamed(true); From 98cc5b33a333681943beaeb99254c373676ecca6 Mon Sep 17 00:00:00 2001 From: md678685 Date: Sun, 12 May 2019 16:17:00 +0100 Subject: [PATCH 18/37] Update bStats Metrics to latest version Now featuring server brand support! --- .../earth2me/essentials/metrics/Metrics.java | 34 +++++++++++++++---- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java index 2d009d8db..382ca23d1 100644 --- a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java +++ b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java @@ -1,6 +1,8 @@ -package com.earth2me.essentials.metrics; +package org.bstats.bukkit; -import com.google.gson.*; +import com.google.gson.JsonArray; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; import org.bukkit.Bukkit; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.entity.Player; @@ -67,8 +69,6 @@ public class Metrics { // A list with all custom charts private final List charts = new ArrayList<>(); - - private final Gson gson = new Gson(); /** * Class constructor. @@ -190,7 +190,7 @@ public class Metrics { public JsonObject getPluginData() { JsonObject data = new JsonObject(); - String pluginName = plugin.getDescription().getName().replace("Essentials", "EssentialsX"); + String pluginName = plugin.getDescription().getName(); String pluginVersion = plugin.getDescription().getVersion(); data.addProperty("pluginName", pluginName); // Append the name of the plugin @@ -229,6 +229,7 @@ public class Metrics { } int onlineMode = Bukkit.getOnlineMode() ? 1 : 0; String bukkitVersion = Bukkit.getVersion(); + String bukkitName = Bukkit.getName(); // OS/Java specific data String javaVersion = System.getProperty("java.version"); @@ -244,6 +245,7 @@ public class Metrics { data.addProperty("playerAmount", playerAmount); data.addProperty("onlineMode", onlineMode); data.addProperty("bukkitVersion", bukkitVersion); + data.addProperty("bukkitName", bukkitName); data.addProperty("javaVersion", javaVersion); data.addProperty("osName", osName); @@ -268,7 +270,27 @@ public class Metrics { for (RegisteredServiceProvider provider : Bukkit.getServicesManager().getRegistrations(service)) { try { - pluginData.add(gson.toJsonTree(provider.getService().getMethod("getPluginData").invoke(provider.getProvider()))); + Object plugin = provider.getService().getMethod("getPluginData").invoke(provider.getProvider()); + if (plugin instanceof JsonObject) { + pluginData.add((JsonObject) plugin); + } else { // old bstats version compatibility + try { + Class jsonObjectJsonSimple = Class.forName("org.json.simple.JSONObject"); + if (plugin.getClass().isAssignableFrom(jsonObjectJsonSimple)) { + Method jsonStringGetter = jsonObjectJsonSimple.getDeclaredMethod("toJSONString"); + jsonStringGetter.setAccessible(true); + String jsonString = (String) jsonStringGetter.invoke(plugin); + JsonObject object = new JsonParser().parse(jsonString).getAsJsonObject(); + pluginData.add(object); + } + } catch (ClassNotFoundException e) { + // minecraft version 1.14+ + if (logFailedRequests) { + this.plugin.getLogger().log(Level.SEVERE, "Encountered unexpected exception", e); + } + continue; // continue looping since we cannot do any other thing. + } + } } catch (NullPointerException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ignored) { } } } catch (NoSuchFieldException ignored) { } From e59950966f8bac777cf812dfc412d6b135abb104 Mon Sep 17 00:00:00 2001 From: md678685 Date: Mon, 13 May 2019 19:14:01 +0100 Subject: [PATCH 19/37] Fix Metrics package name --- Essentials/src/com/earth2me/essentials/metrics/Metrics.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java index 382ca23d1..6df9b5745 100644 --- a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java +++ b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java @@ -1,4 +1,4 @@ -package org.bstats.bukkit; +package com.earth2me.essentials.metrics; import com.google.gson.JsonArray; import com.google.gson.JsonObject; From 35fc8450402842abf2f302ade22fe926f4ad5888 Mon Sep 17 00:00:00 2001 From: md678685 Date: Mon, 13 May 2019 19:15:33 +0100 Subject: [PATCH 20/37] Fix Metrics plugin name reporting --- Essentials/src/com/earth2me/essentials/metrics/Metrics.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java index 6df9b5745..e146cd953 100644 --- a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java +++ b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java @@ -190,7 +190,7 @@ public class Metrics { public JsonObject getPluginData() { JsonObject data = new JsonObject(); - String pluginName = plugin.getDescription().getName(); + String pluginName = plugin.getDescription().getName().replace("Essentials", "EssentialsX"); String pluginVersion = plugin.getDescription().getVersion(); data.addProperty("pluginName", pluginName); // Append the name of the plugin From 09598d0173573eaa392115460ba5e24e2a25b84b Mon Sep 17 00:00:00 2001 From: Josh Roy <10731363+JRoy@users.noreply.github.com> Date: Tue, 14 May 2019 04:00:22 -0400 Subject: [PATCH 21/37] Update Bukkit to 1.14.1 (#2544) * Update v1_14_1_R01 as latest supported 1.14 build * Bump to API 1.14.1 --- .../src/com/earth2me/essentials/utils/VersionUtil.java | 5 +++-- pom.xml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java index 81b07ffc7..c19455926 100644 --- a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java @@ -21,8 +21,9 @@ public class VersionUtil { public static final BukkitVersion v1_13_0_R01 = BukkitVersion.fromString("1.13.0-R0.1-SNAPSHOT"); public static final BukkitVersion v1_13_2_R01 = BukkitVersion.fromString("1.13.2-R0.1-SNAPSHOT"); public static final BukkitVersion v1_14_R01 = BukkitVersion.fromString("1.14-R0.1-SNAPSHOT"); + public static final BukkitVersion v1_14_1_R01 = BukkitVersion.fromString("1.14.1-R0.1-SNAPSHOT"); - private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_R01); + private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_1_R01); private static BukkitVersion serverVersion = null; @@ -177,4 +178,4 @@ public class VersionUtil { } } } -} \ No newline at end of file +} diff --git a/pom.xml b/pom.xml index df842265f..546ac2439 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ org.bukkit bukkit - 1.14-R0.1-SNAPSHOT + 1.14.1-R0.1-SNAPSHOT provided From 60ebe9e7388544e7bb8391d45bd829fd02ef5b49 Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sat, 18 May 2019 20:56:34 +0100 Subject: [PATCH 22/37] Add llama colour support; improve support for old game versions Fixes issues with /spawnmob on older versions of the game. (Also add llama colours, which were missing from the 1.11 update.) --- .../com/earth2me/essentials/MobCompat.java | 160 +++++++++++------- .../src/com/earth2me/essentials/MobData.java | 121 +++++++------ 2 files changed, 174 insertions(+), 107 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/MobCompat.java b/Essentials/src/com/earth2me/essentials/MobCompat.java index 37387ff6c..665b28674 100644 --- a/Essentials/src/com/earth2me/essentials/MobCompat.java +++ b/Essentials/src/com/earth2me/essentials/MobCompat.java @@ -1,6 +1,7 @@ package com.earth2me.essentials; import com.earth2me.essentials.utils.EnumUtil; +import net.ess3.nms.refl.ReflUtil; import org.bukkit.entity.Entity; import org.bukkit.entity.EntityType; import org.bukkit.entity.Ocelot; @@ -14,6 +15,7 @@ public class MobCompat { public static final EntityType CAT = EnumUtil.getEntityType("CAT", "OCELOT"); public enum CatType { + // These are (loosely) Mojang names for the cats SIAMESE("SIAMESE", "SIAMESE_CAT"), WHITE("WHITE", "SIAMESE_CAT"), RED("RED", "RED_CAT"), @@ -37,6 +39,7 @@ public class MobCompat { } public enum VillagerProfession { + // These are 1.14+ villager professions mapped to their respective pre-V&P profession and career NONE("FARMER", "FARMER", "NONE"), ARMORER("BLACKSMITH", "ARMORER"), BUTCHER("FARMER", "BUTCHER"), @@ -75,34 +78,17 @@ public class MobCompat { } } - public enum VillagerType { - DESERT, - JUNGLE, - PLAINS, - SAVANNA, - SNOWY, - SWAMP, - TAIGA + // Older cats are Ocelots, whereas 1.14+ cats are Cats + private static Class catClass = ReflUtil.getClassCached("org.bukkit.entity.Cat"); + private static Class catTypeClass = ReflUtil.getClassCached("org.bukkit.entity.Cat.Type"); + private static Method catSetTypeMethod = (catClass == null || catTypeClass == null) ? null : ReflUtil.getMethodCached(catClass, "setCatType", catTypeClass); + + private static boolean isNewCat() { + return (catClass != null && catTypeClass != null && catSetTypeMethod != null); } - private static Class catClass = null; - private static Class catTypeClass = null; - private static Method catSetTypeMethod = null; - private static Boolean isNewCat = null; - public static void setCatType(final Entity entity, final CatType type) { - if (isNewCat == null) { - try { - catClass = Class.forName("org.bukkit.entity.Cat"); - catTypeClass = Class.forName("org.bukkit.entity.Cat.Type"); - catSetTypeMethod = catClass.getDeclaredMethod("setCatType", catTypeClass); - isNewCat = true; - } catch (ClassNotFoundException | NoSuchMethodException e) { - isNewCat = false; - } - } - - if (isNewCat) { + if (isNewCat()) { try { catSetTypeMethod.invoke(entity, EnumUtil.valueOf(catTypeClass, type.catTypeName)); } catch (IllegalAccessException | InvocationTargetException e) { @@ -113,58 +99,114 @@ public class MobCompat { } } - private static Boolean isNewVillager = null; - private static Class villagerCareerClass = null; - private static Method villagerSetCareerMethod = null; - private static Class villagerTypeClass = null; - private static Method villagerSetTypeMethod = null; + // Older villagers have professions and careers, 1.14+ villagers only have professions + private static Class villagerCareerClass = ReflUtil.getClassCached("org.bukkit.entity.Villager.Career"); + private static Method villagerSetCareerMethod = (villagerCareerClass == null) ? null : ReflUtil.getMethodCached(Villager.class, "setCareer", villagerCareerClass); - - private static void checkVillagerEnums() { - try { - villagerCareerClass = Class.forName("org.bukkit.entity.Villager.Career"); - villagerSetCareerMethod = Villager.class.getDeclaredMethod("setCareer", villagerCareerClass); - isNewVillager = false; - } catch (ClassNotFoundException | NoSuchMethodException e) { - try { - villagerTypeClass = Class.forName("org.bukkit.entity.Villager.Type"); - villagerSetTypeMethod = Villager.class.getDeclaredMethod("setVillagerType", villagerTypeClass); - isNewVillager = true; - } catch (ClassNotFoundException | NoSuchMethodException e1) { - e1.printStackTrace(); - } - } + private static boolean isCareerVillager() { + return (villagerCareerClass != null && villagerSetCareerMethod != null); } public static void setVillagerProfession(final Entity entity, final VillagerProfession profession) { - if (isNewVillager == null) { - checkVillagerEnums(); - } - - if (isNewVillager) { + if (!isCareerVillager()) { ((Villager) entity).setProfession(profession.asEnum()); } else { ((Villager) entity).setProfession(profession.asEnum()); try { villagerSetCareerMethod.invoke(entity, EnumUtil.valueOf(villagerCareerClass, profession.oldCareer)); - } catch (IllegalAccessException | InvocationTargetException e) { + } catch (Exception e) { e.printStackTrace(); } } } - public static void setVillagerType(final Entity entity, final VillagerType type) { - if (isNewVillager == null) { - checkVillagerEnums(); - } + // Only 1.14+ villagers have biome variants + public static void setVillagerType(final Entity entity, final String type) { + Class typeEnum = ReflUtil.getClassCached("org.bukkit.entity.Villager.Type"); + if (typeEnum == null) return; - if (!isNewVillager) { - return; + Method villagerSetTypeMethod = ReflUtil.getMethodCached(Villager.class, "setVillagerType", typeEnum); + try { + villagerSetTypeMethod.invoke(entity, EnumUtil.valueOf(typeEnum, type)); + } catch (Exception e) { + e.printStackTrace(); + } + } + + // Llamas only exist in 1.11+ + public static void setLlamaColor(final Entity entity, final String color) { + Class llamaClass = ReflUtil.getClassCached("org.bukkit.entity.Llama"); + if (llamaClass == null) return; + + Class colorEnum = ReflUtil.getClassCached("org.bukkit.entity.Llama.Color"); + Method setVariantMethod = ReflUtil.getMethodCached(llamaClass, "setColor"); + + try { + setVariantMethod.invoke(entity, EnumUtil.valueOf(colorEnum, color)); + } catch (Exception e) { + e.printStackTrace(); + } + } + + // Parrots only exist in 1.12+ + public static void setParrotVariant(final Entity entity, final String variant) { + Class parrotClass = ReflUtil.getClassCached("org.bukkit.entity.Parrot"); + if (parrotClass == null) return; + + Class variantEnum = ReflUtil.getClassCached("org.bukkit.entity.Parrot.Variant"); + Method setVariantMethod = ReflUtil.getMethodCached(parrotClass, "setVariant"); + try { + setVariantMethod.invoke(entity, EnumUtil.valueOf(variantEnum, variant)); + } catch (Exception e) { + e.printStackTrace(); + } + } + + // Tropical fish only exist in 1.13+ + public static void setTropicalFishPattern(final Entity entity, final String pattern) { + Class tropicalFishClass = ReflUtil.getClassCached("org.bukkit.entity.TropicalFish"); + if (tropicalFishClass == null) return; + + Class patternEnum = ReflUtil.getClassCached("org.bukkit.entity.TropicalFish.Pattern"); + Method setPatternMethod = ReflUtil.getMethodCached(tropicalFishClass, "setPattern"); + try { + setPatternMethod.invoke(entity, EnumUtil.valueOf(patternEnum, pattern)); + } catch (Exception e) { + e.printStackTrace(); + } + } + + // Mushroom cow variant API only exists in 1.14+ + public static void setMooshroomVariant(final Entity entity, final String variant) { + Class mushroomCowClass = ReflUtil.getClassCached("org.bukkit.entity.MushroomCow"); + Class variantEnum = ReflUtil.getClassCached("org.bukkit.entity.MushroomCow.Variant"); + if (mushroomCowClass == null || variantEnum == null) return; + + Method setVariantMethod = ReflUtil.getMethodCached(mushroomCowClass, "setVariant"); + try { + setVariantMethod.invoke(entity, EnumUtil.valueOf(variantEnum, variant)); + } catch (Exception e) { + e.printStackTrace(); + } + } + + // Pandas only exists in 1.14+ + public static void setPandaGene(final Entity entity, final String gene, final boolean mainGene) { + Class pandaClass = ReflUtil.getClassCached("org.bukkit.entity.Panda"); + if (pandaClass == null) return; + + Class geneEnum = ReflUtil.getClassCached("org.bukkit.entity.Panda.Gene"); + Method setGeneMethod; + + if (mainGene) { + setGeneMethod = ReflUtil.getMethodCached(pandaClass, "setMainGene"); + } else { + setGeneMethod = ReflUtil.getMethodCached(pandaClass, "setHiddenGene"); } try { - villagerSetTypeMethod.invoke(entity, EnumUtil.valueOf(villagerTypeClass, type.name())); - } catch (IllegalAccessException | InvocationTargetException e) { + setGeneMethod.invoke(entity, EnumUtil.valueOf(geneEnum, gene)); + } catch (Exception e) { e.printStackTrace(); } } diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index 58f5e4a9e..79dd7df86 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -106,44 +106,54 @@ public enum MobData { SHEPHERD_VILLAGER("shepherd", EntityType.VILLAGER, MobCompat.VillagerProfession.SHEPHERD, true), TOOLSMITH_VILLAGER("toolsmith", EntityType.VILLAGER, MobCompat.VillagerProfession.TOOLSMITH, true), WEAPONSMITH_VILLAGER("weaponsmith", EntityType.VILLAGER, MobCompat.VillagerProfession.WEAPONSMITH, true), - DESERT_VILLAGER("desert", EntityType.VILLAGER, MobCompat.VillagerType.DESERT, true), - JUNGLE_VILLAGER("jungle", EntityType.VILLAGER, MobCompat.VillagerType.JUNGLE, true), - PLAINS_VILLAGER("plains", EntityType.VILLAGER, MobCompat.VillagerType.PLAINS, true), - SAVANNA_VILLAGER("savanna", EntityType.VILLAGER, MobCompat.VillagerType.SAVANNA, true), - SNOWY_VILLAGER("snowy", EntityType.VILLAGER, MobCompat.VillagerType.SNOWY, true), - SWAMP_VILLAGER("swamp", EntityType.VILLAGER, MobCompat.VillagerType.SWAMP, true), - TAIGA_VILLAGER("taiga", EntityType.VILLAGER, MobCompat.VillagerType.TAIGA, true), + DESERT_VILLAGER("desert", EntityType.VILLAGER, "villagertype:DESERT", true), + JUNGLE_VILLAGER("jungle", EntityType.VILLAGER, "villagertype:JUNGLE", true), + PLAINS_VILLAGER("plains", EntityType.VILLAGER, "villagertype:PLAINS", true), + SAVANNA_VILLAGER("savanna", EntityType.VILLAGER, "villagertype:SAVANNA", true), + SNOWY_VILLAGER("snowy", EntityType.VILLAGER, "villagertype:SNOWY", true), + SWAMP_VILLAGER("swamp", EntityType.VILLAGER, "villagertype:SWAMP", true), + TAIGA_VILLAGER("taiga", EntityType.VILLAGER, "villagertype:TAIGA", true), SIZE_SLIME("", "<1-100>", EntityType.SLIME.getEntityClass(), Data.SIZE, true), NUM_EXPERIENCE_ORB("", "<1-2000000000>", EntityType.EXPERIENCE_ORB, Data.EXP, true), - RED_PARROT("red", EntityType.PARROT, Parrot.Variant.RED, true), - GREEN_PARROT("green", EntityType.PARROT, Parrot.Variant.GREEN, true), - BLUE_PARROT("blue", EntityType.PARROT, Parrot.Variant.BLUE, true), - CYAN_PARROT("cyan", EntityType.PARROT, Parrot.Variant.CYAN, true), - GRAY_PARROT("gray", EntityType.PARROT, Parrot.Variant.GRAY, true), - KOB_TROPICAL_FISH("kob", EntityType.TROPICAL_FISH, TropicalFish.Pattern.KOB, true), - SUNSTREAK_TROPICAL_FISH("sunstreak", EntityType.TROPICAL_FISH, TropicalFish.Pattern.SUNSTREAK, true), - SNOOPER_TROPICAL_FISH("snooper", EntityType.TROPICAL_FISH, TropicalFish.Pattern.SNOOPER, true), - DASHER_TROPICAL_FISH("dasher", EntityType.TROPICAL_FISH, TropicalFish.Pattern.DASHER, true), - BRINELY_TROPICAL_FISH("brinely", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BRINELY, true), - SPOTTY_TROPICAL_FISH("spotty", EntityType.TROPICAL_FISH, TropicalFish.Pattern.SPOTTY, true), - FLOPPER_TROPICAL_FISH("flopper", EntityType.TROPICAL_FISH, TropicalFish.Pattern.FLOPPER, true), - STRIPEY_TROPICAL_FISH("stripey", EntityType.TROPICAL_FISH, TropicalFish.Pattern.STRIPEY, true), - GLITTER_TROPICAL_FISH("glitter", EntityType.TROPICAL_FISH, TropicalFish.Pattern.GLITTER, true), - BLOCKFISH_TROPICAL_FISH("blockfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BLOCKFISH, true), - BETTY_TROPICAL_FISH("betty", EntityType.TROPICAL_FISH, TropicalFish.Pattern.BETTY, true), - CLAYFISH_TROPICAL_FISH("clayfish", EntityType.TROPICAL_FISH, TropicalFish.Pattern.CLAYFISH, true), - BROWN_MUSHROOM_COW("brown", EntityType.MUSHROOM_COW, MushroomCow.Variant.BROWN, true), - RED_MUSHROOM_COW("red", EntityType.MUSHROOM_COW, MushroomCow.Variant.RED, true), - AGGRESSIVE_PANDA("aggressive", EntityType.PANDA, Panda.Gene.AGGRESSIVE, true), - LAZY_PANDA("lazy", EntityType.PANDA, Panda.Gene.LAZY, true), - WORRIED_PANDA("worried", EntityType.PANDA, Panda.Gene.WORRIED, true), - PLAYFUL_PANDA("playful", EntityType.PANDA, Panda.Gene.PLAYFUL, true), - BROWN_PANDA("brown", EntityType.PANDA, Panda.Gene.BROWN, true), - WEAK_PANDA("weak", EntityType.PANDA, Panda.Gene.WEAK, true), - CREAMY_TRADER_LLAMA("creamy", EntityType.TRADER_LLAMA, TraderLlama.Color.CREAMY, true), - WHITE_TRADER_LLAMA("white", EntityType.TRADER_LLAMA, TraderLlama.Color.WHITE, true), - BROWN_TRADER_LLAMA("brown", EntityType.TRADER_LLAMA, TraderLlama.Color.BROWN, true), - GRAY_TRADER_LLAMA("gray", EntityType.TRADER_LLAMA, TraderLlama.Color.GRAY, true) + RED_PARROT("red", EntityType.PARROT, "parrot:RED", true), + GREEN_PARROT("green", EntityType.PARROT, "parrot:GREEN", true), + BLUE_PARROT("blue", EntityType.PARROT, "parrot:BLUE", true), + CYAN_PARROT("cyan", EntityType.PARROT, "parrot:CYAN", true), + GRAY_PARROT("gray", EntityType.PARROT, "parrot:GRAY", true), + KOB_TROPICAL_FISH("kob", EntityType.TROPICAL_FISH, "tropicalfish:KOB", true), + SUNSTREAK_TROPICAL_FISH("sunstreak", EntityType.TROPICAL_FISH, "tropicalfish:SUNSTREAK", true), + SNOOPER_TROPICAL_FISH("snooper", EntityType.TROPICAL_FISH, "tropicalfish:SNOOPER", true), + DASHER_TROPICAL_FISH("dasher", EntityType.TROPICAL_FISH, "tropicalfish:DASHER", true), + BRINELY_TROPICAL_FISH("brinely", EntityType.TROPICAL_FISH, "tropicalfish:BRINELY", true), + SPOTTY_TROPICAL_FISH("spotty", EntityType.TROPICAL_FISH, "tropicalfish:SPOTTY", true), + FLOPPER_TROPICAL_FISH("flopper", EntityType.TROPICAL_FISH, "tropicalfish:FLOPPER", true), + STRIPEY_TROPICAL_FISH("stripey", EntityType.TROPICAL_FISH, "tropicalfish:STRIPEY", true), + GLITTER_TROPICAL_FISH("glitter", EntityType.TROPICAL_FISH, "tropicalfish:GLITTER", true), + BLOCKFISH_TROPICAL_FISH("blockfish", EntityType.TROPICAL_FISH, "tropicalfish:BLOCKFISH", true), + BETTY_TROPICAL_FISH("betty", EntityType.TROPICAL_FISH, "tropicalfish:BETTY", true), + CLAYFISH_TROPICAL_FISH("clayfish", EntityType.TROPICAL_FISH, "tropicalfish:CLAYFISH", true), + BROWN_MUSHROOM_COW("brown", EntityType.MUSHROOM_COW, "mooshroom:BROWN", true), + RED_MUSHROOM_COW("red", EntityType.MUSHROOM_COW, "mooshroom:RED", true), + AGGRESSIVE_PANDA_MAIN("aggressive", EntityType.PANDA, "pandamain:AGGRESSIVE", true), + LAZY_PANDA_MAIN("lazy", EntityType.PANDA, "pandamain:LAZY", true), + WORRIED_PANDA_MAIN("worried", EntityType.PANDA, "pandamain:WORRIED", true), + PLAYFUL_PANDA_MAIN("playful", EntityType.PANDA, "pandamain:PLAYFUL", true), + BROWN_PANDA_MAIN("brown", EntityType.PANDA, "pandamain:BROWN", true), + WEAK_PANDA_MAIN("weak", EntityType.PANDA, "pandamain:WEAK", true), + AGGRESSIVE_PANDA_HIDDEN("aggressive_hidden", EntityType.PANDA, "pandahidden:AGGRESSIVE", true), + LAZY_PANDA_HIDDEN("lazy_hidden", EntityType.PANDA, "pandahidden:LAZY", true), + WORRIED_PANDA_HIDDEN("worried_hidden", EntityType.PANDA, "pandahidden:WORRIED", true), + PLAYFUL_PANDA_HIDDEN("playful_hidden", EntityType.PANDA, "pandahidden:PLAYFUL", true), + BROWN_PANDA_HIDDEN("brown_hidden", EntityType.PANDA, "pandahidden:BROWN", true), + WEAK_PANDA_HIDDEN("weak_hidden", EntityType.PANDA, "pandahidden:WEAK", true), + CREAMY_LLAMA("creamy", EntityType.LLAMA, "llama:CREAMY", true), + WHITE_LLAMA("white", EntityType.LLAMA, "llama:WHITE", true), + BROWN_LLAMA("brown", EntityType.LLAMA, "llama:BROWN", true), + GRAY_LLAMA("gray", EntityType.LLAMA, "llama:GRAY", true), + CREAMY_TRADER_LLAMA("creamy", EntityType.TRADER_LLAMA, "llama:CREAMY", true), + WHITE_TRADER_LLAMA("white", EntityType.TRADER_LLAMA, "llama:WHITE", true), + BROWN_TRADER_LLAMA("brown", EntityType.TRADER_LLAMA, "llama:BROWN", true), + GRAY_TRADER_LLAMA("gray", EntityType.TRADER_LLAMA, "llama:GRAY", true) ; @@ -292,8 +302,6 @@ public enum MobData { MobCompat.setCatType(spawned, (MobCompat.CatType) this.value); } else if (this.value instanceof MobCompat.VillagerProfession) { MobCompat.setVillagerProfession(spawned, (MobCompat.VillagerProfession) this.value); - } else if (this.value instanceof MobCompat.VillagerType) { - MobCompat.setVillagerType(spawned, (MobCompat.VillagerType) this.value); } else if (this.value instanceof Material) { if (this.type.equals(EntityType.HORSE)) { ((Horse) spawned).setTamed(true); @@ -303,16 +311,33 @@ public enum MobData { InventoryWorkaround.setItemInMainHand(invent, new ItemStack((Material) this.value, 1)); InventoryWorkaround.setItemInMainHandDropChance(invent, 0.1f); } - } else if (this.value instanceof Parrot.Variant) { // TODO: MobCompat - ((Parrot) spawned).setVariant((Parrot.Variant) this.value); - } else if (this.value instanceof TropicalFish.Pattern) { // TODO: MobCompat - ((TropicalFish) spawned).setPattern((TropicalFish.Pattern) this.value); - } else if (this.value instanceof MushroomCow.Variant) { // TODO: MobCompat - ((MushroomCow) spawned).setVariant((MushroomCow.Variant) this.value); - } else if (this.value instanceof Panda.Gene) { // TODO: MobCompat - ((Panda) spawned).setMainGene((Panda.Gene) this.value); - } else if (this.value instanceof TraderLlama.Color) { // TODO: MobCompat - ((TraderLlama) spawned).setColor((TraderLlama.Color) this.value); + } else if (this.value instanceof String) { + final String[] split = ((String) this.value).split(":"); + switch (split[0]) { + case "parrot": + MobCompat.setParrotVariant(spawned, split[1]); + break; + case "tropicalfish": + MobCompat.setTropicalFishPattern(spawned, split[1]); + break; + case "mooshroom": + MobCompat.setMooshroomVariant(spawned, split[1]); + break; + case "pandamain": + MobCompat.setPandaGene(spawned, split[1], true); + break; + case "pandahidden": + MobCompat.setPandaGene(spawned, split[1], false); + break; + case "llama": + MobCompat.setLlamaColor(spawned, split[1]); + break; + case "villagertype": + MobCompat.setVillagerType(spawned, split[1]); + break; + } + } else { + logger.warning("Unknown mob data type: " + this.toString()); } } } From 7cc4dc2f07e6337ce73340e6758386ca209ca9fa Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sat, 18 May 2019 20:56:57 +0100 Subject: [PATCH 23/37] Make AfkStatusChangeEvent async --- Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java index 1fa99e3f6..44d66c528 100644 --- a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java +++ b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java @@ -5,6 +5,6 @@ import net.ess3.api.IUser; public class AfkStatusChangeEvent extends StatusChangeEvent { public AfkStatusChangeEvent(IUser affected, boolean value) { - super(affected, affected, value); + super(true, affected, affected, value); } } From 5f0909047d51c6c36b9f4a9bd702e919dee9687b Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sat, 18 May 2019 22:45:43 +0100 Subject: [PATCH 24/37] Use MobCompat.CAT throughout MobData --- Essentials/src/com/earth2me/essentials/MobData.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index 79dd7df86..64669ee65 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -66,12 +66,12 @@ public enum MobData { TABBY_CAT("tabby", MobCompat.CAT, MobCompat.CatType.TABBY, true), BLACK_CAT("black", MobCompat.CAT, MobCompat.CatType.BLACK, true), TUXEDO_CAT("tuxedo", MobCompat.CAT, MobCompat.CatType.TUXEDO, true), - BRITISH_SHORTHAIR_CAT("britishshorthair", EntityType.CAT, MobCompat.CatType.BRITISH_SHORTHAIR, true), - CALICO_CAT("calico", EntityType.CAT, MobCompat.CatType.CALICO, true), - PERSIAN_CAT("persian", EntityType.CAT, MobCompat.CatType.PERSIAN, true), - RAGDOLL_CAT("ragdoll", EntityType.CAT, MobCompat.CatType.RAGDOLL, true), - JELLIE_CAT("jellie", EntityType.CAT, MobCompat.CatType.JELLIE, true), - ALL_BLACK_CAT("allblack", EntityType.CAT, MobCompat.CatType.BLACK, true), + BRITISH_SHORTHAIR_CAT("britishshorthair", MobCompat.CAT, MobCompat.CatType.BRITISH_SHORTHAIR, true), + CALICO_CAT("calico", MobCompat.CAT, MobCompat.CatType.CALICO, true), + PERSIAN_CAT("persian", MobCompat.CAT, MobCompat.CatType.PERSIAN, true), + RAGDOLL_CAT("ragdoll", MobCompat.CAT, MobCompat.CatType.RAGDOLL, true), + JELLIE_CAT("jellie", MobCompat.CAT, MobCompat.CatType.JELLIE, true), + ALL_BLACK_CAT("allblack", MobCompat.CAT, MobCompat.CatType.BLACK, true), BABY_ZOMBIE("baby", EntityType.ZOMBIE.getEntityClass(), Data.BABYZOMBIE, true), ADULT_ZOMBIE("adult", EntityType.ZOMBIE.getEntityClass(), Data.ADULTZOMBIE, true), DIAMOND_SWORD_ZOMBIE("diamondsword", EntityType.ZOMBIE.getEntityClass(), Material.DIAMOND_SWORD, true), From f22efce3ca7fcd3eb36bd47872e5e6b9ec4defdd Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sat, 18 May 2019 23:51:11 +0100 Subject: [PATCH 25/37] Use MobCompat entries for other 1.11+ mobs --- .../com/earth2me/essentials/MobCompat.java | 12 ++- .../src/com/earth2me/essentials/MobData.java | 80 ++++++++++--------- 2 files changed, 52 insertions(+), 40 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/MobCompat.java b/Essentials/src/com/earth2me/essentials/MobCompat.java index 665b28674..c9b265a77 100644 --- a/Essentials/src/com/earth2me/essentials/MobCompat.java +++ b/Essentials/src/com/earth2me/essentials/MobCompat.java @@ -10,9 +10,19 @@ import org.bukkit.entity.Villager; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; +import static com.earth2me.essentials.utils.EnumUtil.getEntityType; + public class MobCompat { - public static final EntityType CAT = EnumUtil.getEntityType("CAT", "OCELOT"); + // Constants for mobs added in later versions + public static final EntityType LLAMA = getEntityType("LLAMA"); + public static final EntityType PARROT = getEntityType("PARROT"); + public static final EntityType TROPICAL_FISH = getEntityType("TROPICAL_FISH"); + public static final EntityType PANDA = getEntityType("PANDA"); + public static final EntityType TRADER_LLAMA = getEntityType("TRADER_LLAMA"); + + // Constants for mobs that have changed since earlier versions + public static final EntityType CAT = getEntityType("CAT", "OCELOT"); public enum CatType { // These are (loosely) Mojang names for the cats diff --git a/Essentials/src/com/earth2me/essentials/MobData.java b/Essentials/src/com/earth2me/essentials/MobData.java index 64669ee65..82a4ca8a0 100644 --- a/Essentials/src/com/earth2me/essentials/MobData.java +++ b/Essentials/src/com/earth2me/essentials/MobData.java @@ -115,45 +115,45 @@ public enum MobData { TAIGA_VILLAGER("taiga", EntityType.VILLAGER, "villagertype:TAIGA", true), SIZE_SLIME("", "<1-100>", EntityType.SLIME.getEntityClass(), Data.SIZE, true), NUM_EXPERIENCE_ORB("", "<1-2000000000>", EntityType.EXPERIENCE_ORB, Data.EXP, true), - RED_PARROT("red", EntityType.PARROT, "parrot:RED", true), - GREEN_PARROT("green", EntityType.PARROT, "parrot:GREEN", true), - BLUE_PARROT("blue", EntityType.PARROT, "parrot:BLUE", true), - CYAN_PARROT("cyan", EntityType.PARROT, "parrot:CYAN", true), - GRAY_PARROT("gray", EntityType.PARROT, "parrot:GRAY", true), - KOB_TROPICAL_FISH("kob", EntityType.TROPICAL_FISH, "tropicalfish:KOB", true), - SUNSTREAK_TROPICAL_FISH("sunstreak", EntityType.TROPICAL_FISH, "tropicalfish:SUNSTREAK", true), - SNOOPER_TROPICAL_FISH("snooper", EntityType.TROPICAL_FISH, "tropicalfish:SNOOPER", true), - DASHER_TROPICAL_FISH("dasher", EntityType.TROPICAL_FISH, "tropicalfish:DASHER", true), - BRINELY_TROPICAL_FISH("brinely", EntityType.TROPICAL_FISH, "tropicalfish:BRINELY", true), - SPOTTY_TROPICAL_FISH("spotty", EntityType.TROPICAL_FISH, "tropicalfish:SPOTTY", true), - FLOPPER_TROPICAL_FISH("flopper", EntityType.TROPICAL_FISH, "tropicalfish:FLOPPER", true), - STRIPEY_TROPICAL_FISH("stripey", EntityType.TROPICAL_FISH, "tropicalfish:STRIPEY", true), - GLITTER_TROPICAL_FISH("glitter", EntityType.TROPICAL_FISH, "tropicalfish:GLITTER", true), - BLOCKFISH_TROPICAL_FISH("blockfish", EntityType.TROPICAL_FISH, "tropicalfish:BLOCKFISH", true), - BETTY_TROPICAL_FISH("betty", EntityType.TROPICAL_FISH, "tropicalfish:BETTY", true), - CLAYFISH_TROPICAL_FISH("clayfish", EntityType.TROPICAL_FISH, "tropicalfish:CLAYFISH", true), + RED_PARROT("red", MobCompat.PARROT, "parrot:RED", true), + GREEN_PARROT("green", MobCompat.PARROT, "parrot:GREEN", true), + BLUE_PARROT("blue", MobCompat.PARROT, "parrot:BLUE", true), + CYAN_PARROT("cyan", MobCompat.PARROT, "parrot:CYAN", true), + GRAY_PARROT("gray", MobCompat.PARROT, "parrot:GRAY", true), + KOB_TROPICAL_FISH("kob", MobCompat.TROPICAL_FISH, "tropicalfish:KOB", true), + SUNSTREAK_TROPICAL_FISH("sunstreak", MobCompat.TROPICAL_FISH, "tropicalfish:SUNSTREAK", true), + SNOOPER_TROPICAL_FISH("snooper", MobCompat.TROPICAL_FISH, "tropicalfish:SNOOPER", true), + DASHER_TROPICAL_FISH("dasher", MobCompat.TROPICAL_FISH, "tropicalfish:DASHER", true), + BRINELY_TROPICAL_FISH("brinely", MobCompat.TROPICAL_FISH, "tropicalfish:BRINELY", true), + SPOTTY_TROPICAL_FISH("spotty", MobCompat.TROPICAL_FISH, "tropicalfish:SPOTTY", true), + FLOPPER_TROPICAL_FISH("flopper", MobCompat.TROPICAL_FISH, "tropicalfish:FLOPPER", true), + STRIPEY_TROPICAL_FISH("stripey", MobCompat.TROPICAL_FISH, "tropicalfish:STRIPEY", true), + GLITTER_TROPICAL_FISH("glitter", MobCompat.TROPICAL_FISH, "tropicalfish:GLITTER", true), + BLOCKFISH_TROPICAL_FISH("blockfish", MobCompat.TROPICAL_FISH, "tropicalfish:BLOCKFISH", true), + BETTY_TROPICAL_FISH("betty", MobCompat.TROPICAL_FISH, "tropicalfish:BETTY", true), + CLAYFISH_TROPICAL_FISH("clayfish", MobCompat.TROPICAL_FISH, "tropicalfish:CLAYFISH", true), BROWN_MUSHROOM_COW("brown", EntityType.MUSHROOM_COW, "mooshroom:BROWN", true), RED_MUSHROOM_COW("red", EntityType.MUSHROOM_COW, "mooshroom:RED", true), - AGGRESSIVE_PANDA_MAIN("aggressive", EntityType.PANDA, "pandamain:AGGRESSIVE", true), - LAZY_PANDA_MAIN("lazy", EntityType.PANDA, "pandamain:LAZY", true), - WORRIED_PANDA_MAIN("worried", EntityType.PANDA, "pandamain:WORRIED", true), - PLAYFUL_PANDA_MAIN("playful", EntityType.PANDA, "pandamain:PLAYFUL", true), - BROWN_PANDA_MAIN("brown", EntityType.PANDA, "pandamain:BROWN", true), - WEAK_PANDA_MAIN("weak", EntityType.PANDA, "pandamain:WEAK", true), - AGGRESSIVE_PANDA_HIDDEN("aggressive_hidden", EntityType.PANDA, "pandahidden:AGGRESSIVE", true), - LAZY_PANDA_HIDDEN("lazy_hidden", EntityType.PANDA, "pandahidden:LAZY", true), - WORRIED_PANDA_HIDDEN("worried_hidden", EntityType.PANDA, "pandahidden:WORRIED", true), - PLAYFUL_PANDA_HIDDEN("playful_hidden", EntityType.PANDA, "pandahidden:PLAYFUL", true), - BROWN_PANDA_HIDDEN("brown_hidden", EntityType.PANDA, "pandahidden:BROWN", true), - WEAK_PANDA_HIDDEN("weak_hidden", EntityType.PANDA, "pandahidden:WEAK", true), - CREAMY_LLAMA("creamy", EntityType.LLAMA, "llama:CREAMY", true), - WHITE_LLAMA("white", EntityType.LLAMA, "llama:WHITE", true), - BROWN_LLAMA("brown", EntityType.LLAMA, "llama:BROWN", true), - GRAY_LLAMA("gray", EntityType.LLAMA, "llama:GRAY", true), - CREAMY_TRADER_LLAMA("creamy", EntityType.TRADER_LLAMA, "llama:CREAMY", true), - WHITE_TRADER_LLAMA("white", EntityType.TRADER_LLAMA, "llama:WHITE", true), - BROWN_TRADER_LLAMA("brown", EntityType.TRADER_LLAMA, "llama:BROWN", true), - GRAY_TRADER_LLAMA("gray", EntityType.TRADER_LLAMA, "llama:GRAY", true) + AGGRESSIVE_PANDA_MAIN("aggressive", MobCompat.PANDA, "pandamain:AGGRESSIVE", true), + LAZY_PANDA_MAIN("lazy", MobCompat.PANDA, "pandamain:LAZY", true), + WORRIED_PANDA_MAIN("worried", MobCompat.PANDA, "pandamain:WORRIED", true), + PLAYFUL_PANDA_MAIN("playful", MobCompat.PANDA, "pandamain:PLAYFUL", true), + BROWN_PANDA_MAIN("brown", MobCompat.PANDA, "pandamain:BROWN", true), + WEAK_PANDA_MAIN("weak", MobCompat.PANDA, "pandamain:WEAK", true), + AGGRESSIVE_PANDA_HIDDEN("aggressive_hidden", MobCompat.PANDA, "pandahidden:AGGRESSIVE", true), + LAZY_PANDA_HIDDEN("lazy_hidden", MobCompat.PANDA, "pandahidden:LAZY", true), + WORRIED_PANDA_HIDDEN("worried_hidden", MobCompat.PANDA, "pandahidden:WORRIED", true), + PLAYFUL_PANDA_HIDDEN("playful_hidden", MobCompat.PANDA, "pandahidden:PLAYFUL", true), + BROWN_PANDA_HIDDEN("brown_hidden", MobCompat.PANDA, "pandahidden:BROWN", true), + WEAK_PANDA_HIDDEN("weak_hidden", MobCompat.PANDA, "pandahidden:WEAK", true), + CREAMY_LLAMA("creamy", MobCompat.LLAMA, "llama:CREAMY", true), + WHITE_LLAMA("white", MobCompat.LLAMA, "llama:WHITE", true), + BROWN_LLAMA("brown", MobCompat.LLAMA, "llama:BROWN", true), + GRAY_LLAMA("gray", MobCompat.LLAMA, "llama:GRAY", true), + CREAMY_TRADER_LLAMA("creamy", MobCompat.TRADER_LLAMA, "llama:CREAMY", true), + WHITE_TRADER_LLAMA("white", MobCompat.TRADER_LLAMA, "llama:WHITE", true), + BROWN_TRADER_LLAMA("brown", MobCompat.TRADER_LLAMA, "llama:BROWN", true), + GRAY_TRADER_LLAMA("gray", MobCompat.TRADER_LLAMA, "llama:GRAY", true) ; @@ -205,9 +205,11 @@ public enum MobData { public static LinkedHashMap getPossibleData(final Entity spawned, boolean publicOnly) { LinkedHashMap mobList = new LinkedHashMap(); for (MobData data : MobData.values()) { - if (data.type instanceof EntityType && spawned.getType().equals(data.type) && ((publicOnly && data.isPublic) || !publicOnly)) { + if (data.type == null || (publicOnly && !data.isPublic)) continue; + + if (data.type instanceof EntityType && spawned.getType().equals(data.type)) { mobList.put(data.nickname.toLowerCase(Locale.ENGLISH), data); - } else if (data.type instanceof Class && ((Class) data.type).isAssignableFrom(spawned.getClass()) && ((publicOnly && data.isPublic) || !publicOnly)) { + } else if (data.type instanceof Class && ((Class) data.type).isAssignableFrom(spawned.getClass())) { mobList.put(data.nickname.toLowerCase(Locale.ENGLISH), data); } } From c65534ebb13713359e291df69d3a8468e30ef8ef Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Wed, 22 May 2019 11:39:26 +0100 Subject: [PATCH 26/37] Only make AfkStatusChangeEvent async when off primary thread --- Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java index 44d66c528..0a1aac822 100644 --- a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java +++ b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java @@ -1,10 +1,11 @@ package net.ess3.api.events; import net.ess3.api.IUser; +import org.bukkit.Bukkit; public class AfkStatusChangeEvent extends StatusChangeEvent { public AfkStatusChangeEvent(IUser affected, boolean value) { - super(true, affected, affected, value); + super(!Bukkit.getServer().isPrimaryThread(), affected, affected, value); } } From 5deb1de5555208b39ac80bcd506aaa4748add702 Mon Sep 17 00:00:00 2001 From: Trent Hensler Date: Wed, 22 May 2019 12:06:27 -0700 Subject: [PATCH 27/37] Allow AFK status test to pass. --- .../src/com/earth2me/essentials/OfflinePlayer.java | 11 +++++++++++ .../test/com/earth2me/essentials/FakeServer.java | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index 63d4283b4..458e57053 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -14,6 +14,7 @@ import org.bukkit.block.data.BlockData; import org.bukkit.conversations.Conversation; import org.bukkit.conversations.ConversationAbandonedEvent; import org.bukkit.entity.*; +import org.bukkit.entity.memory.MemoryKey; import org.bukkit.event.entity.EntityDamageEvent; import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause; import org.bukkit.inventory.*; @@ -1341,6 +1342,16 @@ public class OfflinePlayer implements Player { return false; } + @Override + public T getMemory(MemoryKey memoryKey) { + return null; + } + + @Override + public void setMemory(MemoryKey memoryKey, T t) { + + } + @Override public T launchProjectile(Class type, Vector vector) { return null; diff --git a/Essentials/test/com/earth2me/essentials/FakeServer.java b/Essentials/test/com/earth2me/essentials/FakeServer.java index 1e994b14a..5ad00afca 100644 --- a/Essentials/test/com/earth2me/essentials/FakeServer.java +++ b/Essentials/test/com/earth2me/essentials/FakeServer.java @@ -874,7 +874,7 @@ public class FakeServer implements Server { @Override public boolean isPrimaryThread() { - throw new UnsupportedOperationException("Not supported yet."); + return true; // Can be set to true or false, just needs to return for AFK status test to pass. } @Override From 4201e6ef850e08a996008167c4da10a5ad52ac40 Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 26 May 2019 12:08:58 +0100 Subject: [PATCH 28/37] Make all events async when not on primary thread Fixes #2566, fixes #2556, fixes #2545. --- Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java | 2 +- Essentials/src/net/ess3/api/events/SignEvent.java | 3 ++- Essentials/src/net/ess3/api/events/StatusChangeEvent.java | 4 ++-- .../src/net/ess3/api/events/UserBalanceUpdateEvent.java | 2 ++ Essentials/src/net/ess3/api/events/UserWarpEvent.java | 4 +++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java index 0a1aac822..8a1edf4e9 100644 --- a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java +++ b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java @@ -6,6 +6,6 @@ import org.bukkit.Bukkit; public class AfkStatusChangeEvent extends StatusChangeEvent { public AfkStatusChangeEvent(IUser affected, boolean value) { - super(!Bukkit.getServer().isPrimaryThread(), affected, affected, value); + super(affected, affected, value); } } diff --git a/Essentials/src/net/ess3/api/events/SignEvent.java b/Essentials/src/net/ess3/api/events/SignEvent.java index 94df29ece..25687111f 100644 --- a/Essentials/src/net/ess3/api/events/SignEvent.java +++ b/Essentials/src/net/ess3/api/events/SignEvent.java @@ -3,6 +3,7 @@ package net.ess3.api.events; import com.earth2me.essentials.signs.EssentialsSign; import com.earth2me.essentials.signs.EssentialsSign.ISign; import net.ess3.api.IUser; +import org.bukkit.Bukkit; import org.bukkit.event.Cancellable; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; @@ -19,7 +20,7 @@ public class SignEvent extends Event implements Cancellable { IUser user; public SignEvent(final ISign sign, final EssentialsSign essSign, final IUser user) { - super(); + super(!Bukkit.getServer().isPrimaryThread()); this.sign = sign; this.essSign = essSign; this.user = user; diff --git a/Essentials/src/net/ess3/api/events/StatusChangeEvent.java b/Essentials/src/net/ess3/api/events/StatusChangeEvent.java index a2645baf5..58100922e 100644 --- a/Essentials/src/net/ess3/api/events/StatusChangeEvent.java +++ b/Essentials/src/net/ess3/api/events/StatusChangeEvent.java @@ -1,6 +1,7 @@ package net.ess3.api.events; import net.ess3.api.IUser; +import org.bukkit.Bukkit; import org.bukkit.event.Cancellable; @@ -11,8 +12,7 @@ public class StatusChangeEvent extends StateChangeEvent implements Cancellable { private boolean newValue; public StatusChangeEvent(IUser affected, IUser controller, boolean value) { - super(affected, controller); - this.newValue = value; + this(!Bukkit.getServer().isPrimaryThread(), affected, controller, value); } public StatusChangeEvent(boolean isAsync, IUser affected, IUser controller, boolean value) { diff --git a/Essentials/src/net/ess3/api/events/UserBalanceUpdateEvent.java b/Essentials/src/net/ess3/api/events/UserBalanceUpdateEvent.java index 39be63557..bb9b2dc54 100644 --- a/Essentials/src/net/ess3/api/events/UserBalanceUpdateEvent.java +++ b/Essentials/src/net/ess3/api/events/UserBalanceUpdateEvent.java @@ -2,6 +2,7 @@ package net.ess3.api.events; import com.google.common.base.Preconditions; +import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; @@ -16,6 +17,7 @@ public class UserBalanceUpdateEvent extends Event { private BigDecimal balance; public UserBalanceUpdateEvent(Player player, BigDecimal originalBalance, BigDecimal balance) { + super(!Bukkit.getServer().isPrimaryThread()); this.player = player; this.originalBalance = originalBalance; this.balance = balance; diff --git a/Essentials/src/net/ess3/api/events/UserWarpEvent.java b/Essentials/src/net/ess3/api/events/UserWarpEvent.java index 5bcafc6f3..de9ff7f2e 100644 --- a/Essentials/src/net/ess3/api/events/UserWarpEvent.java +++ b/Essentials/src/net/ess3/api/events/UserWarpEvent.java @@ -2,6 +2,7 @@ package net.ess3.api.events; import com.earth2me.essentials.Trade; import net.ess3.api.IUser; +import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.event.Cancellable; import org.bukkit.event.Event; @@ -18,7 +19,8 @@ public class UserWarpEvent extends Event implements Cancellable { private boolean cancelled = false; - public UserWarpEvent(IUser user, String warp, Trade trade){ + public UserWarpEvent(IUser user, String warp, Trade trade) { + super(!Bukkit.getServer().isPrimaryThread()); this.user = user; this.warp = warp; this.trade = trade; From e21863956c0472f7a900eabe6f8d9c3c59a246ab Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Mon, 27 May 2019 11:51:56 +0100 Subject: [PATCH 29/37] Fix checking for attached wall signs --- .../essentials/signs/EssentialsSign.java | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java b/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java index 59e4eba01..724481162 100644 --- a/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java +++ b/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java @@ -1,7 +1,6 @@ package com.earth2me.essentials.signs; import com.earth2me.essentials.*; -import com.earth2me.essentials.utils.EnumUtil; import com.earth2me.essentials.utils.MaterialUtil; import com.earth2me.essentials.utils.NumberUtil; import net.ess3.api.IEssentials; @@ -14,6 +13,7 @@ import org.bukkit.Material; import org.bukkit.block.Block; import org.bukkit.block.BlockFace; import org.bukkit.block.Sign; +import org.bukkit.block.data.type.WallSign; import org.bukkit.entity.Player; import org.bukkit.event.block.SignChangeEvent; import org.bukkit.inventory.ItemStack; @@ -211,11 +211,10 @@ public class EssentialsSign { } final BlockFace[] directions = new BlockFace[]{BlockFace.NORTH, BlockFace.EAST, BlockFace.SOUTH, BlockFace.WEST}; for (BlockFace blockFace : directions) { - final Block signblock = block.getRelative(blockFace); - if (MaterialUtil.isWallSign(signblock.getType())) { + final Block signBlock = block.getRelative(blockFace); + if (MaterialUtil.isWallSign(signBlock.getType())) { try { - final org.bukkit.material.Sign signMat = (org.bukkit.material.Sign) signblock.getState().getData(); - if (signMat != null && signMat.getFacing() == blockFace && isValidSign(new BlockSign(signblock))) { + if (getWallSignFacing(signBlock) == blockFace && isValidSign(new BlockSign(signBlock))) { return true; } } catch (NullPointerException ex) { @@ -445,6 +444,16 @@ public class EssentialsSign { ess.showError(sender, exception, "\\ sign: " + signName); } + private static BlockFace getWallSignFacing(Block block) { + try { + final WallSign signData = (WallSign) block.getState().getBlockData(); + return signData.getFacing(); + } catch (NoClassDefFoundError e) { + final org.bukkit.material.Sign signMat = (org.bukkit.material.Sign) block.getState().getData(); + return signMat.getFacing(); + } + } + static class EventSign implements ISign { private final transient SignChangeEvent event; From 94131edb32d9e5e62db9877cf904fe61aa93f1bb Mon Sep 17 00:00:00 2001 From: Josh Roy <10731363+JRoy@users.noreply.github.com> Date: Mon, 27 May 2019 18:12:23 -0400 Subject: [PATCH 30/37] Bump Bukkit to 1.14.2 (#2569) * Bump to API 1.14.2 * Update v1_14_2_R01 as latest supported 1.14 build --- Essentials/src/com/earth2me/essentials/utils/VersionUtil.java | 3 ++- pom.xml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java index c19455926..61e1879f2 100644 --- a/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/VersionUtil.java @@ -22,8 +22,9 @@ public class VersionUtil { public static final BukkitVersion v1_13_2_R01 = BukkitVersion.fromString("1.13.2-R0.1-SNAPSHOT"); public static final BukkitVersion v1_14_R01 = BukkitVersion.fromString("1.14-R0.1-SNAPSHOT"); public static final BukkitVersion v1_14_1_R01 = BukkitVersion.fromString("1.14.1-R0.1-SNAPSHOT"); + public static final BukkitVersion v1_14_2_R01 = BukkitVersion.fromString("1.14.2-R0.1-SNAPSHOT"); - private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_1_R01); + private static final Set supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_2_R01); private static BukkitVersion serverVersion = null; diff --git a/pom.xml b/pom.xml index 546ac2439..e0e8f6b5c 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ org.bukkit bukkit - 1.14.1-R0.1-SNAPSHOT + 1.14.2-R0.1-SNAPSHOT provided From f2447a91345bc0ea730f29d9ab824b8f91f92e97 Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Fri, 31 May 2019 15:57:51 +0100 Subject: [PATCH 31/37] Add fallbacks property to ItemData Allows items.json to specify fallback names for materials on older versions. Additionally make non-API methods inaccessible, as they shouldn't be needed by other plugins. --- .../earth2me/essentials/items/FlatItemDb.java | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/items/FlatItemDb.java b/Essentials/src/com/earth2me/essentials/items/FlatItemDb.java index 2ec81254a..59dae46c8 100644 --- a/Essentials/src/com/earth2me/essentials/items/FlatItemDb.java +++ b/Essentials/src/com/earth2me/essentials/items/FlatItemDb.java @@ -1,6 +1,7 @@ package com.earth2me.essentials.items; import com.earth2me.essentials.ManagedFile; +import com.earth2me.essentials.utils.EnumUtil; import com.earth2me.essentials.utils.MaterialUtil; import com.google.gson.Gson; import com.google.gson.JsonElement; @@ -70,7 +71,7 @@ public class FlatItemDb extends AbstractItemDb { allAliases.clear(); } - public void loadJSON(String source) { + private void loadJSON(String source) { JsonObject map = (new JsonParser()).parse(source).getAsJsonObject(); for (Map.Entry entry : map.entrySet()) { @@ -191,11 +192,11 @@ public class FlatItemDb extends AbstractItemDb { @Override @Deprecated - public int getLegacyId(Material material) throws Exception { + public int getLegacyId(Material material) { throw new UnsupportedOperationException("Legacy IDs aren't supported on this version."); } - public ItemData lookup(ItemStack item) { + private ItemData lookup(ItemStack item) { Material type = item.getType(); if (MaterialUtil.isPotion(type) && item.getItemMeta() instanceof PotionMeta) { @@ -217,20 +218,21 @@ public class FlatItemDb extends AbstractItemDb { } public static class ItemData { - private final Material material; + private Material material; + private String[] fallbacks = null; private PotionData potionData = null; private EntityType entity = null; - public ItemData(Material material) { + ItemData(Material material) { this.material = material; } - public ItemData(Material material, PotionData potionData) { + ItemData(Material material, PotionData potionData) { this.material = material; this.potionData = potionData; } - public ItemData(Material material, EntityType entity) { + ItemData(Material material, EntityType entity) { this.material = material; this.entity = entity; } @@ -249,10 +251,15 @@ public class FlatItemDb extends AbstractItemDb { return false; } ItemData that = (ItemData) o; - return this.material == that.getMaterial() && potionDataEquals(that) && entityEquals(that); + return this.getMaterial() == that.getMaterial() && potionDataEquals(that) && entityEquals(that); } public Material getMaterial() { + if (material == null && fallbacks != null) { + material = EnumUtil.getMaterial(fallbacks); + fallbacks = null; // If fallback fails, don't keep trying to look up fallbacks + } + return material; } From 0d9387458deae8612c2aa660ffb68e8af6f0a4cd Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 9 Jun 2019 12:21:25 +0100 Subject: [PATCH 32/37] Remove unused import in AFK event --- Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java | 1 - 1 file changed, 1 deletion(-) diff --git a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java index 8a1edf4e9..1fa99e3f6 100644 --- a/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java +++ b/Essentials/src/net/ess3/api/events/AfkStatusChangeEvent.java @@ -1,7 +1,6 @@ package net.ess3.api.events; import net.ess3.api.IUser; -import org.bukkit.Bukkit; public class AfkStatusChangeEvent extends StatusChangeEvent { From b140826e6039d3053b9eca5bbf8a0d2930742741 Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 9 Jun 2019 12:21:40 +0100 Subject: [PATCH 33/37] Remove unused import in MaterialUtil --- Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java | 1 - 1 file changed, 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java b/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java index 7504605f1..30ff027d0 100644 --- a/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/MaterialUtil.java @@ -3,7 +3,6 @@ package com.earth2me.essentials.utils; import org.bukkit.Bukkit; import org.bukkit.DyeColor; import org.bukkit.Material; -import org.bukkit.Registry; import org.bukkit.material.MaterialData; import java.util.EnumSet; From 829110e89a9807bb25146e6029a7065eb3c5492d Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 9 Jun 2019 12:59:32 +0100 Subject: [PATCH 34/37] Implement missing OfflinePlayer methods --- Essentials/src/com/earth2me/essentials/OfflinePlayer.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index 458e57053..5d1343712 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -1632,6 +1632,10 @@ public class OfflinePlayer implements Player { public void updateCommands() { } + @Override + public void openBook(ItemStack book) { + } + @Override public PersistentDataContainer getPersistentDataContainer() { return null; From 5ebce8965e38200fff618872370895b250a1c832 Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 9 Jun 2019 15:10:12 +0100 Subject: [PATCH 35/37] Merge 1.13 and 1.14 items.json together In 2.17.0, [essx-scripts genItemsFlat](https://github.com/md678685/essx-scripts/blob/master/src/genItemsFlat.js) is being replaced with [ItemDbGenerator](https://github.com/md678685/ItemDbGenerator). To ease migration, this is a file generated by merging the 1.14 entries from the new generator into the existing 1.13 file. This will be replaced by an items.json generated entirely by ItemDbGenerator eventually. --- Essentials/src/items.json | 47608 +++++++++++++++++++----------------- 1 file changed, 24578 insertions(+), 23030 deletions(-) diff --git a/Essentials/src/items.json b/Essentials/src/items.json index f7977e1e6..6fa1e75da 100644 --- a/Essentials/src/items.json +++ b/Essentials/src/items.json @@ -1,23031 +1,24579 @@ -#version: ${full.version} { - "acacia_boat": { - "material": "ACACIA_BOAT" - }, - "acaciaboat": "acacia_boat", - "aboat": "acacia_boat", - "acacia_button": { - "material": "ACACIA_BUTTON" - }, - "acaciabutton": "acacia_button", - "acacia_door": { - "material": "ACACIA_DOOR" - }, - "acaciadoor": "acacia_door", - "acacia_fence": { - "material": "ACACIA_FENCE" - }, - "acaciafence": "acacia_fence", - "afence": "acacia_fence", - "acacia_fence_gate": { - "material": "ACACIA_FENCE_GATE" - }, - "acaciafencegate": "acacia_fence_gate", - "acaciagate": "acacia_fence_gate", - "afencegate": "acacia_fence_gate", - "agate": "acacia_fence_gate", - "acacia_leaves": { - "material": "ACACIA_LEAVES" - }, - "acacialeaves": "acacia_leaves", - "acaciatreeleaves": "acacia_leaves", - "acacialogleaves": "acacia_leaves", - "acaciatrunkleaves": "acacia_leaves", - "acaciawoodleaves": "acacia_leaves", - "acaciatreeleaf": "acacia_leaves", - "acacialogleaf": "acacia_leaves", - "acaciatrunkleaf": "acacia_leaves", - "acaciawoodleaf": "acacia_leaves", - "acacialeaf": "acacia_leaves", - "acaciatreeleave": "acacia_leaves", - "acacialogleave": "acacia_leaves", - "acaciatrunkleave": "acacia_leaves", - "acaciawoodleave": "acacia_leaves", - "acacialeave": "acacia_leaves", - "atreeleaves": "acacia_leaves", - "alogleaves": "acacia_leaves", - "atrunkleaves": "acacia_leaves", - "awoodleaves": "acacia_leaves", - "aleaves": "acacia_leaves", - "atreeleaf": "acacia_leaves", - "alogleaf": "acacia_leaves", - "atrunkleaf": "acacia_leaves", - "awoodleaf": "acacia_leaves", - "aleaf": "acacia_leaves", - "atreeleave": "acacia_leaves", - "alogleave": "acacia_leaves", - "atrunkleave": "acacia_leaves", - "awoodleave": "acacia_leaves", - "aleave": "acacia_leaves", - "acacia_log": { - "material": "ACACIA_LOG" - }, - "acacialog": "acacia_log", - "acacia": "acacia_log", - "logacacia": "acacia_log", - "acaciatrunk": "acacia_log", - "acaciatree": "acacia_log", - "a": "acacia_log", - "loga": "acacia_log", - "atrunk": "acacia_log", - "alog": "acacia_log", - "atree": "acacia_log", - "acacia_planks": { - "material": "ACACIA_PLANKS" - }, - "acaciaplanks": "acacia_planks", - "acaciawoodenplank": "acacia_planks", - "acaciawoodplank": "acacia_planks", - "acaciawplank": "acacia_planks", - "acaciaplankwooden": "acacia_planks", - "acaciaplankwood": "acacia_planks", - "acaciaplankw": "acacia_planks", - "acaciaplank": "acacia_planks", - "awoodenplank": "acacia_planks", - "awoodplank": "acacia_planks", - "awplank": "acacia_planks", - "aplankwooden": "acacia_planks", - "aplankwood": "acacia_planks", - "aplankw": "acacia_planks", - "aplank": "acacia_planks", - "acacia_pressure_plate": { - "material": "ACACIA_PRESSURE_PLATE" - }, - "acaciapressureplate": "acacia_pressure_plate", - "acaciapressplate": "acacia_pressure_plate", - "acaciapplate": "acacia_pressure_plate", - "acaciaplate": "acacia_pressure_plate", - "apressureplate": "acacia_pressure_plate", - "apressplate": "acacia_pressure_plate", - "applate": "acacia_pressure_plate", - "aplate": "acacia_pressure_plate", - "acacia_sapling": { - "material": "ACACIA_SAPLING" - }, - "acaciasapling": "acacia_sapling", - "acaciatreesapling": "acacia_sapling", - "acacialogsapling": "acacia_sapling", - "acaciatrunksapling": "acacia_sapling", - "acaciawoodsapling": "acacia_sapling", - "asapling": "acacia_sapling", - "atreesapling": "acacia_sapling", - "alogsapling": "acacia_sapling", - "atrunksapling": "acacia_sapling", - "awoodsapling": "acacia_sapling", - "acacia_slab": { - "material": "ACACIA_SLAB" - }, - "acaciaslab": "acacia_slab", - "acaciawoodenstep": "acacia_slab", - "acaciawoodstep": "acacia_slab", - "acaciawstep": "acacia_slab", - "acaciastep": "acacia_slab", - "acaciawoodenslab": "acacia_slab", - "acaciawoodslab": "acacia_slab", - "acaciawslab": "acacia_slab", - "acaciawoodenhalfblock": "acacia_slab", - "acaciawoodhalfblock": "acacia_slab", - "acaciawhalfblock": "acacia_slab", - "acaciahalfblock": "acacia_slab", - "awoodenstep": "acacia_slab", - "awoodstep": "acacia_slab", - "awstep": "acacia_slab", - "astep": "acacia_slab", - "awoodenslab": "acacia_slab", - "awoodslab": "acacia_slab", - "awslab": "acacia_slab", - "awoodenhalfblock": "acacia_slab", - "awoodhalfblock": "acacia_slab", - "awhalfblock": "acacia_slab", - "ahalfblock": "acacia_slab", - "acacia_stairs": { - "material": "ACACIA_STAIRS" - }, - "acaciastairs": "acacia_stairs", - "acaciawoodenstairs": "acacia_stairs", - "acaciawoodstairs": "acacia_stairs", - "acaciawstairs": "acacia_stairs", - "acaciawoodenstair": "acacia_stairs", - "acaciawoodstair": "acacia_stairs", - "acaciawstair": "acacia_stairs", - "acaciastair": "acacia_stairs", - "awoodenstairs": "acacia_stairs", - "awoodstairs": "acacia_stairs", - "awstairs": "acacia_stairs", - "awoodenstair": "acacia_stairs", - "awoodstair": "acacia_stairs", - "awstair": "acacia_stairs", - "astair": "acacia_stairs", - "acacia_trapdoor": { - "material": "ACACIA_TRAPDOOR" - }, - "acaciatrapdoor": "acacia_trapdoor", - "acaciadoortrap": "acacia_trapdoor", - "acaciahatch": "acacia_trapdoor", - "acaciatdoor": "acacia_trapdoor", - "acaciadoort": "acacia_trapdoor", - "acaciatrapd": "acacia_trapdoor", - "acaciadtrap": "acacia_trapdoor", - "atrapdoor": "acacia_trapdoor", - "adoortrap": "acacia_trapdoor", - "ahatch": "acacia_trapdoor", - "atdoor": "acacia_trapdoor", - "adoort": "acacia_trapdoor", - "atrapd": "acacia_trapdoor", - "adtrap": "acacia_trapdoor", - "acacia_wood": { - "material": "ACACIA_WOOD" - }, - "acaciawood": "acacia_wood", - "acacialogall": "acacia_wood", - "acaciatrunkall": "acacia_wood", - "acaciatreeall": "acacia_wood", - "awood": "acacia_wood", - "alogall": "acacia_wood", - "atrunkall": "acacia_wood", - "atreeall": "acacia_wood", - "activator_rail": { - "material": "ACTIVATOR_RAIL" - }, - "activatorrail": "activator_rail", - "activatorrails": "activator_rail", - "activatortrack": "activator_rail", - "activaterails": "activator_rail", - "activaterail": "activator_rail", - "activatetrack": "activator_rail", - "triggerrails": "activator_rail", - "triggerrail": "activator_rail", - "triggertrack": "activator_rail", - "arails": "activator_rail", - "arail": "activator_rail", - "atrack": "activator_rail", - "trails": "activator_rail", - "trail": "activator_rail", - "ttrack": "activator_rail", - "air": { - "material": "AIR" - }, - "allium": { - "material": "ALLIUM" - }, - "magentaallium": "allium", - "magentaflower": "allium", - "andesite": { - "material": "ANDESITE" - }, - "astone": "andesite", - "anvil": { - "material": "ANVIL" - }, - "apple": { - "material": "APPLE" - }, - "armor_stand": { - "material": "ARMOR_STAND" - }, - "armorstand": "armor_stand", - "arrow": { - "material": "ARROW" - }, - "attached_melon_stem": { - "material": "ATTACHED_MELON_STEM", - "unspawnable": true - }, - "attachedmelonstem": "attached_melon_stem", - "attached_pumpkin_stem": { - "material": "ATTACHED_PUMPKIN_STEM", - "unspawnable": true - }, - "attachedpumpkinstem": "attached_pumpkin_stem", - "azure_bluet": { - "material": "AZURE_BLUET" - }, - "azurebluet": "azure_bluet", - "whiteazurebluet": "azure_bluet", - "abluet": "azure_bluet", - "azureb": "azure_bluet", - "houstonia": "azure_bluet", - "baked_potato": { - "material": "BAKED_POTATO" - }, - "bakedpotato": "baked_potato", - "barrier": { - "material": "BARRIER" - }, - "bat_spawn_egg": { - "material": "BAT_SPAWN_EGG" - }, - "batspawnegg": "bat_spawn_egg", - "bategg": "bat_spawn_egg", - "eggbat": "bat_spawn_egg", - "spawneggbat": "bat_spawn_egg", - "batspawn": "bat_spawn_egg", - "spawnbat": "bat_spawn_egg", - "beacon": { - "material": "BEACON" - }, - "beaconblock": "beacon", - "bedrock": { - "material": "BEDROCK" - }, - "oprock": "bedrock", - "opblock": "bedrock", - "adminblock": "bedrock", - "adminrock": "bedrock", - "adminium": "bedrock", - "beef": { - "material": "BEEF" - }, - "rawbeef": "beef", - "rawsteak": "beef", - "rawcowmeat": "beef", - "rabeef": "beef", - "rasteak": "beef", - "racowmeat": "beef", - "uncookedbeef": "beef", - "uncookedsteak": "beef", - "uncookedcowmeat": "beef", - "plainbeef": "beef", - "plainsteak": "beef", - "plaincowmeat": "beef", - "steak": "beef", - "cowmeat": "beef", - "beetroot": { - "material": "BEETROOT" - }, - "broot": "beetroot", - "beet": "beetroot", - "beets": "beetroot", - "beetplant": "beetroot", - "beetcrop": "beetroot", - "beetroots": { - "material": "BEETROOTS", - "unspawnable": true - }, - "beetroot_seeds": { - "material": "BEETROOT_SEEDS" - }, - "beetrootseeds": "beetroot_seeds", - "beetrootseed": "beetroot_seeds", - "brootseed": "beetroot_seeds", - "brootseeds": "beetroot_seeds", - "beetseed": "beetroot_seeds", - "beetseeds": "beetroot_seeds", - "beetsseeds": "beetroot_seeds", - "beetplantseeds": "beetroot_seeds", - "beetcropseeds": "beetroot_seeds", - "beetroot_soup": { - "material": "BEETROOT_SOUP" - }, - "beetrootsoup": "beetroot_soup", - "brootsoup": "beetroot_soup", - "beetsoup": "beetroot_soup", - "beetssoup": "beetroot_soup", - "beetplantsoup": "beetroot_soup", - "beetcropsoup": "beetroot_soup", - "redsoup": "beetroot_soup", - "birch_boat": { - "material": "BIRCH_BOAT" - }, - "birchboat": "birch_boat", - "bboat": "birch_boat", - "lightboat": "birch_boat", - "lboat": "birch_boat", - "whiteboat": "birch_boat", - "wboat": "birch_boat", - "birch_button": { - "material": "BIRCH_BUTTON" - }, - "birchbutton": "birch_button", - "birch_door": { - "material": "BIRCH_DOOR" - }, - "birchdoor": "birch_door", - "birch_fence": { - "material": "BIRCH_FENCE" - }, - "birchfence": "birch_fence", - "bfence": "birch_fence", - "lightfence": "birch_fence", - "lfence": "birch_fence", - "whitefence": "birch_fence", - "wfence": "birch_fence", - "birch_fence_gate": { - "material": "BIRCH_FENCE_GATE" - }, - "birchfencegate": "birch_fence_gate", - "birchgate": "birch_fence_gate", - "bfencegate": "birch_fence_gate", - "bgate": "birch_fence_gate", - "lightfencegate": "birch_fence_gate", - "lightgate": "birch_fence_gate", - "lfencegate": "birch_fence_gate", - "lgate": "birch_fence_gate", - "whitefencegate": "birch_fence_gate", - "whitegate": "birch_fence_gate", - "wfencegate": "birch_fence_gate", - "wgate": "birch_fence_gate", - "birch_leaves": { - "material": "BIRCH_LEAVES" - }, - "birchleaves": "birch_leaves", - "birchtreeleaves": "birch_leaves", - "birchlogleaves": "birch_leaves", - "birchtrunkleaves": "birch_leaves", - "birchwoodleaves": "birch_leaves", - "birchtreeleaf": "birch_leaves", - "birchlogleaf": "birch_leaves", - "birchtrunkleaf": "birch_leaves", - "birchwoodleaf": "birch_leaves", - "birchleaf": "birch_leaves", - "birchtreeleave": "birch_leaves", - "birchlogleave": "birch_leaves", - "birchtrunkleave": "birch_leaves", - "birchwoodleave": "birch_leaves", - "birchleave": "birch_leaves", - "btreeleaves": "birch_leaves", - "blogleaves": "birch_leaves", - "btrunkleaves": "birch_leaves", - "bwoodleaves": "birch_leaves", - "bleaves": "birch_leaves", - "btreeleaf": "birch_leaves", - "blogleaf": "birch_leaves", - "btrunkleaf": "birch_leaves", - "bwoodleaf": "birch_leaves", - "bleaf": "birch_leaves", - "btreeleave": "birch_leaves", - "blogleave": "birch_leaves", - "btrunkleave": "birch_leaves", - "bwoodleave": "birch_leaves", - "bleave": "birch_leaves", - "lighttreeleaves": "birch_leaves", - "lightlogleaves": "birch_leaves", - "lighttrunkleaves": "birch_leaves", - "lightwoodleaves": "birch_leaves", - "lightleaves": "birch_leaves", - "lighttreeleaf": "birch_leaves", - "lightlogleaf": "birch_leaves", - "lighttrunkleaf": "birch_leaves", - "lightwoodleaf": "birch_leaves", - "lightleaf": "birch_leaves", - "lighttreeleave": "birch_leaves", - "lightlogleave": "birch_leaves", - "lighttrunkleave": "birch_leaves", - "lightwoodleave": "birch_leaves", - "lightleave": "birch_leaves", - "ltreeleaves": "birch_leaves", - "llogleaves": "birch_leaves", - "ltrunkleaves": "birch_leaves", - "lwoodleaves": "birch_leaves", - "lleaves": "birch_leaves", - "ltreeleaf": "birch_leaves", - "llogleaf": "birch_leaves", - "ltrunkleaf": "birch_leaves", - "lwoodleaf": "birch_leaves", - "lleaf": "birch_leaves", - "ltreeleave": "birch_leaves", - "llogleave": "birch_leaves", - "ltrunkleave": "birch_leaves", - "lwoodleave": "birch_leaves", - "lleave": "birch_leaves", - "whitetreeleaves": "birch_leaves", - "whitelogleaves": "birch_leaves", - "whitetrunkleaves": "birch_leaves", - "whitewoodleaves": "birch_leaves", - "whiteleaves": "birch_leaves", - "whitetreeleaf": "birch_leaves", - "whitelogleaf": "birch_leaves", - "whitetrunkleaf": "birch_leaves", - "whitewoodleaf": "birch_leaves", - "whiteleaf": "birch_leaves", - "whitetreeleave": "birch_leaves", - "whitelogleave": "birch_leaves", - "whitetrunkleave": "birch_leaves", - "whitewoodleave": "birch_leaves", - "whiteleave": "birch_leaves", - "wtreeleaves": "birch_leaves", - "wlogleaves": "birch_leaves", - "wtrunkleaves": "birch_leaves", - "wwoodleaves": "birch_leaves", - "wleaves": "birch_leaves", - "wtreeleaf": "birch_leaves", - "wlogleaf": "birch_leaves", - "wtrunkleaf": "birch_leaves", - "wwoodleaf": "birch_leaves", - "wleaf": "birch_leaves", - "wtreeleave": "birch_leaves", - "wlogleave": "birch_leaves", - "wtrunkleave": "birch_leaves", - "wwoodleave": "birch_leaves", - "wleave": "birch_leaves", - "birch_log": { - "material": "BIRCH_LOG" - }, - "birchlog": "birch_log", - "birch": "birch_log", - "logbirch": "birch_log", - "birchtrunk": "birch_log", - "birchtree": "birch_log", - "b": "birch_log", - "logb": "birch_log", - "btrunk": "birch_log", - "blog": "birch_log", - "btree": "birch_log", - "light": "birch_log", - "loglight": "birch_log", - "lighttrunk": "birch_log", - "lightlog": "birch_log", - "lighttree": "birch_log", - "l": "birch_log", - "logl": "birch_log", - "ltrunk": "birch_log", - "llog": "birch_log", - "ltree": "birch_log", - "white": "birch_log", - "logwhite": "birch_log", - "whitetrunk": "birch_log", - "whitelog": "birch_log", - "whitetree": "birch_log", - "w": "birch_log", - "logw": "birch_log", - "wtrunk": "birch_log", - "wlog": "birch_log", - "wtree": "birch_log", - "birch_planks": { - "material": "BIRCH_PLANKS" - }, - "birchplanks": "birch_planks", - "birchwoodenplank": "birch_planks", - "birchwoodplank": "birch_planks", - "birchwplank": "birch_planks", - "birchplankwooden": "birch_planks", - "birchplankwood": "birch_planks", - "birchplankw": "birch_planks", - "birchplank": "birch_planks", - "bwoodenplank": "birch_planks", - "bwoodplank": "birch_planks", - "bwplank": "birch_planks", - "bplankwooden": "birch_planks", - "bplankwood": "birch_planks", - "bplankw": "birch_planks", - "bplank": "birch_planks", - "lightwoodenplank": "birch_planks", - "lightwoodplank": "birch_planks", - "lightwplank": "birch_planks", - "lightplankwooden": "birch_planks", - "lightplankwood": "birch_planks", - "lightplankw": "birch_planks", - "lightplank": "birch_planks", - "lwoodenplank": "birch_planks", - "lwoodplank": "birch_planks", - "lwplank": "birch_planks", - "lplankwooden": "birch_planks", - "lplankwood": "birch_planks", - "lplankw": "birch_planks", - "lplank": "birch_planks", - "whitewoodenplank": "birch_planks", - "whitewoodplank": "birch_planks", - "whitewplank": "birch_planks", - "whiteplankwooden": "birch_planks", - "whiteplankwood": "birch_planks", - "whiteplankw": "birch_planks", - "whiteplank": "birch_planks", - "wwoodenplank": "birch_planks", - "wwoodplank": "birch_planks", - "wwplank": "birch_planks", - "wplankwooden": "birch_planks", - "wplankwood": "birch_planks", - "wplankw": "birch_planks", - "wplank": "oak_planks", - "birch_pressure_plate": { - "material": "BIRCH_PRESSURE_PLATE" - }, - "birchpressureplate": "birch_pressure_plate", - "birchpressplate": "birch_pressure_plate", - "birchpplate": "birch_pressure_plate", - "birchplate": "birch_pressure_plate", - "bpressureplate": "birch_pressure_plate", - "bpressplate": "birch_pressure_plate", - "bpplate": "birch_pressure_plate", - "bplate": "birch_pressure_plate", - "lightpressureplate": "birch_pressure_plate", - "lightpressplate": "birch_pressure_plate", - "lightpplate": "birch_pressure_plate", - "lightplate": "birch_pressure_plate", - "lpressureplate": "birch_pressure_plate", - "lpressplate": "birch_pressure_plate", - "lpplate": "birch_pressure_plate", - "whitepressureplate": "birch_pressure_plate", - "whitepressplate": "birch_pressure_plate", - "whitepplate": "birch_pressure_plate", - "whiteplate": "birch_pressure_plate", - "wpressureplate": "birch_pressure_plate", - "wpressplate": "birch_pressure_plate", - "wpplate": "birch_pressure_plate", - "wplate": "birch_pressure_plate", - "birch_sapling": { - "material": "BIRCH_SAPLING" - }, - "birchsapling": "birch_sapling", - "birchtreesapling": "birch_sapling", - "birchlogsapling": "birch_sapling", - "birchtrunksapling": "birch_sapling", - "birchwoodsapling": "birch_sapling", - "bsapling": "birch_sapling", - "btreesapling": "birch_sapling", - "blogsapling": "birch_sapling", - "btrunksapling": "birch_sapling", - "bwoodsapling": "birch_sapling", - "lightsapling": "birch_sapling", - "lighttreesapling": "birch_sapling", - "lightlogsapling": "birch_sapling", - "lighttrunksapling": "birch_sapling", - "lightwoodsapling": "birch_sapling", - "lsapling": "birch_sapling", - "ltreesapling": "birch_sapling", - "llogsapling": "birch_sapling", - "ltrunksapling": "birch_sapling", - "lwoodsapling": "birch_sapling", - "whitesapling": "birch_sapling", - "whitetreesapling": "birch_sapling", - "whitelogsapling": "birch_sapling", - "whitetrunksapling": "birch_sapling", - "whitewoodsapling": "birch_sapling", - "wsapling": "birch_sapling", - "wtreesapling": "birch_sapling", - "wlogsapling": "birch_sapling", - "wtrunksapling": "birch_sapling", - "wwoodsapling": "birch_sapling", - "birch_slab": { - "material": "BIRCH_SLAB" - }, - "birchslab": "birch_slab", - "birchwoodenstep": "birch_slab", - "birchwoodstep": "birch_slab", - "birchwstep": "birch_slab", - "birchstep": "birch_slab", - "birchwoodenslab": "birch_slab", - "birchwoodslab": "birch_slab", - "birchwslab": "birch_slab", - "birchwoodenhalfblock": "birch_slab", - "birchwoodhalfblock": "birch_slab", - "birchwhalfblock": "birch_slab", - "birchhalfblock": "birch_slab", - "bwoodenstep": "birch_slab", - "bwoodstep": "birch_slab", - "bwstep": "birch_slab", - "bstep": "birch_slab", - "bwoodenslab": "birch_slab", - "bwoodslab": "birch_slab", - "bwslab": "birch_slab", - "bwoodenhalfblock": "birch_slab", - "bwoodhalfblock": "birch_slab", - "bwhalfblock": "birch_slab", - "bhalfblock": "birch_slab", - "lightwoodenstep": "birch_slab", - "lightwoodstep": "birch_slab", - "lightwstep": "birch_slab", - "lightstep": "birch_slab", - "lightwoodenslab": "birch_slab", - "lightwoodslab": "birch_slab", - "lightwslab": "birch_slab", - "lightwoodenhalfblock": "birch_slab", - "lightwoodhalfblock": "birch_slab", - "lightwhalfblock": "birch_slab", - "lighthalfblock": "birch_slab", - "lwoodenstep": "birch_slab", - "lwoodstep": "birch_slab", - "lwstep": "birch_slab", - "lstep": "birch_slab", - "lwoodenslab": "birch_slab", - "lwoodslab": "birch_slab", - "lwslab": "birch_slab", - "lwoodenhalfblock": "birch_slab", - "lwoodhalfblock": "birch_slab", - "lwhalfblock": "birch_slab", - "lhalfblock": "birch_slab", - "whitewoodenstep": "birch_slab", - "whitewoodstep": "birch_slab", - "whitewstep": "birch_slab", - "whitestep": "birch_slab", - "whitewoodenslab": "birch_slab", - "whitewoodslab": "birch_slab", - "whitewslab": "birch_slab", - "whitewoodenhalfblock": "birch_slab", - "whitewoodhalfblock": "birch_slab", - "whitewhalfblock": "birch_slab", - "whitehalfblock": "birch_slab", - "wwoodenstep": "birch_slab", - "wwoodstep": "birch_slab", - "wwstep": "birch_slab", - "wstep": "petrified_oak_slab", - "wwoodenslab": "birch_slab", - "wwoodslab": "birch_slab", - "wwslab": "birch_slab", - "wwoodenhalfblock": "birch_slab", - "wwoodhalfblock": "birch_slab", - "wwhalfblock": "birch_slab", - "whalfblock": "petrified_oak_slab", - "birch_stairs": { - "material": "BIRCH_STAIRS" - }, - "birchstairs": "birch_stairs", - "birchwoodenstairs": "birch_stairs", - "birchwoodstairs": "birch_stairs", - "birchwstairs": "birch_stairs", - "birchwoodenstair": "birch_stairs", - "birchwoodstair": "birch_stairs", - "birchwstair": "birch_stairs", - "birchstair": "birch_stairs", - "bwoodenstairs": "birch_stairs", - "bwoodstairs": "birch_stairs", - "bwstairs": "birch_stairs", - "bwoodenstair": "birch_stairs", - "bwoodstair": "birch_stairs", - "bwstair": "birch_stairs", - "bstair": "birch_stairs", - "lightwoodenstairs": "birch_stairs", - "lightwoodstairs": "birch_stairs", - "lightwstairs": "birch_stairs", - "lightwoodenstair": "birch_stairs", - "lightwoodstair": "birch_stairs", - "lightwstair": "birch_stairs", - "lightstair": "birch_stairs", - "lwoodenstairs": "birch_stairs", - "lwoodstairs": "birch_stairs", - "lwstairs": "birch_stairs", - "lwoodenstair": "birch_stairs", - "lwoodstair": "birch_stairs", - "lwstair": "birch_stairs", - "lstair": "birch_stairs", - "whitewoodenstairs": "birch_stairs", - "whitewoodstairs": "birch_stairs", - "whitewstairs": "birch_stairs", - "whitewoodenstair": "birch_stairs", - "whitewoodstair": "birch_stairs", - "whitewstair": "birch_stairs", - "whitestair": "birch_stairs", - "wwoodenstairs": "birch_stairs", - "wwoodstairs": "birch_stairs", - "wwstairs": "birch_stairs", - "wwoodenstair": "birch_stairs", - "wwoodstair": "birch_stairs", - "wwstair": "birch_stairs", - "wstair": "oak_stairs", - "birch_trapdoor": { - "material": "BIRCH_TRAPDOOR" - }, - "birchtrapdoor": "birch_trapdoor", - "birchdoortrap": "birch_trapdoor", - "birchhatch": "birch_trapdoor", - "birchtdoor": "birch_trapdoor", - "birchdoort": "birch_trapdoor", - "birchtrapd": "birch_trapdoor", - "birchdtrap": "birch_trapdoor", - "btrapdoor": "birch_trapdoor", - "bdoortrap": "birch_trapdoor", - "bhatch": "birch_trapdoor", - "btdoor": "birch_trapdoor", - "bdoort": "birch_trapdoor", - "btrapd": "birch_trapdoor", - "bdtrap": "birch_trapdoor", - "lighttrapdoor": "birch_trapdoor", - "lightdoortrap": "birch_trapdoor", - "lighthatch": "birch_trapdoor", - "lighttdoor": "birch_trapdoor", - "lightdoort": "birch_trapdoor", - "lighttrapd": "birch_trapdoor", - "lightdtrap": "birch_trapdoor", - "ltrapdoor": "birch_trapdoor", - "ldoortrap": "birch_trapdoor", - "lhatch": "birch_trapdoor", - "ltdoor": "birch_trapdoor", - "ldoort": "birch_trapdoor", - "ltrapd": "birch_trapdoor", - "ldtrap": "birch_trapdoor", - "whitetrapdoor": "birch_trapdoor", - "whitedoortrap": "birch_trapdoor", - "whitehatch": "birch_trapdoor", - "whitetdoor": "birch_trapdoor", - "whitedoort": "birch_trapdoor", - "whitetrapd": "birch_trapdoor", - "whitedtrap": "birch_trapdoor", - "wtrapdoor": "birch_trapdoor", - "wdoortrap": "birch_trapdoor", - "whatch": "birch_trapdoor", - "wtdoor": "birch_trapdoor", - "wdoort": "birch_trapdoor", - "wtrapd": "birch_trapdoor", - "wdtrap": "birch_trapdoor", - "birch_wood": { - "material": "BIRCH_WOOD" - }, - "birchwood": "birch_wood", - "birchlogall": "birch_wood", - "birchtrunkall": "birch_wood", - "birchtreeall": "birch_wood", - "bwood": "birch_wood", - "blogall": "birch_wood", - "btrunkall": "birch_wood", - "btreeall": "birch_wood", - "lightwood": "birch_wood", - "lightlogall": "birch_wood", - "lighttrunkall": "birch_wood", - "lighttreeall": "birch_wood", - "lwood": "birch_wood", - "llogall": "birch_wood", - "ltrunkall": "birch_wood", - "ltreeall": "birch_wood", - "whitewood": "birch_wood", - "whitelogall": "birch_wood", - "whitetrunkall": "birch_wood", - "whitetreeall": "birch_wood", - "wwood": "birch_wood", - "wlogall": "birch_wood", - "wtrunkall": "birch_wood", - "wtreeall": "birch_wood", - "black_banner": { - "material": "BLACK_BANNER" - }, - "blackbanner": "black_banner", - "bkstandingbanner": "black_banner", - "bkbanner": "black_banner", - "blastandingbanner": "black_banner", - "blabanner": "black_banner", - "blackstandingbanner": "black_banner", - "black_bed": { - "material": "BLACK_BED" - }, - "blackbed": "black_bed", - "bkbed": "black_bed", - "blabed": "black_bed", - "black_carpet": { - "material": "BLACK_CARPET" - }, - "blackcarpet": "black_carpet", - "bkcarpet": "black_carpet", - "bkfloor": "black_carpet", - "blacarpet": "black_carpet", - "blafloor": "black_carpet", - "blackfloor": "black_carpet", - "black_concrete": { - "material": "BLACK_CONCRETE" - }, - "blackconcrete": "black_concrete", - "bkconcrete": "black_concrete", - "blaconcrete": "black_concrete", - "black_concrete_powder": { - "material": "BLACK_CONCRETE_POWDER" - }, - "blackconcretepowder": "black_concrete_powder", - "bkconcretepowder": "black_concrete_powder", - "bkconcretesand": "black_concrete_powder", - "bkcpowder": "black_concrete_powder", - "bkcdust": "black_concrete_powder", - "bkcp": "black_concrete_powder", - "blaconcretepowder": "black_concrete_powder", - "blaconcretesand": "black_concrete_powder", - "blacpowder": "black_concrete_powder", - "blacdust": "black_concrete_powder", - "blacp": "black_concrete_powder", - "blackconcretesand": "black_concrete_powder", - "blackcpowder": "black_concrete_powder", - "blackcdust": "black_concrete_powder", - "blackcp": "black_concrete_powder", - "black_glazed_terracotta": { - "material": "BLACK_GLAZED_TERRACOTTA" - }, - "blackglazedterracotta": "black_glazed_terracotta", - "bkglazedtcota": "black_glazed_terracotta", - "bkglazedterra": "black_glazed_terracotta", - "bkglazedterracotta": "black_glazed_terracotta", - "bkglazedterracota": "black_glazed_terracotta", - "blaglazedtcota": "black_glazed_terracotta", - "blaglazedterra": "black_glazed_terracotta", - "blaglazedterracotta": "black_glazed_terracotta", - "blaglazedterracota": "black_glazed_terracotta", - "blackglazedtcota": "black_glazed_terracotta", - "blackglazedterra": "black_glazed_terracotta", - "blackglazedterracota": "black_glazed_terracotta", - "black_shulker_box": { - "material": "BLACK_SHULKER_BOX" - }, - "blackshulkerbox": "black_shulker_box", - "bkshulkerbox": "black_shulker_box", - "bkchest": "black_shulker_box", - "blashulkerbox": "black_shulker_box", - "blachest": "black_shulker_box", - "blackchest": "black_shulker_box", - "black_stained_glass": { - "material": "BLACK_STAINED_GLASS" - }, - "blackstainedglass": "black_stained_glass", - "bkglass": "black_stained_glass", - "bksglass": "black_stained_glass", - "bkstainedglass": "black_stained_glass", - "blaglass": "black_stained_glass", - "blasglass": "black_stained_glass", - "blastainedglass": "black_stained_glass", - "blackglass": "black_stained_glass", - "blacksglass": "black_stained_glass", - "black_stained_glass_pane": { - "material": "BLACK_STAINED_GLASS_PANE" - }, - "blackstainedglasspane": "black_stained_glass_pane", - "bkglasspane": "black_stained_glass_pane", - "bksglasspane": "black_stained_glass_pane", - "bkstainedglasspane": "black_stained_glass_pane", - "bkgpane": "black_stained_glass_pane", - "blaglasspane": "black_stained_glass_pane", - "blasglasspane": "black_stained_glass_pane", - "blastainedglasspane": "black_stained_glass_pane", - "blagpane": "black_stained_glass_pane", - "blackglasspane": "black_stained_glass_pane", - "blacksglasspane": "black_stained_glass_pane", - "blackgpane": "black_stained_glass_pane", - "black_terracotta": { - "material": "BLACK_TERRACOTTA" - }, - "blackterracotta": "black_terracotta", - "bkclay": "black_terracotta", - "bksclay": "black_terracotta", - "bkstainedclay": "black_terracotta", - "bkterra": "black_terracotta", - "bktcota": "black_terracotta", - "bkterracota": "black_terracotta", - "bkterracotta": "black_terracotta", - "blaclay": "black_terracotta", - "blasclay": "black_terracotta", - "blastainedclay": "black_terracotta", - "blaterra": "black_terracotta", - "blatcota": "black_terracotta", - "blaterracota": "black_terracotta", - "blaterracotta": "black_terracotta", - "blackclay": "black_terracotta", - "blacksclay": "black_terracotta", - "blackstainedclay": "black_terracotta", - "blackterra": "black_terracotta", - "blacktcota": "black_terracotta", - "blackterracota": "black_terracotta", - "black_wall_banner": { - "material": "BLACK_WALL_BANNER", - "unspawnable": true - }, - "blackwallbanner": "black_wall_banner", - "black_wool": { - "material": "BLACK_WOOL" - }, - "blackwool": "black_wool", - "bkwool": "black_wool", - "bkcloth": "black_wool", - "bkcotton": "black_wool", - "blawool": "black_wool", - "blacloth": "black_wool", - "blacotton": "black_wool", - "blackcloth": "black_wool", - "blackcotton": "black_wool", - "blaze_powder": { - "material": "BLAZE_POWDER" - }, - "blazepowder": "blaze_powder", - "blaze_rod": { - "material": "BLAZE_ROD" - }, - "blazerod": "blaze_rod", - "blaze_spawn_egg": { - "material": "BLAZE_SPAWN_EGG" - }, - "blazespawnegg": "blaze_spawn_egg", - "blazeegg": "blaze_spawn_egg", - "eggblaze": "blaze_spawn_egg", - "spawneggblaze": "blaze_spawn_egg", - "blazespawn": "blaze_spawn_egg", - "spawnblaze": "blaze_spawn_egg", - "blue_banner": { - "material": "BLUE_BANNER" - }, - "bluebanner": "blue_banner", - "blustandingbanner": "blue_banner", - "blubanner": "blue_banner", - "bluestandingbanner": "blue_banner", - "blue_bed": { - "material": "BLUE_BED" - }, - "bluebed": "blue_bed", - "blubed": "blue_bed", - "blue_carpet": { - "material": "BLUE_CARPET" - }, - "bluecarpet": "blue_carpet", - "blucarpet": "blue_carpet", - "blufloor": "blue_carpet", - "bluefloor": "blue_carpet", - "blue_concrete": { - "material": "BLUE_CONCRETE" - }, - "blueconcrete": "blue_concrete", - "bluconcrete": "blue_concrete", - "blue_concrete_powder": { - "material": "BLUE_CONCRETE_POWDER" - }, - "blueconcretepowder": "blue_concrete_powder", - "bluconcretepowder": "blue_concrete_powder", - "bluconcretesand": "blue_concrete_powder", - "blucpowder": "blue_concrete_powder", - "blucdust": "blue_concrete_powder", - "blucp": "blue_concrete_powder", - "blueconcretesand": "blue_concrete_powder", - "bluecpowder": "blue_concrete_powder", - "bluecdust": "blue_concrete_powder", - "bluecp": "blue_concrete_powder", - "blue_glazed_terracotta": { - "material": "BLUE_GLAZED_TERRACOTTA" - }, - "blueglazedterracotta": "blue_glazed_terracotta", - "bluglazedtcota": "blue_glazed_terracotta", - "bluglazedterra": "blue_glazed_terracotta", - "bluglazedterracotta": "blue_glazed_terracotta", - "bluglazedterracota": "blue_glazed_terracotta", - "blueglazedtcota": "blue_glazed_terracotta", - "blueglazedterra": "blue_glazed_terracotta", - "blueglazedterracota": "blue_glazed_terracotta", - "blue_ice": { - "material": "BLUE_ICE" - }, - "blueice": "blue_ice", - "blue_orchid": { - "material": "BLUE_ORCHID" - }, - "blueorchid": "blue_orchid", - "cyanorchid": "blue_orchid", - "lightblueorchid": "blue_orchid", - "lblueorchid": "blue_orchid", - "orchid": "blue_orchid", - "cyanflower": "blue_orchid", - "lightblueflower": "blue_orchid", - "lblueflower": "blue_orchid", - "blue_shulker_box": { - "material": "BLUE_SHULKER_BOX" - }, - "blueshulkerbox": "blue_shulker_box", - "blushulkerbox": "blue_shulker_box", - "bluchest": "blue_shulker_box", - "bluechest": "blue_shulker_box", - "blue_stained_glass": { - "material": "BLUE_STAINED_GLASS" - }, - "bluestainedglass": "blue_stained_glass", - "bluglass": "blue_stained_glass", - "blusglass": "blue_stained_glass", - "blustainedglass": "blue_stained_glass", - "blueglass": "blue_stained_glass", - "bluesglass": "blue_stained_glass", - "blue_stained_glass_pane": { - "material": "BLUE_STAINED_GLASS_PANE" - }, - "bluestainedglasspane": "blue_stained_glass_pane", - "bluglasspane": "blue_stained_glass_pane", - "blusglasspane": "blue_stained_glass_pane", - "blustainedglasspane": "blue_stained_glass_pane", - "blugpane": "blue_stained_glass_pane", - "blueglasspane": "blue_stained_glass_pane", - "bluesglasspane": "blue_stained_glass_pane", - "bluegpane": "blue_stained_glass_pane", - "blue_terracotta": { - "material": "BLUE_TERRACOTTA" - }, - "blueterracotta": "blue_terracotta", - "bluclay": "blue_terracotta", - "blusclay": "blue_terracotta", - "blustainedclay": "blue_terracotta", - "bluterra": "blue_terracotta", - "blutcota": "blue_terracotta", - "bluterracota": "blue_terracotta", - "bluterracotta": "blue_terracotta", - "blueclay": "blue_terracotta", - "bluesclay": "blue_terracotta", - "bluestainedclay": "blue_terracotta", - "blueterra": "blue_terracotta", - "bluetcota": "blue_terracotta", - "blueterracota": "blue_terracotta", - "blue_wall_banner": { - "material": "BLUE_WALL_BANNER", - "unspawnable": true - }, - "bluewallbanner": "blue_wall_banner", - "blue_wool": { - "material": "BLUE_WOOL" - }, - "bluewool": "blue_wool", - "bluwool": "blue_wool", - "blucloth": "blue_wool", - "blucotton": "blue_wool", - "bluecloth": "blue_wool", - "bluecotton": "blue_wool", - "bone": { - "material": "BONE" - }, - "bone_block": { - "material": "BONE_BLOCK" - }, - "boneblock": "bone_block", - "bone_meal": { - "material": "BONE_MEAL" - }, - "bonemeal": "bone_meal", - "book": { - "material": "BOOK" - }, - "bookshelf": { - "material": "BOOKSHELF" - }, - "bshelf": "bookshelf", - "bookcase": "bookshelf", - "casebook": "bookshelf", - "shelfbook": "bookshelf", - "bookblock": "bookshelf", - "blockbook": "bookshelf", - "bow": { - "material": "BOW" - }, - "bowl": { - "material": "BOWL" - }, - "brain_coral": { - "material": "BRAIN_CORAL" - }, - "braincoral": "brain_coral", - "brain_coral_block": { - "material": "BRAIN_CORAL_BLOCK" - }, - "braincoralblock": "brain_coral_block", - "brain_coral_fan": { - "material": "BRAIN_CORAL_FAN" - }, - "braincoralfan": "brain_coral_fan", - "brain_coral_wall_fan": { - "material": "BRAIN_CORAL_WALL_FAN", - "unspawnable": true - }, - "braincoralwallfan": "brain_coral_wall_fan", - "bread": { - "material": "BREAD" - }, - "brewing_stand": { - "material": "BREWING_STAND" - }, - "brewingstand": "brewing_stand", - "brick": { - "material": "BRICK" - }, - "bricks": { - "material": "BRICKS" - }, - "brick_slab": { - "material": "BRICK_SLAB" - }, - "brickslab": "brick_slab", - "brick_stairs": { - "material": "BRICK_STAIRS" - }, - "brickstairs": "brick_stairs", - "brown_banner": { - "material": "BROWN_BANNER" - }, - "brownbanner": "brown_banner", - "brostandingbanner": "brown_banner", - "brobanner": "brown_banner", - "brownstandingbanner": "brown_banner", - "brown_bed": { - "material": "BROWN_BED" - }, - "brownbed": "brown_bed", - "brobed": "brown_bed", - "brown_carpet": { - "material": "BROWN_CARPET" - }, - "browncarpet": "brown_carpet", - "brocarpet": "brown_carpet", - "brofloor": "brown_carpet", - "brownfloor": "brown_carpet", - "brown_concrete": { - "material": "BROWN_CONCRETE" - }, - "brownconcrete": "brown_concrete", - "broconcrete": "brown_concrete", - "brown_concrete_powder": { - "material": "BROWN_CONCRETE_POWDER" - }, - "brownconcretepowder": "brown_concrete_powder", - "broconcretepowder": "brown_concrete_powder", - "broconcretesand": "brown_concrete_powder", - "brocpowder": "brown_concrete_powder", - "brocdust": "brown_concrete_powder", - "brocp": "brown_concrete_powder", - "brownconcretesand": "brown_concrete_powder", - "browncpowder": "brown_concrete_powder", - "browncdust": "brown_concrete_powder", - "browncp": "brown_concrete_powder", - "brown_glazed_terracotta": { - "material": "BROWN_GLAZED_TERRACOTTA" - }, - "brownglazedterracotta": "brown_glazed_terracotta", - "broglazedtcota": "brown_glazed_terracotta", - "broglazedterra": "brown_glazed_terracotta", - "broglazedterracotta": "brown_glazed_terracotta", - "broglazedterracota": "brown_glazed_terracotta", - "brownglazedtcota": "brown_glazed_terracotta", - "brownglazedterra": "brown_glazed_terracotta", - "brownglazedterracota": "brown_glazed_terracotta", - "brown_mushroom": { - "material": "BROWN_MUSHROOM" - }, - "brownmushroom": "brown_mushroom", - "brownmush": "brown_mushroom", - "brownshroom": "brown_mushroom", - "bmushroom": "brown_mushroom", - "bmush": "brown_mushroom", - "bshroom": "brown_mushroom", - "brown_mushroom_block": { - "material": "BROWN_MUSHROOM_BLOCK" - }, - "brownmushroomblock": "brown_mushroom_block", - "giantbrownmushroom": "brown_mushroom_block", - "giantbrownmush": "brown_mushroom_block", - "gbrownmushroom": "brown_mushroom_block", - "gbrownmush": "brown_mushroom_block", - "hugebrownmushroom": "brown_mushroom_block", - "hugebrownmush": "brown_mushroom_block", - "hbrownmushroom": "brown_mushroom_block", - "hbrownmush": "brown_mushroom_block", - "bigbrownmushroom": "brown_mushroom_block", - "bigbrownmush": "brown_mushroom_block", - "bbrownmushroom": "brown_mushroom_block", - "bbrownmush": "brown_mushroom_block", - "giantbmushroom": "brown_mushroom_block", - "giantbmush": "brown_mushroom_block", - "gbmushroom": "brown_mushroom_block", - "gbmush": "brown_mushroom_block", - "hugebmushroom": "brown_mushroom_block", - "hugebmush": "brown_mushroom_block", - "hbmushroom": "brown_mushroom_block", - "hbmush": "brown_mushroom_block", - "bigbmushroom": "brown_mushroom_block", - "bigbmush": "brown_mushroom_block", - "bbmushroom": "brown_mushroom_block", - "bbmush": "brown_mushroom_block", - "brown_shulker_box": { - "material": "BROWN_SHULKER_BOX" - }, - "brownshulkerbox": "brown_shulker_box", - "broshulkerbox": "brown_shulker_box", - "brochest": "brown_shulker_box", - "brownchest": "brown_shulker_box", - "brown_stained_glass": { - "material": "BROWN_STAINED_GLASS" - }, - "brownstainedglass": "brown_stained_glass", - "broglass": "brown_stained_glass", - "brosglass": "brown_stained_glass", - "brostainedglass": "brown_stained_glass", - "brownglass": "brown_stained_glass", - "brownsglass": "brown_stained_glass", - "brown_stained_glass_pane": { - "material": "BROWN_STAINED_GLASS_PANE" - }, - "brownstainedglasspane": "brown_stained_glass_pane", - "broglasspane": "brown_stained_glass_pane", - "brosglasspane": "brown_stained_glass_pane", - "brostainedglasspane": "brown_stained_glass_pane", - "brogpane": "brown_stained_glass_pane", - "brownglasspane": "brown_stained_glass_pane", - "brownsglasspane": "brown_stained_glass_pane", - "browngpane": "brown_stained_glass_pane", - "brown_terracotta": { - "material": "BROWN_TERRACOTTA" - }, - "brownterracotta": "brown_terracotta", - "broclay": "brown_terracotta", - "brosclay": "brown_terracotta", - "brostainedclay": "brown_terracotta", - "broterra": "brown_terracotta", - "brotcota": "brown_terracotta", - "broterracota": "brown_terracotta", - "broterracotta": "brown_terracotta", - "brownclay": "brown_terracotta", - "brownsclay": "brown_terracotta", - "brownstainedclay": "brown_terracotta", - "brownterra": "brown_terracotta", - "browntcota": "brown_terracotta", - "brownterracota": "brown_terracotta", - "brown_wall_banner": { - "material": "BROWN_WALL_BANNER", - "unspawnable": true - }, - "brownwallbanner": "brown_wall_banner", - "brown_wool": { - "material": "BROWN_WOOL" - }, - "brownwool": "brown_wool", - "browool": "brown_wool", - "brocloth": "brown_wool", - "brocotton": "brown_wool", - "browncloth": "brown_wool", - "browncotton": "brown_wool", - "bubble_column": { - "material": "BUBBLE_COLUMN", - "unspawnable": true - }, - "bubblecolumn": "bubble_column", - "bubble_coral": { - "material": "BUBBLE_CORAL" - }, - "bubblecoral": "bubble_coral", - "bubble_coral_block": { - "material": "BUBBLE_CORAL_BLOCK" - }, - "bubblecoralblock": "bubble_coral_block", - "bubble_coral_fan": { - "material": "BUBBLE_CORAL_FAN" - }, - "bubblecoralfan": "bubble_coral_fan", - "bubble_coral_wall_fan": { - "material": "BUBBLE_CORAL_WALL_FAN", - "unspawnable": true - }, - "bubblecoralwallfan": "bubble_coral_wall_fan", - "bucket": { - "material": "BUCKET" - }, - "cactus": { - "material": "CACTUS" - }, - "cactuses": "cactus", - "cacti": "cactus", - "cactus_green": { - "material": "CACTUS_GREEN" - }, - "cactusgreen": "cactus_green", - "cake": { - "material": "CAKE" - }, - "carrot": { - "material": "CARROT" - }, - "carrots": { - "material": "CARROTS", - "unspawnable": true - }, - "carrot_on_a_stick": { - "material": "CARROT_ON_A_STICK" - }, - "carrotonastick": "carrot_on_a_stick", - "carved_pumpkin": { - "material": "CARVED_PUMPKIN" - }, - "carvedpumpkin": "carved_pumpkin", - "hollowpumpkin": "carved_pumpkin", - "cutpumpkin": "carved_pumpkin", - "oldpumpkin": "carved_pumpkin", - "legacypumpkin": "carved_pumpkin", - "cauldron": { - "material": "CAULDRON" - }, - "cave_air": { - "material": "CAVE_AIR", - "unspawnable": true - }, - "caveair": "cave_air", - "cave_spider_spawn_egg": { - "material": "CAVE_SPIDER_SPAWN_EGG" - }, - "cavespiderspawnegg": "cave_spider_spawn_egg", - "cavespideregg": "cave_spider_spawn_egg", - "eggcavespider": "cave_spider_spawn_egg", - "spawneggcavespider": "cave_spider_spawn_egg", - "cavespiderspawn": "cave_spider_spawn_egg", - "spawncavespider": "cave_spider_spawn_egg", - "chainmail_boots": { - "material": "CHAINMAIL_BOOTS" - }, - "chainmailboots": "chainmail_boots", - "chainmailshoes": "chainmail_boots", - "chainmboots": "chainmail_boots", - "chainmshoes": "chainmail_boots", - "cmailboots": "chainmail_boots", - "cmailshoes": "chainmail_boots", - "chainboots": "chainmail_boots", - "chainshoes": "chainmail_boots", - "cmboots": "chainmail_boots", - "cmshoes": "chainmail_boots", - "chainmail_chestplate": { - "material": "CHAINMAIL_CHESTPLATE" - }, - "chainmailchestplate": "chainmail_chestplate", - "chainmailplatebody": "chainmail_chestplate", - "chainmailplate": "chainmail_chestplate", - "chainmailshirt": "chainmail_chestplate", - "chainmailtunic": "chainmail_chestplate", - "chainmchestplate": "chainmail_chestplate", - "chainmplatebody": "chainmail_chestplate", - "chainmplate": "chainmail_chestplate", - "chainmshirt": "chainmail_chestplate", - "chainmtunic": "chainmail_chestplate", - "cmailchestplate": "chainmail_chestplate", - "cmailplatebody": "chainmail_chestplate", - "cmailplate": "chainmail_chestplate", - "cmailshirt": "chainmail_chestplate", - "cmailtunic": "chainmail_chestplate", - "chainchestplate": "chainmail_chestplate", - "chainplatebody": "chainmail_chestplate", - "chainplate": "chainmail_chestplate", - "chainshirt": "chainmail_chestplate", - "chaintunic": "chainmail_chestplate", - "cmchestplate": "chainmail_chestplate", - "cmplatebody": "chainmail_chestplate", - "cmplate": "chainmail_chestplate", - "cmshirt": "chainmail_chestplate", - "cmtunic": "chainmail_chestplate", - "chainmail_helmet": { - "material": "CHAINMAIL_HELMET" - }, - "chainmailhelmet": "chainmail_helmet", - "chainmailhelm": "chainmail_helmet", - "chainmailhat": "chainmail_helmet", - "chainmailcoif": "chainmail_helmet", - "chainmhelmet": "chainmail_helmet", - "chainmhelm": "chainmail_helmet", - "chainmhat": "chainmail_helmet", - "chainmcoif": "chainmail_helmet", - "cmailhelmet": "chainmail_helmet", - "cmailhelm": "chainmail_helmet", - "cmailhat": "chainmail_helmet", - "cmailcoif": "chainmail_helmet", - "chainhelmet": "chainmail_helmet", - "chainhelm": "chainmail_helmet", - "chainhat": "chainmail_helmet", - "chaincoif": "chainmail_helmet", - "cmhelmet": "chainmail_helmet", - "cmhelm": "chainmail_helmet", - "cmhat": "chainmail_helmet", - "cmcoif": "chainmail_helmet", - "chainmail_leggings": { - "material": "CHAINMAIL_LEGGINGS" - }, - "chainmailleggings": "chainmail_leggings", - "chainmaillegs": "chainmail_leggings", - "chainmailpants": "chainmail_leggings", - "chainmleggings": "chainmail_leggings", - "chainmlegs": "chainmail_leggings", - "chainmpants": "chainmail_leggings", - "cmailleggings": "chainmail_leggings", - "cmaillegs": "chainmail_leggings", - "cmailpants": "chainmail_leggings", - "chainleggings": "chainmail_leggings", - "chainlegs": "chainmail_leggings", - "chainpants": "chainmail_leggings", - "cmleggings": "chainmail_leggings", - "cmlegs": "chainmail_leggings", - "cmpants": "chainmail_leggings", - "chain_command_block": { - "material": "CHAIN_COMMAND_BLOCK" - }, - "chaincommandblock": "chain_command_block", - "charcoal": { - "material": "CHARCOAL" - }, - "chest": { - "material": "CHEST" - }, - "container": "chest", - "chest_minecart": { - "material": "CHEST_MINECART" - }, - "chestminecart": "chest_minecart", - "storageminecart": "chest_minecart", - "storagemcart": "chest_minecart", - "storagemc": "chest_minecart", - "storagecart": "chest_minecart", - "chestmcart": "chest_minecart", - "chestmc": "chest_minecart", - "chestcart": "chest_minecart", - "sminecart": "chest_minecart", - "smcart": "chest_minecart", - "smc": "chest_minecart", - "scart": "chest_minecart", - "cminecart": "chest_minecart", - "cmcart": "chest_minecart", - "cmc": "chest_minecart", - "ccart": "chest_minecart", - "chicken": { - "material": "CHICKEN" - }, - "rawchicken": "chicken", - "rachicken": "chicken", - "uncookedchicken": "chicken", - "plainchicken": "chicken", - "chicken_spawn_egg": { - "material": "CHICKEN_SPAWN_EGG" - }, - "chickenspawnegg": "chicken_spawn_egg", - "chickenegg": "chicken_spawn_egg", - "eggchicken": "chicken_spawn_egg", - "spawneggchicken": "chicken_spawn_egg", - "chickenspawn": "chicken_spawn_egg", - "spawnchicken": "chicken_spawn_egg", - "chipped_anvil": { - "material": "CHIPPED_ANVIL" - }, - "chippedanvil": "chipped_anvil", - "slightlydamagedanvil": "chipped_anvil", - "slightdamageanvil": "chipped_anvil", - "chiseled_quartz_block": { - "material": "CHISELED_QUARTZ_BLOCK" - }, - "chiseledquartzblock": "chiseled_quartz_block", - "chiselquartzblock": "chiseled_quartz_block", - "cquartzblock": "chiseled_quartz_block", - "cqblock": "chiseled_quartz_block", - "pillarquartzblock": "chiseled_quartz_block", - "pquartzblock": "chiseled_quartz_block", - "pqblock": "chiseled_quartz_block", - "chiseled_red_sandstone": { - "material": "CHISELED_RED_SANDSTONE" - }, - "chiseledredsandstone": "chiseled_red_sandstone", - "crstone": "chiseled_red_sandstone", - "redsandstonechiseled": "chiseled_red_sandstone", - "circleredsandstone": "chiseled_red_sandstone", - "ciredsandstone": "chiseled_red_sandstone", - "chiseledrsandstone": "chiseled_red_sandstone", - "circlersandstone": "chiseled_red_sandstone", - "cirsandstone": "chiseled_red_sandstone", - "chiseledrsandst": "chiseled_red_sandstone", - "circlersandst": "chiseled_red_sandstone", - "cirsandst": "chiseled_red_sandstone", - "chiseledrsastone": "chiseled_red_sandstone", - "circlersastone": "chiseled_red_sandstone", - "cirsastone": "chiseled_red_sandstone", - "chiseled_sandstone": { - "material": "CHISELED_SANDSTONE" - }, - "chiseledsandstone": "chiseled_sandstone", - "cpstone": "chiseled_sandstone", - "creepersandstone": "chiseled_sandstone", - "creepersastone": "chiseled_sandstone", - "creepsandstone": "chiseled_sandstone", - "creepsastone": "chiseled_sandstone", - "csandstone": "chiseled_sandstone", - "csastone": "chiseled_sandstone", - "hieroglyphicsandstone": "chiseled_sandstone", - "hieroglyphicsastone": "chiseled_sandstone", - "hieroglyphsandstone": "chiseled_sandstone", - "hieroglyphsastone": "chiseled_sandstone", - "hsandstone": "chiseled_sandstone", - "hsastone": "chiseled_sandstone", - "pyramidsandstone": "chiseled_sandstone", - "pyramidsastone": "chiseled_sandstone", - "psandstone": "chiseled_sandstone", - "psastone": "chiseled_sandstone", - "chiseledsastone": "chiseled_sandstone", - "chiselsandstone": "chiseled_sandstone", - "chiselsastone": "chiseled_sandstone", - "circlesandstone": "chiseled_sandstone", - "cisandstone": "chiseled_sandstone", - "chiseledsandst": "chiseled_sandstone", - "circlesandst": "chiseled_sandstone", - "cisandst": "chiseled_sandstone", - "circlesastone": "chiseled_sandstone", - "cisastone": "chiseled_sandstone", - "chiseled_stone_bricks": { - "material": "CHISELED_STONE_BRICKS" - }, - "chiseledstonebricks": "chiseled_stone_bricks", - "chiseledstonebrick": "chiseled_stone_bricks", - "circlestonebrick": "chiseled_stone_bricks", - "cistonebrick": "chiseled_stone_bricks", - "chiseledstonebrickblock": "chiseled_stone_bricks", - "circlestonebrickblock": "chiseled_stone_bricks", - "cistonebrickblock": "chiseled_stone_bricks", - "chiseledstonebb": "chiseled_stone_bricks", - "circlestonebb": "chiseled_stone_bricks", - "cistonebb": "chiseled_stone_bricks", - "chiseledsbrick": "chiseled_stone_bricks", - "circlesbrick": "chiseled_stone_bricks", - "cisbrick": "chiseled_stone_bricks", - "chiseledsbricks": "chiseled_stone_bricks", - "circlesbricks": "chiseled_stone_bricks", - "cisbricks": "chiseled_stone_bricks", - "chiseledsbrickblock": "chiseled_stone_bricks", - "circlesbrickblock": "chiseled_stone_bricks", - "cisbrickblock": "chiseled_stone_bricks", - "circlestonebricks": "chiseled_stone_bricks", - "cistonebricks": "chiseled_stone_bricks", - "chiseledsbb": "chiseled_stone_bricks", - "circlesbb": "chiseled_stone_bricks", - "cisbb": "chiseled_stone_bricks", - "chorus_flower": { - "material": "CHORUS_FLOWER" - }, - "chorusflower": "chorus_flower", - "chorus_fruit": { - "material": "CHORUS_FRUIT" - }, - "chorusfruit": "chorus_fruit", - "chorus": "chorus_fruit", - "unpoppedchorus": "chorus_fruit", - "unpopchorus": "chorus_fruit", - "chorus_plant": { - "material": "CHORUS_PLANT" - }, - "chorusplant": "chorus_plant", - "clay": { - "material": "CLAY" - }, - "clay_ball": { - "material": "CLAY_BALL" - }, - "clayball": "clay_ball", - "clock": { - "material": "CLOCK" - }, - "coal": { - "material": "COAL" - }, - "coal_block": { - "material": "COAL_BLOCK" - }, - "coalblock": "coal_block", - "blockcoal": "coal_block", - "cblock": "coal_block", - "blockc": "coal_block", - "coal_ore": { - "material": "COAL_ORE" - }, - "coalore": "coal_ore", - "coalo": "coal_ore", - "orecoal": "coal_ore", - "ocoal": "coal_ore", - "core": "coal_ore", - "co": "coal_ore", - "orec": "coal_ore", - "oc": "coal_ore", - "coarse_dirt": { - "material": "COARSE_DIRT" - }, - "coarsedirt": "coarse_dirt", - "cdirt": "coarse_dirt", - "grasslessdirt": "coarse_dirt", - "grasslessearth": "coarse_dirt", - "grasslessland": "coarse_dirt", - "coarseland": "coarse_dirt", - "coarseearth": "coarse_dirt", - "cobblestone": { - "material": "COBBLESTONE" - }, - "cstone": "cobblestone", - "cobble": "cobblestone", - "cobblestone_slab": { - "material": "COBBLESTONE_SLAB" - }, - "cobblestoneslab": "cobblestone_slab", - "cobblestonesl": "cobblestone_slab", - "cstoneslab": "cobblestone_slab", - "cstonesl": "cobblestone_slab", - "cobbleslab": "cobblestone_slab", - "cobblesl": "cobblestone_slab", - "cobblestone_stairs": { - "material": "COBBLESTONE_STAIRS" - }, - "cobblestonestairs": "cobblestone_stairs", - "cobblestonestair": "cobblestone_stairs", - "cobblestonest": "cobblestone_stairs", - "cstonestair": "cobblestone_stairs", - "cstonestairs": "cobblestone_stairs", - "cstonest": "cobblestone_stairs", - "cobblestair": "cobblestone_stairs", - "cobblestairs": "cobblestone_stairs", - "cobblest": "cobblestone_stairs", - "cobblestone_wall": { - "material": "COBBLESTONE_WALL" - }, - "cobblestonewall": "cobblestone_wall", - "cobblewall": "cobblestone_wall", - "cstonewall": "cobblestone_wall", - "cswall": "cobblestone_wall", - "cwall": "cobblestone_wall", - "cobblestonefence": "cobblestone_wall", - "cobblefence": "cobblestone_wall", - "cstonefence": "cobblestone_wall", - "csfence": "cobblestone_wall", - "cfence": "cobblestone_wall", - "stonewall": "cobblestone_wall", - "swall": "cobblestone_wall", - "cobweb": { - "material": "COBWEB" - }, - "spiderweb": "cobweb", - "sweb": "cobweb", - "cweb": "cobweb", - "web": "cobweb", - "cocoa": { - "material": "COCOA", - "unspawnable": true - }, - "cocoa_beans": { - "material": "COCOA_BEANS" - }, - "cocoabeans": "cocoa_beans", - "cocoaplant": "cocoa_beans", - "cocoplant": "cocoa_beans", - "cplant": "cocoa_beans", - "cocoafruit": "cocoa_beans", - "cocofruit": "cocoa_beans", - "cfruit": "cocoa_beans", - "cocoapod": "cocoa_beans", - "cocopod": "cocoa_beans", - "cpod": "cocoa_beans", - "cod": { - "material": "COD" - }, - "rawfish": "cod", - "rawcod": "cod", - "rafish": "cod", - "racod": "cod", - "uncookedfish": "cod", - "uncookedcod": "cod", - "plainfish": "cod", - "plaincod": "cod", - "fish": "cod", - "cod_bucket": { - "material": "COD_BUCKET" - }, - "codbucket": "cod_bucket", - "codpail": "cod_bucket", - "cod_spawn_egg": { - "material": "COD_SPAWN_EGG" - }, - "codspawnegg": "cod_spawn_egg", - "codegg": "cod_spawn_egg", - "eggcod": "cod_spawn_egg", - "spawneggcod": "cod_spawn_egg", - "codspawn": "cod_spawn_egg", - "spawncod": "cod_spawn_egg", - "command_block": { - "material": "COMMAND_BLOCK" - }, - "commandblock": "command_block", - "blockcommand": "command_block", - "cmdblock": "command_block", - "blockcmd": "command_block", - "macroblock": "command_block", - "blockmacro": "command_block", - "command_block_minecart": { - "material": "COMMAND_BLOCK_MINECART" - }, - "commandblockminecart": "command_block_minecart", - "cmdblockminecart": "command_block_minecart", - "cmdblockmcart": "command_block_minecart", - "cmdblockmc": "command_block_minecart", - "cmdblockcart": "command_block_minecart", - "cblockminecart": "command_block_minecart", - "cblockmcart": "command_block_minecart", - "cblockmc": "command_block_minecart", - "cblockcart": "command_block_minecart", - "commandminecart": "command_block_minecart", - "commandmcart": "command_block_minecart", - "commandmc": "command_block_minecart", - "commandcart": "command_block_minecart", - "cmdminecart": "command_block_minecart", - "cmdmcart": "command_block_minecart", - "cmdmc": "command_block_minecart", - "cmdcart": "command_block_minecart", - "cbminecart": "command_block_minecart", - "cbmcart": "command_block_minecart", - "cbmc": "command_block_minecart", - "cbcart": "command_block_minecart", - "commandblockmcart": "command_block_minecart", - "commandblockmc": "command_block_minecart", - "commandblockcart": "command_block_minecart", - "comparator": { - "material": "COMPARATOR" - }, - "compass": { - "material": "COMPASS" - }, - "conduit": { - "material": "CONDUIT" - }, - "cooked_beef": { - "material": "COOKED_BEEF" - }, - "cookedbeef": "cooked_beef", - "beefcooked": "cooked_beef", - "beefcook": "cooked_beef", - "beefc": "cooked_beef", - "beefgrilled": "cooked_beef", - "beefgrill": "cooked_beef", - "beefg": "cooked_beef", - "beefroasted": "cooked_beef", - "beefroast": "cooked_beef", - "beefro": "cooked_beef", - "beefbbq": "cooked_beef", - "beeftoasted": "cooked_beef", - "cookbeef": "cooked_beef", - "cbeef": "cooked_beef", - "grilledbeef": "cooked_beef", - "grillbeef": "cooked_beef", - "gbeef": "cooked_beef", - "roastedbeef": "cooked_beef", - "roastbeef": "cooked_beef", - "robeef": "cooked_beef", - "bbqbeef": "cooked_beef", - "toastedbeef": "cooked_beef", - "steakcooked": "cooked_beef", - "steakcook": "cooked_beef", - "steakc": "cooked_beef", - "steakgrilled": "cooked_beef", - "steakgrill": "cooked_beef", - "steakg": "cooked_beef", - "steakroasted": "cooked_beef", - "steakroast": "cooked_beef", - "steakro": "cooked_beef", - "steakbbq": "cooked_beef", - "steaktoasted": "cooked_beef", - "cookedsteak": "cooked_beef", - "cooksteak": "cooked_beef", - "csteak": "cooked_beef", - "grilledsteak": "cooked_beef", - "grillsteak": "cooked_beef", - "gsteak": "cooked_beef", - "roastedsteak": "cooked_beef", - "roaststeak": "cooked_beef", - "rosteak": "cooked_beef", - "bbqsteak": "cooked_beef", - "toastedsteak": "cooked_beef", - "cowmeatcooked": "cooked_beef", - "cowmeatcook": "cooked_beef", - "cowmeatc": "cooked_beef", - "cowmeatgrilled": "cooked_beef", - "cowmeatgrill": "cooked_beef", - "cowmeatg": "cooked_beef", - "cowmeatroasted": "cooked_beef", - "cowmeatroast": "cooked_beef", - "cowmeatro": "cooked_beef", - "cowmeatbbq": "cooked_beef", - "cowmeattoasted": "cooked_beef", - "cookedcowmeat": "cooked_beef", - "cookcowmeat": "cooked_beef", - "ccowmeat": "cooked_beef", - "grilledcowmeat": "cooked_beef", - "grillcowmeat": "cooked_beef", - "gcowmeat": "cooked_beef", - "roastedcowmeat": "cooked_beef", - "roastcowmeat": "cooked_beef", - "rocowmeat": "cooked_beef", - "bbqcowmeat": "cooked_beef", - "toastedcowmeat": "cooked_beef", - "cooked_chicken": { - "material": "COOKED_CHICKEN" - }, - "cookedchicken": "cooked_chicken", - "chickencooked": "cooked_chicken", - "chickencook": "cooked_chicken", - "chickenc": "cooked_chicken", - "chickengrilled": "cooked_chicken", - "chickengrill": "cooked_chicken", - "chickeng": "cooked_chicken", - "chickenroasted": "cooked_chicken", - "chickenroast": "cooked_chicken", - "chickenro": "cooked_chicken", - "chickenbbq": "cooked_chicken", - "chickentoasted": "cooked_chicken", - "cookchicken": "cooked_chicken", - "cchicken": "cooked_chicken", - "grilledchicken": "cooked_chicken", - "grillchicken": "cooked_chicken", - "gchicken": "cooked_chicken", - "roastedchicken": "cooked_chicken", - "roastchicken": "cooked_chicken", - "rochicken": "cooked_chicken", - "bbqchicken": "cooked_chicken", - "toastedchicken": "cooked_chicken", - "cooked_cod": { - "material": "COOKED_COD" - }, - "cookedcod": "cooked_cod", - "fishcooked": "cooked_cod", - "fishcook": "cooked_cod", - "fishc": "cooked_cod", - "fishgrilled": "cooked_cod", - "fishgrill": "cooked_cod", - "fishg": "cooked_cod", - "fishroasted": "cooked_cod", - "fishroast": "cooked_cod", - "fishro": "cooked_cod", - "fishbbq": "cooked_cod", - "fishtoasted": "cooked_cod", - "cookedfish": "cooked_cod", - "cookfish": "cooked_cod", - "cfish": "cooked_cod", - "grilledfish": "cooked_cod", - "grillfish": "cooked_cod", - "gfish": "cooked_cod", - "roastedfish": "cooked_cod", - "roastfish": "cooked_cod", - "rofish": "cooked_cod", - "bbqfish": "cooked_cod", - "toastedfish": "cooked_cod", - "codcooked": "cooked_cod", - "codcook": "cooked_cod", - "codc": "cooked_cod", - "codgrilled": "cooked_cod", - "codgrill": "cooked_cod", - "codg": "cooked_cod", - "codroasted": "cooked_cod", - "codroast": "cooked_cod", - "codro": "cooked_cod", - "codbbq": "cooked_cod", - "codtoasted": "cooked_cod", - "cookcod": "cooked_cod", - "ccod": "cooked_cod", - "grilledcod": "cooked_cod", - "grillcod": "cooked_cod", - "gcod": "cooked_cod", - "roastedcod": "cooked_cod", - "roastcod": "cooked_cod", - "rocod": "cooked_cod", - "bbqcod": "cooked_cod", - "toastedcod": "cooked_cod", - "cooked_mutton": { - "material": "COOKED_MUTTON" - }, - "cookedmutton": "cooked_mutton", - "muttoncooked": "cooked_mutton", - "muttoncook": "cooked_mutton", - "muttonc": "cooked_mutton", - "muttongrilled": "cooked_mutton", - "muttongrill": "cooked_mutton", - "muttong": "cooked_mutton", - "muttonroasted": "cooked_mutton", - "muttonroast": "cooked_mutton", - "muttonro": "cooked_mutton", - "muttonbbq": "cooked_mutton", - "muttontoasted": "cooked_mutton", - "cookmutton": "cooked_mutton", - "cmutton": "cooked_mutton", - "grilledmutton": "cooked_mutton", - "grillmutton": "cooked_mutton", - "gmutton": "cooked_mutton", - "roastedmutton": "cooked_mutton", - "roastmutton": "cooked_mutton", - "romutton": "cooked_mutton", - "bbqmutton": "cooked_mutton", - "toastedmutton": "cooked_mutton", - "sheepmeatcooked": "cooked_mutton", - "sheepmeatcook": "cooked_mutton", - "sheepmeatc": "cooked_mutton", - "sheepmeatgrilled": "cooked_mutton", - "sheepmeatgrill": "cooked_mutton", - "sheepmeatg": "cooked_mutton", - "sheepmeatroasted": "cooked_mutton", - "sheepmeatroast": "cooked_mutton", - "sheepmeatro": "cooked_mutton", - "sheepmeatbbq": "cooked_mutton", - "sheepmeattoasted": "cooked_mutton", - "cookedsheepmeat": "cooked_mutton", - "cooksheepmeat": "cooked_mutton", - "csheepmeat": "cooked_mutton", - "grilledsheepmeat": "cooked_mutton", - "grillsheepmeat": "cooked_mutton", - "gsheepmeat": "cooked_mutton", - "roastedsheepmeat": "cooked_mutton", - "roastsheepmeat": "cooked_mutton", - "rosheepmeat": "cooked_mutton", - "bbqsheepmeat": "cooked_mutton", - "toastedsheepmeat": "cooked_mutton", - "cooked_porkchop": { - "material": "COOKED_PORKCHOP" - }, - "cookedporkchop": "cooked_porkchop", - "porkcooked": "cooked_porkchop", - "porkcook": "cooked_porkchop", - "porkc": "cooked_porkchop", - "porkgrilled": "cooked_porkchop", - "porkgrill": "cooked_porkchop", - "porkg": "cooked_porkchop", - "porkroasted": "cooked_porkchop", - "porkroast": "cooked_porkchop", - "porkro": "cooked_porkchop", - "porkbbq": "cooked_porkchop", - "porktoasted": "cooked_porkchop", - "cookedpork": "cooked_porkchop", - "cookpork": "cooked_porkchop", - "cpork": "cooked_porkchop", - "grilledpork": "cooked_porkchop", - "grillpork": "cooked_porkchop", - "gpork": "cooked_porkchop", - "roastedpork": "cooked_porkchop", - "roastpork": "cooked_porkchop", - "ropork": "cooked_porkchop", - "bbqpork": "cooked_porkchop", - "toastedpork": "cooked_porkchop", - "porkchopcooked": "cooked_porkchop", - "porkchopcook": "cooked_porkchop", - "porkchopc": "cooked_porkchop", - "porkchopgrilled": "cooked_porkchop", - "porkchopgrill": "cooked_porkchop", - "porkchopg": "cooked_porkchop", - "porkchoproasted": "cooked_porkchop", - "porkchoproast": "cooked_porkchop", - "porkchopro": "cooked_porkchop", - "porkchopbbq": "cooked_porkchop", - "porkchoptoasted": "cooked_porkchop", - "cookporkchop": "cooked_porkchop", - "cporkchop": "cooked_porkchop", - "grilledporkchop": "cooked_porkchop", - "grillporkchop": "cooked_porkchop", - "gporkchop": "cooked_porkchop", - "roastedporkchop": "cooked_porkchop", - "roastporkchop": "cooked_porkchop", - "roporkchop": "cooked_porkchop", - "bbqporkchop": "cooked_porkchop", - "toastedporkchop": "cooked_porkchop", - "cooked_rabbit": { - "material": "COOKED_RABBIT" - }, - "cookedrabbit": "cooked_rabbit", - "rabbitcooked": "cooked_rabbit", - "rabbitcook": "cooked_rabbit", - "rabbitc": "cooked_rabbit", - "rabbitgrilled": "cooked_rabbit", - "rabbitgrill": "cooked_rabbit", - "rabbitg": "cooked_rabbit", - "rabbitroasted": "cooked_rabbit", - "rabbitroast": "cooked_rabbit", - "rabbitro": "cooked_rabbit", - "rabbitbbq": "cooked_rabbit", - "rabbittoasted": "cooked_rabbit", - "cookrabbit": "cooked_rabbit", - "crabbit": "cooked_rabbit", - "grilledrabbit": "cooked_rabbit", - "grillrabbit": "cooked_rabbit", - "grabbit": "cooked_rabbit", - "roastedrabbit": "cooked_rabbit", - "roastrabbit": "cooked_rabbit", - "rorabbit": "cooked_rabbit", - "bbqrabbit": "cooked_rabbit", - "toastedrabbit": "cooked_rabbit", - "harecooked": "cooked_rabbit", - "harecook": "cooked_rabbit", - "harec": "cooked_rabbit", - "haregrilled": "cooked_rabbit", - "haregrill": "cooked_rabbit", - "hareg": "cooked_rabbit", - "hareroasted": "cooked_rabbit", - "hareroast": "cooked_rabbit", - "harero": "cooked_rabbit", - "harebbq": "cooked_rabbit", - "haretoasted": "cooked_rabbit", - "cookedhare": "cooked_rabbit", - "cookhare": "cooked_rabbit", - "chare": "cooked_rabbit", - "grilledhare": "cooked_rabbit", - "grillhare": "cooked_rabbit", - "ghare": "cooked_rabbit", - "roastedhare": "cooked_rabbit", - "roasthare": "cooked_rabbit", - "rohare": "cooked_rabbit", - "bbqhare": "cooked_rabbit", - "toastedhare": "cooked_rabbit", - "hasenpfeffercooked": "cooked_rabbit", - "hasenpfeffercook": "cooked_rabbit", - "hasenpfefferc": "cooked_rabbit", - "hasenpfeffergrilled": "cooked_rabbit", - "hasenpfeffergrill": "cooked_rabbit", - "hasenpfefferg": "cooked_rabbit", - "hasenpfefferroasted": "cooked_rabbit", - "hasenpfefferroast": "cooked_rabbit", - "hasenpfefferro": "cooked_rabbit", - "hasenpfefferbbq": "cooked_rabbit", - "hasenpfeffertoasted": "cooked_rabbit", - "cookedhasenpfeffer": "cooked_rabbit", - "cookhasenpfeffer": "cooked_rabbit", - "chasenpfeffer": "cooked_rabbit", - "grilledhasenpfeffer": "cooked_rabbit", - "grillhasenpfeffer": "cooked_rabbit", - "ghasenpfeffer": "cooked_rabbit", - "roastedhasenpfeffer": "cooked_rabbit", - "roasthasenpfeffer": "cooked_rabbit", - "rohasenpfeffer": "cooked_rabbit", - "bbqhasenpfeffer": "cooked_rabbit", - "toastedhasenpfeffer": "cooked_rabbit", - "cooked_salmon": { - "material": "COOKED_SALMON" - }, - "cookedsalmon": "cooked_salmon", - "salmoncooked": "cooked_salmon", - "salmoncook": "cooked_salmon", - "salmonc": "cooked_salmon", - "salmongrilled": "cooked_salmon", - "salmongrill": "cooked_salmon", - "salmong": "cooked_salmon", - "salmonroasted": "cooked_salmon", - "salmonroast": "cooked_salmon", - "salmonro": "cooked_salmon", - "salmonbbq": "cooked_salmon", - "salmontoasted": "cooked_salmon", - "cooksalmon": "cooked_salmon", - "csalmon": "cooked_salmon", - "grilledsalmon": "cooked_salmon", - "grillsalmon": "cooked_salmon", - "gsalmon": "cooked_salmon", - "roastedsalmon": "cooked_salmon", - "roastsalmon": "cooked_salmon", - "rosalmon": "cooked_salmon", - "bbqsalmon": "cooked_salmon", - "toastedsalmon": "cooked_salmon", - "salmonfishcooked": "cooked_salmon", - "salmonfishcook": "cooked_salmon", - "salmonfishc": "cooked_salmon", - "salmonfishgrilled": "cooked_salmon", - "salmonfishgrill": "cooked_salmon", - "salmonfishg": "cooked_salmon", - "salmonfishroasted": "cooked_salmon", - "salmonfishroast": "cooked_salmon", - "salmonfishro": "cooked_salmon", - "salmonfishbbq": "cooked_salmon", - "salmonfishtoasted": "cooked_salmon", - "cookedsalmonfish": "cooked_salmon", - "cooksalmonfish": "cooked_salmon", - "csalmonfish": "cooked_salmon", - "grilledsalmonfish": "cooked_salmon", - "grillsalmonfish": "cooked_salmon", - "gsalmonfish": "cooked_salmon", - "roastedsalmonfish": "cooked_salmon", - "roastsalmonfish": "cooked_salmon", - "rosalmonfish": "cooked_salmon", - "bbqsalmonfish": "cooked_salmon", - "toastedsalmonfish": "cooked_salmon", - "sfishcooked": "cooked_salmon", - "sfishcook": "cooked_salmon", - "sfishc": "cooked_salmon", - "sfishgrilled": "cooked_salmon", - "sfishgrill": "cooked_salmon", - "sfishg": "cooked_salmon", - "sfishroasted": "cooked_salmon", - "sfishroast": "cooked_salmon", - "sfishro": "cooked_salmon", - "sfishbbq": "cooked_salmon", - "sfishtoasted": "cooked_salmon", - "cookedsfish": "cooked_salmon", - "cooksfish": "cooked_salmon", - "csfish": "cooked_salmon", - "grilledsfish": "cooked_salmon", - "grillsfish": "cooked_salmon", - "gsfish": "cooked_salmon", - "roastedsfish": "cooked_salmon", - "roastsfish": "cooked_salmon", - "rosfish": "cooked_salmon", - "bbqsfish": "cooked_salmon", - "toastedsfish": "cooked_salmon", - "fishscooked": "cooked_salmon", - "fishscook": "cooked_salmon", - "fishsc": "cooked_salmon", - "fishsgrilled": "cooked_salmon", - "fishsgrill": "cooked_salmon", - "fishsg": "cooked_salmon", - "fishsroasted": "cooked_salmon", - "fishsroast": "cooked_salmon", - "fishsro": "cooked_salmon", - "fishsbbq": "cooked_salmon", - "fishstoasted": "cooked_salmon", - "cookedfishs": "cooked_salmon", - "cookfishs": "cooked_salmon", - "cfishs": "cooked_salmon", - "grilledfishs": "cooked_salmon", - "grillfishs": "cooked_salmon", - "gfishs": "cooked_salmon", - "roastedfishs": "cooked_salmon", - "roastfishs": "cooked_salmon", - "rofishs": "cooked_salmon", - "bbqfishs": "cooked_salmon", - "toastedfishs": "cooked_salmon", - "cookie": { - "material": "COOKIE" - }, - "cow_spawn_egg": { - "material": "COW_SPAWN_EGG" - }, - "cowspawnegg": "cow_spawn_egg", - "cowegg": "cow_spawn_egg", - "eggcow": "cow_spawn_egg", - "spawneggcow": "cow_spawn_egg", - "cowspawn": "cow_spawn_egg", - "spawncow": "cow_spawn_egg", - "cracked_stone_bricks": { - "material": "CRACKED_STONE_BRICKS" - }, - "crackedstonebricks": "cracked_stone_bricks", - "crackedstonebrick": "cracked_stone_bricks", - "crackstonebrick": "cracked_stone_bricks", - "crstonebrick": "cracked_stone_bricks", - "cstonebrick": "cracked_stone_bricks", - "crackedstonebrickblock": "cracked_stone_bricks", - "crackstonebrickblock": "cracked_stone_bricks", - "crstonebrickblock": "cracked_stone_bricks", - "cstonebrickblock": "cracked_stone_bricks", - "crackedstonebb": "cracked_stone_bricks", - "crackstonebb": "cracked_stone_bricks", - "crstonebb": "cracked_stone_bricks", - "cstonebb": "cracked_stone_bricks", - "crackedsbrick": "cracked_stone_bricks", - "cracksbrick": "cracked_stone_bricks", - "crsbrick": "cracked_stone_bricks", - "csbrick": "cracked_stone_bricks", - "crackedsbricks": "cracked_stone_bricks", - "cracksbricks": "cracked_stone_bricks", - "crsbricks": "cracked_stone_bricks", - "csbricks": "cracked_stone_bricks", - "crackedsbrickblock": "cracked_stone_bricks", - "cracksbrickblock": "cracked_stone_bricks", - "crsbrickblock": "cracked_stone_bricks", - "csbrickblock": "cracked_stone_bricks", - "crackstonebricks": "cracked_stone_bricks", - "crstonebricks": "cracked_stone_bricks", - "cstonebricks": "cracked_stone_bricks", - "crackedsbb": "cracked_stone_bricks", - "cracksbb": "cracked_stone_bricks", - "crsbb": "cracked_stone_bricks", - "csbb": "cracked_stone_bricks", - "crafting_table": { - "material": "CRAFTING_TABLE" - }, - "craftingtable": "crafting_table", - "workbench": "crafting_table", - "craftingbench": "crafting_table", - "crafterbench": "crafting_table", - "craftbench": "crafting_table", - "worktable": "crafting_table", - "craftertable": "crafting_table", - "crafttable": "crafting_table", - "wbench": "crafting_table", - "cbench": "crafting_table", - "creeper_head": { - "material": "CREEPER_HEAD" - }, - "creeperhead": "creeper_head", - "creeperskull": "creeper_head", - "headcreeper": "creeper_head", - "stevecreeper": "creeper_head", - "creepermask": "creeper_head", - "creeperheadmask": "creeper_head", - "crhead": "creeper_head", - "crskull": "creeper_head", - "headcr": "creeper_head", - "stevecr": "creeper_head", - "crmask": "creeper_head", - "crheadmask": "creeper_head", - "creeper_spawn_egg": { - "material": "CREEPER_SPAWN_EGG" - }, - "creeperspawnegg": "creeper_spawn_egg", - "creeperegg": "creeper_spawn_egg", - "eggcreeper": "creeper_spawn_egg", - "spawneggcreeper": "creeper_spawn_egg", - "creeperspawn": "creeper_spawn_egg", - "spawncreeper": "creeper_spawn_egg", - "cregg": "creeper_spawn_egg", - "eggcr": "creeper_spawn_egg", - "crspawnegg": "creeper_spawn_egg", - "spawneggcr": "creeper_spawn_egg", - "crspawn": "creeper_spawn_egg", - "spawncr": "creeper_spawn_egg", - "creeper_wall_head": { - "material": "CREEPER_WALL_HEAD", - "unspawnable": true - }, - "creeperwallhead": "creeper_wall_head", - "cut_red_sandstone": { - "material": "CUT_RED_SANDSTONE" - }, - "cutredsandstone": "cut_red_sandstone", - "srstone": "cut_red_sandstone", - "redsandstonesmooth": "cut_red_sandstone", - "smoothredsandstone": "smooth_red_sandstone", - "cutrsandstone": "cut_red_sandstone", - "cutrsandst": "cut_red_sandstone", - "cutrsastone": "cut_red_sandstone", - "cut_sandstone": { - "material": "CUT_SANDSTONE" - }, - "cutsandstone": "cut_sandstone", - "smstone": "smooth_stone", - "smoothsastone": "smooth_sandstone", - "ssandstone": "cut_sandstone", - "smsastone": "smooth_sandstone", - "ssastone": "cut_sandstone", - "cutsandst": "cut_sandstone", - "cutsastone": "cut_sandstone", - "cyan_banner": { - "material": "CYAN_BANNER" - }, - "cyanbanner": "cyan_banner", - "cstandingbanner": "cyan_banner", - "cbanner": "cyan_banner", - "cyanstandingbanner": "cyan_banner", - "cyan_bed": { - "material": "CYAN_BED" - }, - "cyanbed": "cyan_bed", - "cbed": "cyan_bed", - "cyan_carpet": { - "material": "CYAN_CARPET" - }, - "cyancarpet": "cyan_carpet", - "ccarpet": "cyan_carpet", - "cfloor": "cyan_carpet", - "cyanfloor": "cyan_carpet", - "cyan_concrete": { - "material": "CYAN_CONCRETE" - }, - "cyanconcrete": "cyan_concrete", - "cconcrete": "cyan_concrete", - "cyan_concrete_powder": { - "material": "CYAN_CONCRETE_POWDER" - }, - "cyanconcretepowder": "cyan_concrete_powder", - "cconcretepowder": "cyan_concrete_powder", - "cconcretesand": "cyan_concrete_powder", - "ccpowder": "cyan_concrete_powder", - "ccdust": "cyan_concrete_powder", - "ccp": "cyan_concrete_powder", - "cyanconcretesand": "cyan_concrete_powder", - "cyancpowder": "cyan_concrete_powder", - "cyancdust": "cyan_concrete_powder", - "cyancp": "cyan_concrete_powder", - "cyan_dye": { - "material": "CYAN_DYE" - }, - "cyandye": "cyan_dye", - "cyan_glazed_terracotta": { - "material": "CYAN_GLAZED_TERRACOTTA" - }, - "cyanglazedterracotta": "cyan_glazed_terracotta", - "cglazedtcota": "cyan_glazed_terracotta", - "cglazedterra": "cyan_glazed_terracotta", - "cglazedterracotta": "cyan_glazed_terracotta", - "cglazedterracota": "cyan_glazed_terracotta", - "cyanglazedtcota": "cyan_glazed_terracotta", - "cyanglazedterra": "cyan_glazed_terracotta", - "cyanglazedterracota": "cyan_glazed_terracotta", - "cyan_shulker_box": { - "material": "CYAN_SHULKER_BOX" - }, - "cyanshulkerbox": "cyan_shulker_box", - "cshulkerbox": "cyan_shulker_box", - "cchest": "cyan_shulker_box", - "cyanchest": "cyan_shulker_box", - "cyan_stained_glass": { - "material": "CYAN_STAINED_GLASS" - }, - "cyanstainedglass": "cyan_stained_glass", - "cglass": "cyan_stained_glass", - "csglass": "cyan_stained_glass", - "cstainedglass": "cyan_stained_glass", - "cyanglass": "cyan_stained_glass", - "cyansglass": "cyan_stained_glass", - "cyan_stained_glass_pane": { - "material": "CYAN_STAINED_GLASS_PANE" - }, - "cyanstainedglasspane": "cyan_stained_glass_pane", - "cglasspane": "cyan_stained_glass_pane", - "csglasspane": "cyan_stained_glass_pane", - "cstainedglasspane": "cyan_stained_glass_pane", - "cgpane": "cyan_stained_glass_pane", - "cyanglasspane": "cyan_stained_glass_pane", - "cyansglasspane": "cyan_stained_glass_pane", - "cyangpane": "cyan_stained_glass_pane", - "cyan_terracotta": { - "material": "CYAN_TERRACOTTA" - }, - "cyanterracotta": "cyan_terracotta", - "cclay": "cyan_terracotta", - "csclay": "cyan_terracotta", - "cstainedclay": "cyan_terracotta", - "cterra": "cyan_terracotta", - "ctcota": "cyan_terracotta", - "cterracota": "cyan_terracotta", - "cterracotta": "cyan_terracotta", - "cyanclay": "cyan_terracotta", - "cyansclay": "cyan_terracotta", - "cyanstainedclay": "cyan_terracotta", - "cyanterra": "cyan_terracotta", - "cyantcota": "cyan_terracotta", - "cyanterracota": "cyan_terracotta", - "cyan_wall_banner": { - "material": "CYAN_WALL_BANNER", - "unspawnable": true - }, - "cyanwallbanner": "cyan_wall_banner", - "cyan_wool": { - "material": "CYAN_WOOL" - }, - "cyanwool": "cyan_wool", - "cwool": "cyan_wool", - "ccloth": "cyan_wool", - "ccotton": "cyan_wool", - "cyancloth": "cyan_wool", - "cyancotton": "cyan_wool", - "damaged_anvil": { - "material": "DAMAGED_ANVIL" - }, - "damagedanvil": "damaged_anvil", - "verydamagedanvil": "damaged_anvil", - "dandelion": { - "material": "DANDELION" - }, - "yellowdandelion": "dandelion", - "ydandelion": "dandelion", - "yellowflower": "dandelion", - "yflower": "dandelion", - "flower": "dandelion", - "dandelion_yellow": { - "material": "DANDELION_YELLOW" - }, - "dandelionyellow": "dandelion_yellow", - "dark_oak_boat": { - "material": "DARK_OAK_BOAT" - }, - "darkoakboat": "dark_oak_boat", - "doakboat": "dark_oak_boat", - "doboat": "dark_oak_boat", - "dark_oak_button": { - "material": "DARK_OAK_BUTTON" - }, - "darkoakbutton": "dark_oak_button", - "dark_oak_door": { - "material": "DARK_OAK_DOOR" - }, - "darkoakdoor": "dark_oak_door", - "dark_oak_fence": { - "material": "DARK_OAK_FENCE" - }, - "darkoakfence": "dark_oak_fence", - "doakfence": "dark_oak_fence", - "dofence": "dark_oak_fence", - "dark_oak_fence_gate": { - "material": "DARK_OAK_FENCE_GATE" - }, - "darkoakfencegate": "dark_oak_fence_gate", - "darkoakgate": "dark_oak_fence_gate", - "doakfencegate": "dark_oak_fence_gate", - "doakgate": "dark_oak_fence_gate", - "dofencegate": "dark_oak_fence_gate", - "dogate": "dark_oak_fence_gate", - "dark_oak_leaves": { - "material": "DARK_OAK_LEAVES" - }, - "darkoakleaves": "dark_oak_leaves", - "darkoaktreeleaves": "dark_oak_leaves", - "darkoaklogleaves": "dark_oak_leaves", - "darkoaktrunkleaves": "dark_oak_leaves", - "darkoakwoodleaves": "dark_oak_leaves", - "darkoaktreeleaf": "dark_oak_leaves", - "darkoaklogleaf": "dark_oak_leaves", - "darkoaktrunkleaf": "dark_oak_leaves", - "darkoakwoodleaf": "dark_oak_leaves", - "darkoakleaf": "dark_oak_leaves", - "darkoaktreeleave": "dark_oak_leaves", - "darkoaklogleave": "dark_oak_leaves", - "darkoaktrunkleave": "dark_oak_leaves", - "darkoakwoodleave": "dark_oak_leaves", - "darkoakleave": "dark_oak_leaves", - "doaktreeleaves": "dark_oak_leaves", - "doaklogleaves": "dark_oak_leaves", - "doaktrunkleaves": "dark_oak_leaves", - "doakwoodleaves": "dark_oak_leaves", - "doakleaves": "dark_oak_leaves", - "doaktreeleaf": "dark_oak_leaves", - "doaklogleaf": "dark_oak_leaves", - "doaktrunkleaf": "dark_oak_leaves", - "doakwoodleaf": "dark_oak_leaves", - "doakleaf": "dark_oak_leaves", - "doaktreeleave": "dark_oak_leaves", - "doaklogleave": "dark_oak_leaves", - "doaktrunkleave": "dark_oak_leaves", - "doakwoodleave": "dark_oak_leaves", - "doakleave": "dark_oak_leaves", - "dotreeleaves": "dark_oak_leaves", - "dologleaves": "dark_oak_leaves", - "dotrunkleaves": "dark_oak_leaves", - "dowoodleaves": "dark_oak_leaves", - "doleaves": "dark_oak_leaves", - "dotreeleaf": "dark_oak_leaves", - "dologleaf": "dark_oak_leaves", - "dotrunkleaf": "dark_oak_leaves", - "dowoodleaf": "dark_oak_leaves", - "doleaf": "dark_oak_leaves", - "dotreeleave": "dark_oak_leaves", - "dologleave": "dark_oak_leaves", - "dotrunkleave": "dark_oak_leaves", - "dowoodleave": "dark_oak_leaves", - "doleave": "dark_oak_leaves", - "dark_oak_log": { - "material": "DARK_OAK_LOG" - }, - "darkoaklog": "dark_oak_log", - "darkoak": "dark_oak_log", - "logdarkoak": "dark_oak_log", - "darkoaktrunk": "dark_oak_log", - "darkoaktree": "dark_oak_log", - "doak": "dark_oak_log", - "logdoak": "dark_oak_log", - "doaktrunk": "dark_oak_log", - "doaklog": "dark_oak_log", - "doaktree": "dark_oak_log", - "do": "diamond_ore", - "logdo": "dark_oak_log", - "dotrunk": "dark_oak_log", - "dolog": "dark_oak_log", - "dotree": "dark_oak_log", - "dark_oak_planks": { - "material": "DARK_OAK_PLANKS" - }, - "darkoakplanks": "dark_oak_planks", - "darkoakwoodenplank": "dark_oak_planks", - "darkoakwoodplank": "dark_oak_planks", - "darkoakwplank": "dark_oak_planks", - "darkoakplankwooden": "dark_oak_planks", - "darkoakplankwood": "dark_oak_planks", - "darkoakplankw": "dark_oak_planks", - "darkoakplank": "dark_oak_planks", - "doakwoodenplank": "dark_oak_planks", - "doakwoodplank": "dark_oak_planks", - "doakwplank": "dark_oak_planks", - "doakplankwooden": "dark_oak_planks", - "doakplankwood": "dark_oak_planks", - "doakplankw": "dark_oak_planks", - "doakplank": "dark_oak_planks", - "dowoodenplank": "dark_oak_planks", - "dowoodplank": "dark_oak_planks", - "dowplank": "dark_oak_planks", - "doplankwooden": "dark_oak_planks", - "doplankwood": "dark_oak_planks", - "doplankw": "dark_oak_planks", - "doplank": "dark_oak_planks", - "dark_oak_pressure_plate": { - "material": "DARK_OAK_PRESSURE_PLATE" - }, - "darkoakpressureplate": "dark_oak_pressure_plate", - "darkoakpressplate": "dark_oak_pressure_plate", - "darkoakpplate": "dark_oak_pressure_plate", - "darkoakplate": "dark_oak_pressure_plate", - "doakpressureplate": "dark_oak_pressure_plate", - "doakpressplate": "dark_oak_pressure_plate", - "doakpplate": "dark_oak_pressure_plate", - "doakplate": "dark_oak_pressure_plate", - "dopressureplate": "dark_oak_pressure_plate", - "dopressplate": "dark_oak_pressure_plate", - "dopplate": "dark_oak_pressure_plate", - "doplate": "dark_oak_pressure_plate", - "dark_oak_sapling": { - "material": "DARK_OAK_SAPLING" - }, - "darkoaksapling": "dark_oak_sapling", - "darkoaktreesapling": "dark_oak_sapling", - "darkoaklogsapling": "dark_oak_sapling", - "darkoaktrunksapling": "dark_oak_sapling", - "darkoakwoodsapling": "dark_oak_sapling", - "doaksapling": "dark_oak_sapling", - "doaktreesapling": "dark_oak_sapling", - "doaklogsapling": "dark_oak_sapling", - "doaktrunksapling": "dark_oak_sapling", - "doakwoodsapling": "dark_oak_sapling", - "dosapling": "dark_oak_sapling", - "dotreesapling": "dark_oak_sapling", - "dologsapling": "dark_oak_sapling", - "dotrunksapling": "dark_oak_sapling", - "dowoodsapling": "dark_oak_sapling", - "dark_oak_slab": { - "material": "DARK_OAK_SLAB" - }, - "darkoakslab": "dark_oak_slab", - "darkoakwoodenstep": "dark_oak_slab", - "darkoakwoodstep": "dark_oak_slab", - "darkoakwstep": "dark_oak_slab", - "darkoakstep": "dark_oak_slab", - "darkoakwoodenslab": "dark_oak_slab", - "darkoakwoodslab": "dark_oak_slab", - "darkoakwslab": "dark_oak_slab", - "darkoakwoodenhalfblock": "dark_oak_slab", - "darkoakwoodhalfblock": "dark_oak_slab", - "darkoakwhalfblock": "dark_oak_slab", - "darkoakhalfblock": "dark_oak_slab", - "doakwoodenstep": "dark_oak_slab", - "doakwoodstep": "dark_oak_slab", - "doakwstep": "dark_oak_slab", - "doakstep": "dark_oak_slab", - "doakwoodenslab": "dark_oak_slab", - "doakwoodslab": "dark_oak_slab", - "doakwslab": "dark_oak_slab", - "doakwoodenhalfblock": "dark_oak_slab", - "doakwoodhalfblock": "dark_oak_slab", - "doakwhalfblock": "dark_oak_slab", - "doakhalfblock": "dark_oak_slab", - "dowoodenstep": "dark_oak_slab", - "dowoodstep": "dark_oak_slab", - "dowstep": "dark_oak_slab", - "dostep": "dark_oak_slab", - "dowoodenslab": "dark_oak_slab", - "dowoodslab": "dark_oak_slab", - "dowslab": "dark_oak_slab", - "dowoodenhalfblock": "dark_oak_slab", - "dowoodhalfblock": "dark_oak_slab", - "dowhalfblock": "dark_oak_slab", - "dohalfblock": "dark_oak_slab", - "dark_oak_stairs": { - "material": "DARK_OAK_STAIRS" - }, - "darkoakstairs": "dark_oak_stairs", - "darkoakwoodenstairs": "dark_oak_stairs", - "darkoakwoodstairs": "dark_oak_stairs", - "darkoakwstairs": "dark_oak_stairs", - "darkoakwoodenstair": "dark_oak_stairs", - "darkoakwoodstair": "dark_oak_stairs", - "darkoakwstair": "dark_oak_stairs", - "darkoakstair": "dark_oak_stairs", - "doakwoodenstairs": "dark_oak_stairs", - "doakwoodstairs": "dark_oak_stairs", - "doakwstairs": "dark_oak_stairs", - "doakwoodenstair": "dark_oak_stairs", - "doakwoodstair": "dark_oak_stairs", - "doakwstair": "dark_oak_stairs", - "doakstair": "dark_oak_stairs", - "dowoodenstairs": "dark_oak_stairs", - "dowoodstairs": "dark_oak_stairs", - "dowstairs": "dark_oak_stairs", - "dowoodenstair": "dark_oak_stairs", - "dowoodstair": "dark_oak_stairs", - "dowstair": "dark_oak_stairs", - "dostair": "dark_oak_stairs", - "dark_oak_trapdoor": { - "material": "DARK_OAK_TRAPDOOR" - }, - "darkoaktrapdoor": "dark_oak_trapdoor", - "darkoakdoortrap": "dark_oak_trapdoor", - "darkoakhatch": "dark_oak_trapdoor", - "darkoaktdoor": "dark_oak_trapdoor", - "darkoakdoort": "dark_oak_trapdoor", - "darkoaktrapd": "dark_oak_trapdoor", - "darkoakdtrap": "dark_oak_trapdoor", - "doaktrapdoor": "dark_oak_trapdoor", - "doakdoortrap": "dark_oak_trapdoor", - "doakhatch": "dark_oak_trapdoor", - "doaktdoor": "dark_oak_trapdoor", - "doakdoort": "dark_oak_trapdoor", - "doaktrapd": "dark_oak_trapdoor", - "doakdtrap": "dark_oak_trapdoor", - "dotrapdoor": "dark_oak_trapdoor", - "dodoortrap": "dark_oak_trapdoor", - "dohatch": "dark_oak_trapdoor", - "dotdoor": "dark_oak_trapdoor", - "dodoort": "dark_oak_trapdoor", - "dotrapd": "dark_oak_trapdoor", - "dodtrap": "dark_oak_trapdoor", - "dark_oak_wood": { - "material": "DARK_OAK_WOOD" - }, - "darkoakwood": "dark_oak_wood", - "darkoaklogall": "dark_oak_wood", - "darkoaktrunkall": "dark_oak_wood", - "darkoaktreeall": "dark_oak_wood", - "doakwood": "dark_oak_wood", - "doaklogall": "dark_oak_wood", - "doaktrunkall": "dark_oak_wood", - "doaktreeall": "dark_oak_wood", - "dowood": "dark_oak_wood", - "dologall": "dark_oak_wood", - "dotrunkall": "dark_oak_wood", - "dotreeall": "dark_oak_wood", - "dark_prismarine": { - "material": "DARK_PRISMARINE" - }, - "darkprismarine": "dark_prismarine", - "dark_prismarine_slab": { - "material": "DARK_PRISMARINE_SLAB" - }, - "darkprismarineslab": "dark_prismarine_slab", - "darkprismarinesl": "dark_prismarine_slab", - "dprismarineslab": "dark_prismarine_slab", - "dprismarinesl": "dark_prismarine_slab", - "darkprisslab": "dark_prismarine_slab", - "darkprissl": "dark_prismarine_slab", - "dprisslab": "dark_prismarine_slab", - "dprissl": "dark_prismarine_slab", - "darkseaslab": "dark_prismarine_slab", - "darkseasl": "dark_prismarine_slab", - "dseaslab": "dark_prismarine_slab", - "dseasl": "dark_prismarine_slab", - "dark_prismarine_stairs": { - "material": "DARK_PRISMARINE_STAIRS" - }, - "darkprismarinestairs": "dark_prismarine_stairs", - "darkprismarinestair": "dark_prismarine_stairs", - "darkprismarinest": "dark_prismarine_stairs", - "dprismarinestairs": "dark_prismarine_stairs", - "dprismarinestair": "dark_prismarine_stairs", - "dprismarinest": "dark_prismarine_stairs", - "darkprisstairs": "dark_prismarine_stairs", - "darkprisstair": "dark_prismarine_stairs", - "darkprisst": "dark_prismarine_stairs", - "dprisstairs": "dark_prismarine_stairs", - "dprisstair": "dark_prismarine_stairs", - "dprisst": "dark_prismarine_stairs", - "darkseastairs": "dark_prismarine_stairs", - "darkseastair": "dark_prismarine_stairs", - "darkseast": "dark_prismarine_stairs", - "dseastairs": "dark_prismarine_stairs", - "dseastair": "dark_prismarine_stairs", - "dseast": "dark_prismarine_stairs", - "daylight_detector": { - "material": "DAYLIGHT_DETECTOR" - }, - "daylightdetector": "daylight_detector", - "daylightsensor": "daylight_detector", - "daylightsense": "daylight_detector", - "lightsensor": "daylight_detector", - "lightsense": "daylight_detector", - "daysensor": "daylight_detector", - "daysense": "daylight_detector", - "timesensor": "daylight_detector", - "timesense": "daylight_detector", - "dead_brain_coral": { - "material": "DEAD_BRAIN_CORAL" - }, - "deadbraincoral": "dead_brain_coral", - "dead_brain_coral_block": { - "material": "DEAD_BRAIN_CORAL_BLOCK" - }, - "deadbraincoralblock": "dead_brain_coral_block", - "dead_brain_coral_fan": { - "material": "DEAD_BRAIN_CORAL_FAN" - }, - "deadbraincoralfan": "dead_brain_coral_fan", - "dead_brain_coral_wall_fan": { - "material": "DEAD_BRAIN_CORAL_WALL_FAN", - "unspawnable": true - }, - "deadbraincoralwallfan": "dead_brain_coral_wall_fan", - "dead_bubble_coral": { - "material": "DEAD_BUBBLE_CORAL" - }, - "deadbubblecoral": "dead_bubble_coral", - "dead_bubble_coral_block": { - "material": "DEAD_BUBBLE_CORAL_BLOCK" - }, - "deadbubblecoralblock": "dead_bubble_coral_block", - "dead_bubble_coral_fan": { - "material": "DEAD_BUBBLE_CORAL_FAN" - }, - "deadbubblecoralfan": "dead_bubble_coral_fan", - "dead_bubble_coral_wall_fan": { - "material": "DEAD_BUBBLE_CORAL_WALL_FAN", - "unspawnable": true - }, - "deadbubblecoralwallfan": "dead_bubble_coral_wall_fan", - "dead_bush": { - "material": "DEAD_BUSH" - }, - "deadbush": "dead_bush", - "bush": "dead_bush", - "deadshrub": "dead_bush", - "dshrub": "dead_bush", - "dbush": "dead_bush", - "deadsapling": "dead_bush", - "dead_fire_coral": { - "material": "DEAD_FIRE_CORAL" - }, - "deadfirecoral": "dead_fire_coral", - "dead_fire_coral_block": { - "material": "DEAD_FIRE_CORAL_BLOCK" - }, - "deadfirecoralblock": "dead_fire_coral_block", - "dead_fire_coral_fan": { - "material": "DEAD_FIRE_CORAL_FAN" - }, - "deadfirecoralfan": "dead_fire_coral_fan", - "dead_fire_coral_wall_fan": { - "material": "DEAD_FIRE_CORAL_WALL_FAN", - "unspawnable": true - }, - "deadfirecoralwallfan": "dead_fire_coral_wall_fan", - "dead_horn_coral": { - "material": "DEAD_HORN_CORAL" - }, - "deadhorncoral": "dead_horn_coral", - "dead_horn_coral_block": { - "material": "DEAD_HORN_CORAL_BLOCK" - }, - "deadhorncoralblock": "dead_horn_coral_block", - "dead_horn_coral_fan": { - "material": "DEAD_HORN_CORAL_FAN" - }, - "deadhorncoralfan": "dead_horn_coral_fan", - "dead_horn_coral_wall_fan": { - "material": "DEAD_HORN_CORAL_WALL_FAN", - "unspawnable": true - }, - "deadhorncoralwallfan": "dead_horn_coral_wall_fan", - "dead_tube_coral": { - "material": "DEAD_TUBE_CORAL" - }, - "deadtubecoral": "dead_tube_coral", - "dead_tube_coral_block": { - "material": "DEAD_TUBE_CORAL_BLOCK" - }, - "deadtubecoralblock": "dead_tube_coral_block", - "dead_tube_coral_fan": { - "material": "DEAD_TUBE_CORAL_FAN" - }, - "deadtubecoralfan": "dead_tube_coral_fan", - "dead_tube_coral_wall_fan": { - "material": "DEAD_TUBE_CORAL_WALL_FAN", - "unspawnable": true - }, - "deadtubecoralwallfan": "dead_tube_coral_wall_fan", - "debug_stick": { - "material": "DEBUG_STICK" - }, - "debugstick": "debug_stick", - "detector_rail": { - "material": "DETECTOR_RAIL" - }, - "detectorrail": "detector_rail", - "detectorrails": "detector_rail", - "detectortrack": "detector_rail", - "detectingrails": "detector_rail", - "detectingrail": "detector_rail", - "detectingtrack": "detector_rail", - "detectrails": "detector_rail", - "detectrail": "detector_rail", - "detecttrack": "detector_rail", - "drails": "detector_rail", - "drail": "detector_rail", - "dtrack": "detector_rail", - "diamond": { - "material": "DIAMOND" - }, - "diamond_axe": { - "material": "DIAMOND_AXE" - }, - "diamondaxe": "diamond_axe", - "crystalaxe": "diamond_axe", - "daxe": "diamond_axe", - "diamond_block": { - "material": "DIAMOND_BLOCK" - }, - "diamondblock": "diamond_block", - "crystalblock": "diamond_block", - "blockcrystal": "diamond_block", - "blockdiamond": "diamond_block", - "dblock": "diamond_block", - "blockd": "diamond_block", - "diamond_boots": { - "material": "DIAMOND_BOOTS" - }, - "diamondboots": "diamond_boots", - "crystalboots": "diamond_boots", - "crystalshoes": "diamond_boots", - "diamondshoes": "diamond_boots", - "dboots": "diamond_boots", - "dshoes": "diamond_boots", - "diamond_chestplate": { - "material": "DIAMOND_CHESTPLATE" - }, - "diamondchestplate": "diamond_chestplate", - "crystalchestplate": "diamond_chestplate", - "crystalplatebody": "diamond_chestplate", - "crystalplate": "diamond_chestplate", - "crystalshirt": "diamond_chestplate", - "crystaltunic": "diamond_chestplate", - "diamondplatebody": "diamond_chestplate", - "diamondplate": "diamond_chestplate", - "diamondshirt": "diamond_chestplate", - "diamondtunic": "diamond_chestplate", - "dchestplate": "diamond_chestplate", - "dplatebody": "diamond_chestplate", - "dplate": "diamond_chestplate", - "dshirt": "diamond_chestplate", - "dtunic": "diamond_chestplate", - "diamond_helmet": { - "material": "DIAMOND_HELMET" - }, - "diamondhelmet": "diamond_helmet", - "crystalhelmet": "diamond_helmet", - "crystalhelm": "diamond_helmet", - "crystalhat": "diamond_helmet", - "crystalcoif": "diamond_helmet", - "diamondhelm": "diamond_helmet", - "diamondhat": "diamond_helmet", - "diamondcoif": "diamond_helmet", - "dhelmet": "diamond_helmet", - "dhelm": "diamond_helmet", - "dhat": "diamond_helmet", - "dcoif": "diamond_helmet", - "diamond_hoe": { - "material": "DIAMOND_HOE" - }, - "diamondhoe": "diamond_hoe", - "crystalhoe": "diamond_hoe", - "dhoe": "diamond_hoe", - "diamond_horse_armor": { - "material": "DIAMOND_HORSE_ARMOR" - }, - "diamondhorsearmor": "diamond_horse_armor", - "crystalhorsearmor": "diamond_horse_armor", - "crystalharmor": "diamond_horse_armor", - "crystalarmor": "diamond_horse_armor", - "diamondharmor": "diamond_horse_armor", - "diamondarmor": "diamond_horse_armor", - "dhorsearmor": "diamond_horse_armor", - "dharmor": "diamond_horse_armor", - "darmor": "diamond_horse_armor", - "diamond_leggings": { - "material": "DIAMOND_LEGGINGS" - }, - "diamondleggings": "diamond_leggings", - "crystalleggings": "diamond_leggings", - "crystallegs": "diamond_leggings", - "crystalpants": "diamond_leggings", - "diamondlegs": "diamond_leggings", - "diamondpants": "diamond_leggings", - "dleggings": "diamond_leggings", - "dlegs": "diamond_leggings", - "dpants": "diamond_leggings", - "diamond_ore": { - "material": "DIAMOND_ORE" - }, - "diamondore": "diamond_ore", - "crystalore": "diamond_ore", - "crystalo": "diamond_ore", - "orecrystal": "diamond_ore", - "ocrystal": "diamond_ore", - "diamondo": "diamond_ore", - "orediamond": "diamond_ore", - "odiamond": "diamond_ore", - "dore": "diamond_ore", - "ored": "redstone_ore", - "od": "diamond_ore", - "diamond_pickaxe": { - "material": "DIAMOND_PICKAXE" - }, - "diamondpickaxe": "diamond_pickaxe", - "crystalpickaxe": "diamond_pickaxe", - "crystalpick": "diamond_pickaxe", - "diamondpick": "diamond_pickaxe", - "dpickaxe": "diamond_pickaxe", - "dpick": "diamond_pickaxe", - "diamond_shovel": { - "material": "DIAMOND_SHOVEL" - }, - "diamondshovel": "diamond_shovel", - "crystalshovel": "diamond_shovel", - "crystalspade": "diamond_shovel", - "diamondspade": "diamond_shovel", - "dshovel": "diamond_shovel", - "dspade": "diamond_shovel", - "diamond_sword": { - "material": "DIAMOND_SWORD" - }, - "diamondsword": "diamond_sword", - "crystalsword": "diamond_sword", - "dsword": "diamond_sword", - "diorite": { - "material": "DIORITE" - }, - "dstone": "diorite", - "dirt": { - "material": "DIRT" - }, - "earth": "dirt", - "land": "dirt", - "dispenser": { - "material": "DISPENSER" - }, - "dispense": "dispenser", - "dolphin_spawn_egg": { - "material": "DOLPHIN_SPAWN_EGG" - }, - "dolphinspawnegg": "dolphin_spawn_egg", - "dolphinegg": "dolphin_spawn_egg", - "eggdolphin": "dolphin_spawn_egg", - "spawneggdolphin": "dolphin_spawn_egg", - "dolphinspawn": "dolphin_spawn_egg", - "spawndolphin": "dolphin_spawn_egg", - "eccoegg": "dolphin_spawn_egg", - "eggecco": "dolphin_spawn_egg", - "eccospawnegg": "dolphin_spawn_egg", - "spawneggecco": "dolphin_spawn_egg", - "eccospawn": "dolphin_spawn_egg", - "spawnecco": "dolphin_spawn_egg", - "donkey_spawn_egg": { - "material": "DONKEY_SPAWN_EGG" - }, - "donkeyspawnegg": "donkey_spawn_egg", - "donkeyegg": "donkey_spawn_egg", - "eggdonkey": "donkey_spawn_egg", - "spawneggdonkey": "donkey_spawn_egg", - "donkeyspawn": "donkey_spawn_egg", - "spawndonkey": "donkey_spawn_egg", - "dragon_breath": { - "material": "DRAGON_BREATH" - }, - "dragonbreath": "dragon_breath", - "dragon_egg": { - "material": "DRAGON_EGG" - }, - "dragonegg": "dragon_egg", - "enderdragonegg": "dragon_egg", - "endegg": "dragon_egg", - "degg": "dragon_egg", - "bossegg": "dragon_egg", - "begg": "dragon_egg", - "dragon_head": { - "material": "DRAGON_HEAD" - }, - "dragonhead": "dragon_head", - "dragonskull": "dragon_head", - "headdragon": "dragon_head", - "stevedragon": "dragon_head", - "dragonmask": "dragon_head", - "dragonheadmask": "dragon_head", - "dragon_wall_head": { - "material": "DRAGON_WALL_HEAD", - "unspawnable": true - }, - "dragonwallhead": "dragon_wall_head", - "dried_kelp": { - "material": "DRIED_KELP" - }, - "driedkelp": "dried_kelp", - "dried_kelp_block": { - "material": "DRIED_KELP_BLOCK" - }, - "driedkelpblock": "dried_kelp_block", - "dropper": { - "material": "DROPPER" - }, - "drowned_spawn_egg": { - "material": "DROWNED_SPAWN_EGG" - }, - "drownedspawnegg": "drowned_spawn_egg", - "drownedegg": "drowned_spawn_egg", - "eggdrowned": "drowned_spawn_egg", - "spawneggdrowned": "drowned_spawn_egg", - "drownedspawn": "drowned_spawn_egg", - "spawndrowned": "drowned_spawn_egg", - "egg": { - "material": "EGG" - }, - "elder_guardian_spawn_egg": { - "material": "ELDER_GUARDIAN_SPAWN_EGG" - }, - "elderguardianspawnegg": "elder_guardian_spawn_egg", - "elderguardianegg": "elder_guardian_spawn_egg", - "eggelderguardian": "elder_guardian_spawn_egg", - "spawneggelderguardian": "elder_guardian_spawn_egg", - "elderguardianspawn": "elder_guardian_spawn_egg", - "spawnelderguardian": "elder_guardian_spawn_egg", - "eguardianegg": "elder_guardian_spawn_egg", - "eggeguardian": "elder_guardian_spawn_egg", - "eguardianspawnegg": "elder_guardian_spawn_egg", - "spawneggeguardian": "elder_guardian_spawn_egg", - "eguardianspawn": "elder_guardian_spawn_egg", - "spawneguardian": "elder_guardian_spawn_egg", - "elytra": { - "material": "ELYTRA" - }, - "hangglider": "elytra", - "glider": "elytra", - "wings": "elytra", - "wing": "elytra", - "playerwings": "elytra", - "playerwing": "elytra", - "pwings": "elytra", - "pwing": "elytra", - "emerald": { - "material": "EMERALD" - }, - "emerald_block": { - "material": "EMERALD_BLOCK" - }, - "emeraldblock": "emerald_block", - "blockemerald": "emerald_block", - "eblock": "emerald_block", - "blocke": "emerald_block", - "emerald_ore": { - "material": "EMERALD_ORE" - }, - "emeraldore": "emerald_ore", - "emeraldo": "emerald_ore", - "oreemerald": "emerald_ore", - "oemerald": "emerald_ore", - "eore": "emerald_ore", - "eo": "emerald_ore", - "oree": "emerald_ore", - "oe": "emerald_ore", - "enchanted_book": { - "material": "ENCHANTED_BOOK" - }, - "enchantedbook": "enchanted_book", - "enchanted_golden_apple": { - "material": "ENCHANTED_GOLDEN_APPLE" - }, - "enchantedgoldenapple": "enchanted_golden_apple", - "notchapple": "enchanted_golden_apple", - "godapple": "enchanted_golden_apple", - "enchgoldapple": "enchanted_golden_apple", - "enchanting_table": { - "material": "ENCHANTING_TABLE" - }, - "enchantingtable": "enchanting_table", - "enchantmenttable": "enchanting_table", - "enchanttable": "enchanting_table", - "etable": "enchanting_table", - "magicaltable": "enchanting_table", - "magictable": "enchanting_table", - "mtable": "enchanting_table", - "enchantmentdesk": "enchanting_table", - "enchantingdesk": "enchanting_table", - "enchantdesk": "enchanting_table", - "edesk": "enchanting_table", - "magicaldesk": "enchanting_table", - "magicdesk": "enchanting_table", - "mdesk": "enchanting_table", - "booktable": "enchanting_table", - "bookdesk": "enchanting_table", - "btable": "enchanting_table", - "bdesk": "enchanting_table", - "enderman_spawn_egg": { - "material": "ENDERMAN_SPAWN_EGG" - }, - "endermanspawnegg": "enderman_spawn_egg", - "endermanegg": "enderman_spawn_egg", - "eggenderman": "enderman_spawn_egg", - "spawneggenderman": "enderman_spawn_egg", - "endermanspawn": "enderman_spawn_egg", - "spawnenderman": "enderman_spawn_egg", - "endermite_spawn_egg": { - "material": "ENDERMITE_SPAWN_EGG" - }, - "endermitespawnegg": "endermite_spawn_egg", - "endermiteegg": "endermite_spawn_egg", - "eggendermite": "endermite_spawn_egg", - "spawneggendermite": "endermite_spawn_egg", - "endermitespawn": "endermite_spawn_egg", - "spawnendermite": "endermite_spawn_egg", - "ender_chest": { - "material": "ENDER_CHEST" - }, - "enderchest": "ender_chest", - "endchest": "ender_chest", - "echest": "ender_chest", - "chestender": "ender_chest", - "chestend": "ender_chest", - "cheste": "ender_chest", - "endercontainer": "ender_chest", - "endcontainer": "ender_chest", - "econtainer": "ender_chest", - "ender_eye": { - "material": "ENDER_EYE" - }, - "endereye": "ender_eye", - "ender_pearl": { - "material": "ENDER_PEARL" - }, - "enderpearl": "ender_pearl", - "end_crystal": { - "material": "END_CRYSTAL" - }, - "endcrystal": "end_crystal", - "end_gateway": { - "material": "END_GATEWAY", - "unspawnable": true - }, - "endgateway": "end_gateway", - "end_portal": { - "material": "END_PORTAL", - "unspawnable": true - }, - "endportal": "end_portal", - "endergoo": "end_portal", - "enderportal": "end_portal", - "endgoo": "end_portal", - "eportal": "end_portal", - "egoo": "end_portal", - "end_portal_frame": { - "material": "END_PORTAL_FRAME" - }, - "endportalframe": "end_portal_frame", - "endergooframe": "end_portal_frame", - "enderportalframe": "end_portal_frame", - "endgooframe": "end_portal_frame", - "eportalframe": "end_portal_frame", - "egooframe": "end_portal_frame", - "enderframe": "end_portal_frame", - "endframe": "end_portal_frame", - "end_rod": { - "material": "END_ROD" - }, - "endrod": "end_rod", - "end_stone": { - "material": "END_STONE" - }, - "endstone": "end_stone", - "enderstone": "end_stone", - "endrock": "end_stone", - "enderrock": "end_stone", - "erock": "end_stone", - "estone": "end_stone", - "end_stone_bricks": { - "material": "END_STONE_BRICKS" - }, - "endstonebricks": "end_stone_bricks", - "evoker_spawn_egg": { - "material": "EVOKER_SPAWN_EGG" - }, - "evokerspawnegg": "evoker_spawn_egg", - "evokeregg": "evoker_spawn_egg", - "eggevoker": "evoker_spawn_egg", - "spawneggevoker": "evoker_spawn_egg", - "evokerspawn": "evoker_spawn_egg", - "spawnevoker": "evoker_spawn_egg", - "experience_bottle": { - "material": "EXPERIENCE_BOTTLE" - }, - "experiencebottle": "experience_bottle", - "farmland": { - "material": "FARMLAND" - }, - "feather": { - "material": "FEATHER" - }, - "fermented_spider_eye": { - "material": "FERMENTED_SPIDER_EYE" - }, - "fermentedspidereye": "fermented_spider_eye", - "fern": { - "material": "FERN" - }, - "filled_map": { - "material": "FILLED_MAP" - }, - "filledmap": "filled_map", - "fire": { - "material": "FIRE", - "unspawnable": true - }, - "firework_rocket": { - "material": "FIREWORK_ROCKET" - }, - "fireworkrocket": "firework_rocket", - "firework_star": { - "material": "FIREWORK_STAR" - }, - "fireworkstar": "firework_star", - "fire_charge": { - "material": "FIRE_CHARGE" - }, - "firecharge": "fire_charge", - "fire_coral": { - "material": "FIRE_CORAL" - }, - "firecoral": "fire_coral", - "fire_coral_block": { - "material": "FIRE_CORAL_BLOCK" - }, - "firecoralblock": "fire_coral_block", - "fire_coral_fan": { - "material": "FIRE_CORAL_FAN" - }, - "firecoralfan": "fire_coral_fan", - "fire_coral_wall_fan": { - "material": "FIRE_CORAL_WALL_FAN", - "unspawnable": true - }, - "firecoralwallfan": "fire_coral_wall_fan", - "fishing_rod": { - "material": "FISHING_ROD" - }, - "fishingrod": "fishing_rod", - "flint": { - "material": "FLINT" - }, - "flint_and_steel": { - "material": "FLINT_AND_STEEL" - }, - "flintandsteel": "flint_and_steel", - "flower_pot": { - "material": "FLOWER_POT" - }, - "flowerpot": "flower_pot", - "frosted_ice": { - "material": "FROSTED_ICE", - "unspawnable": true - }, - "frostedice": "frosted_ice", - "furnace": { - "material": "FURNACE" - }, - "furnace_minecart": { - "material": "FURNACE_MINECART" - }, - "furnaceminecart": "furnace_minecart", - "engineminecart": "furnace_minecart", - "enginemcart": "furnace_minecart", - "enginemc": "furnace_minecart", - "enginecart": "furnace_minecart", - "poweredminecart": "furnace_minecart", - "poweredmcart": "furnace_minecart", - "poweredmc": "furnace_minecart", - "poweredcart": "furnace_minecart", - "powerminecart": "furnace_minecart", - "powermcart": "furnace_minecart", - "powermc": "furnace_minecart", - "powercart": "furnace_minecart", - "furnacemcart": "furnace_minecart", - "furnacemc": "furnace_minecart", - "furnacecart": "furnace_minecart", - "eminecart": "furnace_minecart", - "emcart": "furnace_minecart", - "emc": "furnace_minecart", - "ecart": "furnace_minecart", - "pminecart": "furnace_minecart", - "pmcart": "furnace_minecart", - "pmc": "furnace_minecart", - "pcart": "furnace_minecart", - "fminecart": "furnace_minecart", - "fmcart": "furnace_minecart", - "fmc": "furnace_minecart", - "fcart": "furnace_minecart", - "ghast_spawn_egg": { - "material": "GHAST_SPAWN_EGG" - }, - "ghastspawnegg": "ghast_spawn_egg", - "ghastegg": "ghast_spawn_egg", - "eggghast": "ghast_spawn_egg", - "spawneggghast": "ghast_spawn_egg", - "ghastspawn": "ghast_spawn_egg", - "spawnghast": "ghast_spawn_egg", - "ghast_tear": { - "material": "GHAST_TEAR" - }, - "ghasttear": "ghast_tear", - "glass": { - "material": "GLASS" - }, - "blockglass": "glass", - "glassblock": "glass", - "glass_bottle": { - "material": "GLASS_BOTTLE" - }, - "glassbottle": "glass_bottle", - "glass_pane": { - "material": "GLASS_PANE" - }, - "glasspane": "glass_pane", - "glassp": "glass_pane", - "paneglass": "glass_pane", - "pglass": "glass_pane", - "flatglass": "glass_pane", - "fglass": "glass_pane", - "skinnyglass": "glass_pane", - "glassflat": "glass_pane", - "glassf": "glass_pane", - "glassskinny": "glass_pane", - "glasss": "glass_pane", - "glistering_melon_slice": { - "material": "GLISTERING_MELON_SLICE" - }, - "glisteringmelonslice": "glistering_melon_slice", - "glowstone": { - "material": "GLOWSTONE" - }, - "glowingstoneblock": "glowstone", - "lightstoneblock": "glowstone", - "glowstoneblock": "glowstone", - "blockglowingstone": "glowstone", - "blocklightstone": "glowstone", - "blockglowstone": "glowstone", - "glowingstone": "glowstone", - "lightstone": "glowstone", - "glowingblock": "glowstone", - "lightblock": "glowstone", - "glowblock": "glowstone", - "lstone": "glowstone", - "glowstone_dust": { - "material": "GLOWSTONE_DUST" - }, - "glowstonedust": "glowstone_dust", - "golden_apple": { - "material": "GOLDEN_APPLE" - }, - "goldenapple": "golden_apple", - "goldapple": "golden_apple", - "newgoldapple": "golden_apple", - "notnotchapple": "golden_apple", - "golden_axe": { - "material": "GOLDEN_AXE" - }, - "goldenaxe": "golden_axe", - "goldaxe": "golden_axe", - "gaxe": "golden_axe", - "golden_boots": { - "material": "GOLDEN_BOOTS" - }, - "goldenboots": "golden_boots", - "goldboots": "golden_boots", - "goldshoes": "golden_boots", - "gboots": "golden_boots", - "gshoes": "golden_boots", - "golden_carrot": { - "material": "GOLDEN_CARROT" - }, - "goldencarrot": "golden_carrot", - "golden_chestplate": { - "material": "GOLDEN_CHESTPLATE" - }, - "goldenchestplate": "golden_chestplate", - "goldchestplate": "golden_chestplate", - "goldplatebody": "golden_chestplate", - "goldplate": "golden_chestplate", - "goldshirt": "golden_chestplate", - "goldtunic": "golden_chestplate", - "gchestplate": "golden_chestplate", - "gplatebody": "golden_chestplate", - "gplate": "golden_chestplate", - "gshirt": "golden_chestplate", - "gtunic": "golden_chestplate", - "golden_helmet": { - "material": "GOLDEN_HELMET" - }, - "goldenhelmet": "golden_helmet", - "goldhelmet": "golden_helmet", - "goldhelm": "golden_helmet", - "goldhat": "golden_helmet", - "goldcoif": "golden_helmet", - "ghelmet": "golden_helmet", - "ghelm": "golden_helmet", - "ghat": "golden_helmet", - "gcoif": "golden_helmet", - "golden_hoe": { - "material": "GOLDEN_HOE" - }, - "goldenhoe": "golden_hoe", - "goldhoe": "golden_hoe", - "ghoe": "golden_hoe", - "golden_horse_armor": { - "material": "GOLDEN_HORSE_ARMOR" - }, - "goldenhorsearmor": "golden_horse_armor", - "goldhorsearmor": "golden_horse_armor", - "goldharmor": "golden_horse_armor", - "goldarmor": "golden_horse_armor", - "ghorsearmor": "golden_horse_armor", - "gharmor": "golden_horse_armor", - "garmor": "golden_horse_armor", - "golden_leggings": { - "material": "GOLDEN_LEGGINGS" - }, - "goldenleggings": "golden_leggings", - "goldleggings": "golden_leggings", - "goldlegs": "golden_leggings", - "goldpants": "golden_leggings", - "gleggings": "golden_leggings", - "glegs": "golden_leggings", - "gpants": "golden_leggings", - "golden_pickaxe": { - "material": "GOLDEN_PICKAXE" - }, - "goldenpickaxe": "golden_pickaxe", - "goldpickaxe": "golden_pickaxe", - "goldpick": "golden_pickaxe", - "gpickaxe": "golden_pickaxe", - "gpick": "golden_pickaxe", - "golden_shovel": { - "material": "GOLDEN_SHOVEL" - }, - "goldenshovel": "golden_shovel", - "goldshovel": "golden_shovel", - "goldspade": "golden_shovel", - "gshovel": "golden_shovel", - "gspade": "golden_shovel", - "golden_sword": { - "material": "GOLDEN_SWORD" - }, - "goldensword": "golden_sword", - "goldsword": "golden_sword", - "gsword": "golden_sword", - "gold_block": { - "material": "GOLD_BLOCK" - }, - "goldblock": "gold_block", - "blockgold": "gold_block", - "gblock": "gold_block", - "blockg": "gold_block", - "gold_ingot": { - "material": "GOLD_INGOT" - }, - "goldingot": "gold_ingot", - "goldbar": "gold_ingot", - "goldi": "gold_ingot", - "ingotgold": "gold_ingot", - "bargold": "gold_ingot", - "igold": "gold_ingot", - "gingot": "gold_ingot", - "gbar": "gold_ingot", - "gi": "gold_ingot", - "ingotg": "gold_ingot", - "barg": "gold_ingot", - "ig": "gold_ingot", - "gold_nugget": { - "material": "GOLD_NUGGET" - }, - "goldnugget": "gold_nugget", - "gold_ore": { - "material": "GOLD_ORE" - }, - "goldore": "gold_ore", - "goldo": "gold_ore", - "oregold": "gold_ore", - "ogold": "gold_ore", - "gore": "gold_ore", - "go": "gold_ore", - "oreg": "gold_ore", - "og": "gold_ore", - "granite": { - "material": "GRANITE" - }, - "gstone": "granite", - "grass": { - "material": "GRASS" - }, - "grass_block": { - "material": "GRASS_BLOCK" - }, - "grassblock": "grass_block", - "greendirt": "grass_block", - "greenearth": "grass_block", - "greenland": "grass_block", - "grass_path": { - "material": "GRASS_PATH" - }, - "grasspath": "grass_path", - "gravel": { - "material": "GRAVEL" - }, - "gray_banner": { - "material": "GRAY_BANNER" - }, - "graybanner": "gray_banner", - "grastandingbanner": "gray_banner", - "grabanner": "gray_banner", - "greystandingbanner": "gray_banner", - "greybanner": "gray_banner", - "graystandingbanner": "gray_banner", - "dgrastandingbanner": "gray_banner", - "dgrabanner": "gray_banner", - "darkgrastandingbanner": "gray_banner", - "darkgrabanner": "gray_banner", - "dgreystandingbanner": "gray_banner", - "dgreybanner": "gray_banner", - "dgraystandingbanner": "gray_banner", - "dgraybanner": "gray_banner", - "darkgreystandingbanner": "gray_banner", - "darkgreybanner": "gray_banner", - "darkgraystandingbanner": "gray_banner", - "darkgraybanner": "gray_banner", - "gray_bed": { - "material": "GRAY_BED" - }, - "graybed": "gray_bed", - "grabed": "gray_bed", - "greybed": "gray_bed", - "dgrabed": "gray_bed", - "darkgrabed": "gray_bed", - "dgreybed": "gray_bed", - "dgraybed": "gray_bed", - "darkgreybed": "gray_bed", - "darkgraybed": "gray_bed", - "gray_carpet": { - "material": "GRAY_CARPET" - }, - "graycarpet": "gray_carpet", - "gracarpet": "gray_carpet", - "grafloor": "gray_carpet", - "greycarpet": "gray_carpet", - "greyfloor": "gray_carpet", - "grayfloor": "gray_carpet", - "dgracarpet": "gray_carpet", - "dgrafloor": "gray_carpet", - "darkgracarpet": "gray_carpet", - "darkgrafloor": "gray_carpet", - "dgreycarpet": "gray_carpet", - "dgreyfloor": "gray_carpet", - "dgraycarpet": "gray_carpet", - "dgrayfloor": "gray_carpet", - "darkgreycarpet": "gray_carpet", - "darkgreyfloor": "gray_carpet", - "darkgraycarpet": "gray_carpet", - "darkgrayfloor": "gray_carpet", - "gray_concrete": { - "material": "GRAY_CONCRETE" - }, - "grayconcrete": "gray_concrete", - "graconcrete": "gray_concrete", - "greyconcrete": "gray_concrete", - "dgraconcrete": "gray_concrete", - "darkgraconcrete": "gray_concrete", - "dgreyconcrete": "gray_concrete", - "dgrayconcrete": "gray_concrete", - "darkgreyconcrete": "gray_concrete", - "darkgrayconcrete": "gray_concrete", - "gray_concrete_powder": { - "material": "GRAY_CONCRETE_POWDER" - }, - "grayconcretepowder": "gray_concrete_powder", - "graconcretepowder": "gray_concrete_powder", - "graconcretesand": "gray_concrete_powder", - "gracpowder": "gray_concrete_powder", - "gracdust": "gray_concrete_powder", - "gracp": "gray_concrete_powder", - "greyconcretepowder": "gray_concrete_powder", - "greyconcretesand": "gray_concrete_powder", - "greycpowder": "gray_concrete_powder", - "greycdust": "gray_concrete_powder", - "greycp": "gray_concrete_powder", - "grayconcretesand": "gray_concrete_powder", - "graycpowder": "gray_concrete_powder", - "graycdust": "gray_concrete_powder", - "graycp": "gray_concrete_powder", - "dgraconcretepowder": "gray_concrete_powder", - "dgraconcretesand": "gray_concrete_powder", - "dgracpowder": "gray_concrete_powder", - "dgracdust": "gray_concrete_powder", - "dgracp": "gray_concrete_powder", - "darkgraconcretepowder": "gray_concrete_powder", - "darkgraconcretesand": "gray_concrete_powder", - "darkgracpowder": "gray_concrete_powder", - "darkgracdust": "gray_concrete_powder", - "darkgracp": "gray_concrete_powder", - "dgreyconcretepowder": "gray_concrete_powder", - "dgreyconcretesand": "gray_concrete_powder", - "dgreycpowder": "gray_concrete_powder", - "dgreycdust": "gray_concrete_powder", - "dgreycp": "gray_concrete_powder", - "dgrayconcretepowder": "gray_concrete_powder", - "dgrayconcretesand": "gray_concrete_powder", - "dgraycpowder": "gray_concrete_powder", - "dgraycdust": "gray_concrete_powder", - "dgraycp": "gray_concrete_powder", - "darkgreyconcretepowder": "gray_concrete_powder", - "darkgreyconcretesand": "gray_concrete_powder", - "darkgreycpowder": "gray_concrete_powder", - "darkgreycdust": "gray_concrete_powder", - "darkgreycp": "gray_concrete_powder", - "darkgrayconcretepowder": "gray_concrete_powder", - "darkgrayconcretesand": "gray_concrete_powder", - "darkgraycpowder": "gray_concrete_powder", - "darkgraycdust": "gray_concrete_powder", - "darkgraycp": "gray_concrete_powder", - "gray_dye": { - "material": "GRAY_DYE" - }, - "graydye": "gray_dye", - "gray_glazed_terracotta": { - "material": "GRAY_GLAZED_TERRACOTTA" - }, - "grayglazedterracotta": "gray_glazed_terracotta", - "graglazedtcota": "gray_glazed_terracotta", - "graglazedterra": "gray_glazed_terracotta", - "graglazedterracotta": "gray_glazed_terracotta", - "graglazedterracota": "gray_glazed_terracotta", - "greyglazedtcota": "gray_glazed_terracotta", - "greyglazedterra": "gray_glazed_terracotta", - "greyglazedterracotta": "gray_glazed_terracotta", - "greyglazedterracota": "gray_glazed_terracotta", - "grayglazedtcota": "gray_glazed_terracotta", - "grayglazedterra": "gray_glazed_terracotta", - "grayglazedterracota": "gray_glazed_terracotta", - "dgraglazedtcota": "gray_glazed_terracotta", - "dgraglazedterra": "gray_glazed_terracotta", - "dgraglazedterracotta": "gray_glazed_terracotta", - "dgraglazedterracota": "gray_glazed_terracotta", - "darkgraglazedtcota": "gray_glazed_terracotta", - "darkgraglazedterra": "gray_glazed_terracotta", - "darkgraglazedterracotta": "gray_glazed_terracotta", - "darkgraglazedterracota": "gray_glazed_terracotta", - "dgreyglazedtcota": "gray_glazed_terracotta", - "dgreyglazedterra": "gray_glazed_terracotta", - "dgreyglazedterracotta": "gray_glazed_terracotta", - "dgreyglazedterracota": "gray_glazed_terracotta", - "dgrayglazedtcota": "gray_glazed_terracotta", - "dgrayglazedterra": "gray_glazed_terracotta", - "dgrayglazedterracotta": "gray_glazed_terracotta", - "dgrayglazedterracota": "gray_glazed_terracotta", - "darkgreyglazedtcota": "gray_glazed_terracotta", - "darkgreyglazedterra": "gray_glazed_terracotta", - "darkgreyglazedterracotta": "gray_glazed_terracotta", - "darkgreyglazedterracota": "gray_glazed_terracotta", - "darkgrayglazedtcota": "gray_glazed_terracotta", - "darkgrayglazedterra": "gray_glazed_terracotta", - "darkgrayglazedterracotta": "gray_glazed_terracotta", - "darkgrayglazedterracota": "gray_glazed_terracotta", - "gray_shulker_box": { - "material": "GRAY_SHULKER_BOX" - }, - "grayshulkerbox": "gray_shulker_box", - "grashulkerbox": "gray_shulker_box", - "grachest": "gray_shulker_box", - "greyshulkerbox": "gray_shulker_box", - "greychest": "gray_shulker_box", - "graychest": "gray_shulker_box", - "dgrashulkerbox": "gray_shulker_box", - "dgrachest": "gray_shulker_box", - "darkgrashulkerbox": "gray_shulker_box", - "darkgrachest": "gray_shulker_box", - "dgreyshulkerbox": "gray_shulker_box", - "dgreychest": "gray_shulker_box", - "dgrayshulkerbox": "gray_shulker_box", - "dgraychest": "gray_shulker_box", - "darkgreyshulkerbox": "gray_shulker_box", - "darkgreychest": "gray_shulker_box", - "darkgrayshulkerbox": "gray_shulker_box", - "darkgraychest": "gray_shulker_box", - "gray_stained_glass": { - "material": "GRAY_STAINED_GLASS" - }, - "graystainedglass": "gray_stained_glass", - "graglass": "gray_stained_glass", - "grasglass": "gray_stained_glass", - "grastainedglass": "gray_stained_glass", - "greyglass": "gray_stained_glass", - "greysglass": "gray_stained_glass", - "greystainedglass": "gray_stained_glass", - "grayglass": "gray_stained_glass", - "graysglass": "gray_stained_glass", - "dgraglass": "gray_stained_glass", - "dgrasglass": "gray_stained_glass", - "dgrastainedglass": "gray_stained_glass", - "darkgraglass": "gray_stained_glass", - "darkgrasglass": "gray_stained_glass", - "darkgrastainedglass": "gray_stained_glass", - "dgreyglass": "gray_stained_glass", - "dgreysglass": "gray_stained_glass", - "dgreystainedglass": "gray_stained_glass", - "dgrayglass": "gray_stained_glass", - "dgraysglass": "gray_stained_glass", - "dgraystainedglass": "gray_stained_glass", - "darkgreyglass": "gray_stained_glass", - "darkgreysglass": "gray_stained_glass", - "darkgreystainedglass": "gray_stained_glass", - "darkgrayglass": "gray_stained_glass", - "darkgraysglass": "gray_stained_glass", - "darkgraystainedglass": "gray_stained_glass", - "gray_stained_glass_pane": { - "material": "GRAY_STAINED_GLASS_PANE" - }, - "graystainedglasspane": "gray_stained_glass_pane", - "graglasspane": "gray_stained_glass_pane", - "grasglasspane": "gray_stained_glass_pane", - "grastainedglasspane": "gray_stained_glass_pane", - "gragpane": "gray_stained_glass_pane", - "greyglasspane": "gray_stained_glass_pane", - "greysglasspane": "gray_stained_glass_pane", - "greystainedglasspane": "gray_stained_glass_pane", - "greygpane": "gray_stained_glass_pane", - "grayglasspane": "gray_stained_glass_pane", - "graysglasspane": "gray_stained_glass_pane", - "graygpane": "gray_stained_glass_pane", - "dgraglasspane": "gray_stained_glass_pane", - "dgrasglasspane": "gray_stained_glass_pane", - "dgrastainedglasspane": "gray_stained_glass_pane", - "dgragpane": "gray_stained_glass_pane", - "darkgraglasspane": "gray_stained_glass_pane", - "darkgrasglasspane": "gray_stained_glass_pane", - "darkgrastainedglasspane": "gray_stained_glass_pane", - "darkgragpane": "gray_stained_glass_pane", - "dgreyglasspane": "gray_stained_glass_pane", - "dgreysglasspane": "gray_stained_glass_pane", - "dgreystainedglasspane": "gray_stained_glass_pane", - "dgreygpane": "gray_stained_glass_pane", - "dgrayglasspane": "gray_stained_glass_pane", - "dgraysglasspane": "gray_stained_glass_pane", - "dgraystainedglasspane": "gray_stained_glass_pane", - "dgraygpane": "gray_stained_glass_pane", - "darkgreyglasspane": "gray_stained_glass_pane", - "darkgreysglasspane": "gray_stained_glass_pane", - "darkgreystainedglasspane": "gray_stained_glass_pane", - "darkgreygpane": "gray_stained_glass_pane", - "darkgrayglasspane": "gray_stained_glass_pane", - "darkgraysglasspane": "gray_stained_glass_pane", - "darkgraystainedglasspane": "gray_stained_glass_pane", - "darkgraygpane": "gray_stained_glass_pane", - "gray_terracotta": { - "material": "GRAY_TERRACOTTA" - }, - "grayterracotta": "gray_terracotta", - "graclay": "gray_terracotta", - "grasclay": "gray_terracotta", - "grastainedclay": "gray_terracotta", - "graterra": "gray_terracotta", - "gratcota": "gray_terracotta", - "graterracota": "gray_terracotta", - "graterracotta": "gray_terracotta", - "greyclay": "gray_terracotta", - "greysclay": "gray_terracotta", - "greystainedclay": "gray_terracotta", - "greyterra": "gray_terracotta", - "greytcota": "gray_terracotta", - "greyterracota": "gray_terracotta", - "greyterracotta": "gray_terracotta", - "grayclay": "gray_terracotta", - "graysclay": "gray_terracotta", - "graystainedclay": "gray_terracotta", - "grayterra": "gray_terracotta", - "graytcota": "gray_terracotta", - "grayterracota": "gray_terracotta", - "dgraclay": "gray_terracotta", - "dgrasclay": "gray_terracotta", - "dgrastainedclay": "gray_terracotta", - "dgraterra": "gray_terracotta", - "dgratcota": "gray_terracotta", - "dgraterracota": "gray_terracotta", - "dgraterracotta": "gray_terracotta", - "darkgraclay": "gray_terracotta", - "darkgrasclay": "gray_terracotta", - "darkgrastainedclay": "gray_terracotta", - "darkgraterra": "gray_terracotta", - "darkgratcota": "gray_terracotta", - "darkgraterracota": "gray_terracotta", - "darkgraterracotta": "gray_terracotta", - "dgreyclay": "gray_terracotta", - "dgreysclay": "gray_terracotta", - "dgreystainedclay": "gray_terracotta", - "dgreyterra": "gray_terracotta", - "dgreytcota": "gray_terracotta", - "dgreyterracota": "gray_terracotta", - "dgreyterracotta": "gray_terracotta", - "dgrayclay": "gray_terracotta", - "dgraysclay": "gray_terracotta", - "dgraystainedclay": "gray_terracotta", - "dgrayterra": "gray_terracotta", - "dgraytcota": "gray_terracotta", - "dgrayterracota": "gray_terracotta", - "dgrayterracotta": "gray_terracotta", - "darkgreyclay": "gray_terracotta", - "darkgreysclay": "gray_terracotta", - "darkgreystainedclay": "gray_terracotta", - "darkgreyterra": "gray_terracotta", - "darkgreytcota": "gray_terracotta", - "darkgreyterracota": "gray_terracotta", - "darkgreyterracotta": "gray_terracotta", - "darkgrayclay": "gray_terracotta", - "darkgraysclay": "gray_terracotta", - "darkgraystainedclay": "gray_terracotta", - "darkgrayterra": "gray_terracotta", - "darkgraytcota": "gray_terracotta", - "darkgrayterracota": "gray_terracotta", - "darkgrayterracotta": "gray_terracotta", - "gray_wall_banner": { - "material": "GRAY_WALL_BANNER", - "unspawnable": true - }, - "graywallbanner": "gray_wall_banner", - "gray_wool": { - "material": "GRAY_WOOL" - }, - "graywool": "gray_wool", - "grawool": "gray_wool", - "gracloth": "gray_wool", - "gracotton": "gray_wool", - "greywool": "gray_wool", - "greycloth": "gray_wool", - "greycotton": "gray_wool", - "graycloth": "gray_wool", - "graycotton": "gray_wool", - "dgrawool": "gray_wool", - "dgracloth": "gray_wool", - "dgracotton": "gray_wool", - "darkgrawool": "gray_wool", - "darkgracloth": "gray_wool", - "darkgracotton": "gray_wool", - "dgreywool": "gray_wool", - "dgreycloth": "gray_wool", - "dgreycotton": "gray_wool", - "dgraywool": "gray_wool", - "dgraycloth": "gray_wool", - "dgraycotton": "gray_wool", - "darkgreywool": "gray_wool", - "darkgreycloth": "gray_wool", - "darkgreycotton": "gray_wool", - "darkgraywool": "gray_wool", - "darkgraycloth": "gray_wool", - "darkgraycotton": "gray_wool", - "green_banner": { - "material": "GREEN_BANNER" - }, - "greenbanner": "green_banner", - "grestandingbanner": "green_banner", - "grebanner": "green_banner", - "dgrestandingbanner": "green_banner", - "dgrebanner": "green_banner", - "darkgrestandingbanner": "green_banner", - "darkgrebanner": "green_banner", - "greenstandingbanner": "green_banner", - "dgreenstandingbanner": "green_banner", - "dgreenbanner": "green_banner", - "darkgreenstandingbanner": "green_banner", - "darkgreenbanner": "green_banner", - "green_bed": { - "material": "GREEN_BED" - }, - "greenbed": "green_bed", - "grebed": "green_bed", - "dgrebed": "green_bed", - "darkgrebed": "green_bed", - "dgreenbed": "green_bed", - "darkgreenbed": "green_bed", - "green_carpet": { - "material": "GREEN_CARPET" - }, - "greencarpet": "green_carpet", - "grecarpet": "green_carpet", - "grefloor": "green_carpet", - "dgrecarpet": "green_carpet", - "dgrefloor": "green_carpet", - "darkgrecarpet": "green_carpet", - "darkgrefloor": "green_carpet", - "greenfloor": "green_carpet", - "dgreencarpet": "green_carpet", - "dgreenfloor": "green_carpet", - "darkgreencarpet": "green_carpet", - "darkgreenfloor": "green_carpet", - "green_concrete": { - "material": "GREEN_CONCRETE" - }, - "greenconcrete": "green_concrete", - "greconcrete": "green_concrete", - "dgreconcrete": "green_concrete", - "darkgreconcrete": "green_concrete", - "dgreenconcrete": "green_concrete", - "darkgreenconcrete": "green_concrete", - "green_concrete_powder": { - "material": "GREEN_CONCRETE_POWDER" - }, - "greenconcretepowder": "green_concrete_powder", - "greconcretepowder": "green_concrete_powder", - "greconcretesand": "green_concrete_powder", - "grecpowder": "green_concrete_powder", - "grecdust": "green_concrete_powder", - "grecp": "green_concrete_powder", - "dgreconcretepowder": "green_concrete_powder", - "dgreconcretesand": "green_concrete_powder", - "dgrecpowder": "green_concrete_powder", - "dgrecdust": "green_concrete_powder", - "dgrecp": "green_concrete_powder", - "darkgreconcretepowder": "green_concrete_powder", - "darkgreconcretesand": "green_concrete_powder", - "darkgrecpowder": "green_concrete_powder", - "darkgrecdust": "green_concrete_powder", - "darkgrecp": "green_concrete_powder", - "greenconcretesand": "green_concrete_powder", - "greencpowder": "green_concrete_powder", - "greencdust": "green_concrete_powder", - "greencp": "green_concrete_powder", - "dgreenconcretepowder": "green_concrete_powder", - "dgreenconcretesand": "green_concrete_powder", - "dgreencpowder": "green_concrete_powder", - "dgreencdust": "green_concrete_powder", - "dgreencp": "green_concrete_powder", - "darkgreenconcretepowder": "green_concrete_powder", - "darkgreenconcretesand": "green_concrete_powder", - "darkgreencpowder": "green_concrete_powder", - "darkgreencdust": "green_concrete_powder", - "darkgreencp": "green_concrete_powder", - "green_glazed_terracotta": { - "material": "GREEN_GLAZED_TERRACOTTA" - }, - "greenglazedterracotta": "green_glazed_terracotta", - "greglazedtcota": "green_glazed_terracotta", - "greglazedterra": "green_glazed_terracotta", - "greglazedterracotta": "green_glazed_terracotta", - "greglazedterracota": "green_glazed_terracotta", - "dgreglazedtcota": "green_glazed_terracotta", - "dgreglazedterra": "green_glazed_terracotta", - "dgreglazedterracotta": "green_glazed_terracotta", - "dgreglazedterracota": "green_glazed_terracotta", - "darkgreglazedtcota": "green_glazed_terracotta", - "darkgreglazedterra": "green_glazed_terracotta", - "darkgreglazedterracotta": "green_glazed_terracotta", - "darkgreglazedterracota": "green_glazed_terracotta", - "greenglazedtcota": "green_glazed_terracotta", - "greenglazedterra": "green_glazed_terracotta", - "greenglazedterracota": "green_glazed_terracotta", - "dgreenglazedtcota": "green_glazed_terracotta", - "dgreenglazedterra": "green_glazed_terracotta", - "dgreenglazedterracotta": "green_glazed_terracotta", - "dgreenglazedterracota": "green_glazed_terracotta", - "darkgreenglazedtcota": "green_glazed_terracotta", - "darkgreenglazedterra": "green_glazed_terracotta", - "darkgreenglazedterracotta": "green_glazed_terracotta", - "darkgreenglazedterracota": "green_glazed_terracotta", - "green_shulker_box": { - "material": "GREEN_SHULKER_BOX" - }, - "greenshulkerbox": "green_shulker_box", - "greshulkerbox": "green_shulker_box", - "grechest": "green_shulker_box", - "dgreshulkerbox": "green_shulker_box", - "dgrechest": "green_shulker_box", - "darkgreshulkerbox": "green_shulker_box", - "darkgrechest": "green_shulker_box", - "greenchest": "green_shulker_box", - "dgreenshulkerbox": "green_shulker_box", - "dgreenchest": "green_shulker_box", - "darkgreenshulkerbox": "green_shulker_box", - "darkgreenchest": "green_shulker_box", - "green_stained_glass": { - "material": "GREEN_STAINED_GLASS" - }, - "greenstainedglass": "green_stained_glass", - "greglass": "green_stained_glass", - "gresglass": "green_stained_glass", - "grestainedglass": "green_stained_glass", - "dgreglass": "green_stained_glass", - "dgresglass": "green_stained_glass", - "dgrestainedglass": "green_stained_glass", - "darkgreglass": "green_stained_glass", - "darkgresglass": "green_stained_glass", - "darkgrestainedglass": "green_stained_glass", - "greenglass": "green_stained_glass", - "greensglass": "green_stained_glass", - "dgreenglass": "green_stained_glass", - "dgreensglass": "green_stained_glass", - "dgreenstainedglass": "green_stained_glass", - "darkgreenglass": "green_stained_glass", - "darkgreensglass": "green_stained_glass", - "darkgreenstainedglass": "green_stained_glass", - "green_stained_glass_pane": { - "material": "GREEN_STAINED_GLASS_PANE" - }, - "greenstainedglasspane": "green_stained_glass_pane", - "greglasspane": "green_stained_glass_pane", - "gresglasspane": "green_stained_glass_pane", - "grestainedglasspane": "green_stained_glass_pane", - "gregpane": "green_stained_glass_pane", - "dgreglasspane": "green_stained_glass_pane", - "dgresglasspane": "green_stained_glass_pane", - "dgrestainedglasspane": "green_stained_glass_pane", - "dgregpane": "green_stained_glass_pane", - "darkgreglasspane": "green_stained_glass_pane", - "darkgresglasspane": "green_stained_glass_pane", - "darkgrestainedglasspane": "green_stained_glass_pane", - "darkgregpane": "green_stained_glass_pane", - "greenglasspane": "green_stained_glass_pane", - "greensglasspane": "green_stained_glass_pane", - "greengpane": "green_stained_glass_pane", - "dgreenglasspane": "green_stained_glass_pane", - "dgreensglasspane": "green_stained_glass_pane", - "dgreenstainedglasspane": "green_stained_glass_pane", - "dgreengpane": "green_stained_glass_pane", - "darkgreenglasspane": "green_stained_glass_pane", - "darkgreensglasspane": "green_stained_glass_pane", - "darkgreenstainedglasspane": "green_stained_glass_pane", - "darkgreengpane": "green_stained_glass_pane", - "green_terracotta": { - "material": "GREEN_TERRACOTTA" - }, - "greenterracotta": "green_terracotta", - "greclay": "green_terracotta", - "gresclay": "green_terracotta", - "grestainedclay": "green_terracotta", - "greterra": "green_terracotta", - "gretcota": "green_terracotta", - "greterracota": "green_terracotta", - "greterracotta": "green_terracotta", - "dgreclay": "green_terracotta", - "dgresclay": "green_terracotta", - "dgrestainedclay": "green_terracotta", - "dgreterra": "green_terracotta", - "dgretcota": "green_terracotta", - "dgreterracota": "green_terracotta", - "dgreterracotta": "green_terracotta", - "darkgreclay": "green_terracotta", - "darkgresclay": "green_terracotta", - "darkgrestainedclay": "green_terracotta", - "darkgreterra": "green_terracotta", - "darkgretcota": "green_terracotta", - "darkgreterracota": "green_terracotta", - "darkgreterracotta": "green_terracotta", - "greenclay": "green_terracotta", - "greensclay": "green_terracotta", - "greenstainedclay": "green_terracotta", - "greenterra": "green_terracotta", - "greentcota": "green_terracotta", - "greenterracota": "green_terracotta", - "dgreenclay": "green_terracotta", - "dgreensclay": "green_terracotta", - "dgreenstainedclay": "green_terracotta", - "dgreenterra": "green_terracotta", - "dgreentcota": "green_terracotta", - "dgreenterracota": "green_terracotta", - "dgreenterracotta": "green_terracotta", - "darkgreenclay": "green_terracotta", - "darkgreensclay": "green_terracotta", - "darkgreenstainedclay": "green_terracotta", - "darkgreenterra": "green_terracotta", - "darkgreentcota": "green_terracotta", - "darkgreenterracota": "green_terracotta", - "darkgreenterracotta": "green_terracotta", - "green_wall_banner": { - "material": "GREEN_WALL_BANNER", - "unspawnable": true - }, - "greenwallbanner": "green_wall_banner", - "green_wool": { - "material": "GREEN_WOOL" - }, - "greenwool": "green_wool", - "grewool": "green_wool", - "grecloth": "green_wool", - "grecotton": "green_wool", - "dgrewool": "green_wool", - "dgrecloth": "green_wool", - "dgrecotton": "green_wool", - "darkgrewool": "green_wool", - "darkgrecloth": "green_wool", - "darkgrecotton": "green_wool", - "greencloth": "green_wool", - "greencotton": "green_wool", - "dgreenwool": "green_wool", - "dgreencloth": "green_wool", - "dgreencotton": "green_wool", - "darkgreenwool": "green_wool", - "darkgreencloth": "green_wool", - "darkgreencotton": "green_wool", - "guardian_spawn_egg": { - "material": "GUARDIAN_SPAWN_EGG" - }, - "guardianspawnegg": "guardian_spawn_egg", - "guardianegg": "guardian_spawn_egg", - "eggguardian": "guardian_spawn_egg", - "spawneggguardian": "guardian_spawn_egg", - "guardianspawn": "guardian_spawn_egg", - "spawnguardian": "guardian_spawn_egg", - "gunpowder": { - "material": "GUNPOWDER" - }, - "hay_block": { - "material": "HAY_BLOCK" - }, - "hayblock": "hay_block", - "hay": "hay_block", - "haybale": "hay_block", - "baleofhay": "hay_block", - "hayofbale": "hay_block", - "heart_of_the_sea": { - "material": "HEART_OF_THE_SEA" - }, - "heartofthesea": "heart_of_the_sea", - "heavy_weighted_pressure_plate": { - "material": "HEAVY_WEIGHTED_PRESSURE_PLATE" - }, - "heavyweightedpressureplate": "heavy_weighted_pressure_plate", - "hopper": { - "material": "HOPPER" - }, - "chestpuller": "hopper", - "chestpull": "hopper", - "cheststorer": "hopper", - "cheststore": "hopper", - "itempuller": "hopper", - "itempull": "hopper", - "itemstorer": "hopper", - "itemstore": "hopper", - "hopper_minecart": { - "material": "HOPPER_MINECART" - }, - "hopperminecart": "hopper_minecart", - "hoppermcart": "hopper_minecart", - "hoppermc": "hopper_minecart", - "hoppercart": "hopper_minecart", - "hopminecart": "hopper_minecart", - "hopmcart": "hopper_minecart", - "hopmc": "hopper_minecart", - "hopcart": "hopper_minecart", - "hminecart": "hopper_minecart", - "hmcart": "hopper_minecart", - "hmc": "hopper_minecart", - "hcart": "hopper_minecart", - "horn_coral": { - "material": "HORN_CORAL" - }, - "horncoral": "horn_coral", - "horn_coral_block": { - "material": "HORN_CORAL_BLOCK" - }, - "horncoralblock": "horn_coral_block", - "horn_coral_fan": { - "material": "HORN_CORAL_FAN" - }, - "horncoralfan": "horn_coral_fan", - "horn_coral_wall_fan": { - "material": "HORN_CORAL_WALL_FAN", - "unspawnable": true - }, - "horncoralwallfan": "horn_coral_wall_fan", - "horse_spawn_egg": { - "material": "HORSE_SPAWN_EGG" - }, - "horsespawnegg": "horse_spawn_egg", - "horseegg": "horse_spawn_egg", - "egghorse": "horse_spawn_egg", - "spawnegghorse": "horse_spawn_egg", - "horsespawn": "horse_spawn_egg", - "spawnhorse": "horse_spawn_egg", - "husk_spawn_egg": { - "material": "HUSK_SPAWN_EGG" - }, - "huskspawnegg": "husk_spawn_egg", - "huskegg": "husk_spawn_egg", - "egghusk": "husk_spawn_egg", - "spawnegghusk": "husk_spawn_egg", - "huskspawn": "husk_spawn_egg", - "spawnhusk": "husk_spawn_egg", - "ice": { - "material": "ICE" - }, - "frozenwater": "ice", - "waterfrozen": "ice", - "freezewater": "ice", - "waterfreeze": "ice", - "infested_chiseled_stone_bricks": { - "material": "INFESTED_CHISELED_STONE_BRICKS" - }, - "infestedchiseledstonebricks": "infested_chiseled_stone_bricks", - "silverfishchiseledstonebrick": "infested_chiseled_stone_bricks", - "silverfishcirclestonebrick": "infested_chiseled_stone_bricks", - "silverfishcistonebrick": "infested_chiseled_stone_bricks", - "sfishchiseledstonebrick": "infested_chiseled_stone_bricks", - "sfishcirclestonebrick": "infested_chiseled_stone_bricks", - "sfishcistonebrick": "infested_chiseled_stone_bricks", - "fishchiseledstonebrick": "infested_chiseled_stone_bricks", - "fishcirclestonebrick": "infested_chiseled_stone_bricks", - "fishcistonebrick": "infested_chiseled_stone_bricks", - "infestedchiseledstonebrick": "infested_chiseled_stone_bricks", - "infestedcirclestonebrick": "infested_chiseled_stone_bricks", - "infestedcistonebrick": "infested_chiseled_stone_bricks", - "monstereggchiseledstonebrick": "infested_chiseled_stone_bricks", - "monstereggcirclestonebrick": "infested_chiseled_stone_bricks", - "monstereggcistonebrick": "infested_chiseled_stone_bricks", - "meggchiseledstonebrick": "infested_chiseled_stone_bricks", - "meggcirclestonebrick": "infested_chiseled_stone_bricks", - "meggcistonebrick": "infested_chiseled_stone_bricks", - "trapchiseledstonebrick": "infested_chiseled_stone_bricks", - "trapcirclestonebrick": "infested_chiseled_stone_bricks", - "trapcistonebrick": "infested_chiseled_stone_bricks", - "sfchiseledstonebrick": "infested_chiseled_stone_bricks", - "sfcirclestonebrick": "infested_chiseled_stone_bricks", - "sfcistonebrick": "infested_chiseled_stone_bricks", - "mechiseledstonebrick": "infested_chiseled_stone_bricks", - "mecirclestonebrick": "infested_chiseled_stone_bricks", - "mecistonebrick": "infested_chiseled_stone_bricks", - "silverfishchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "silverfishcirclestonebrickblock": "infested_chiseled_stone_bricks", - "silverfishcistonebrickblock": "infested_chiseled_stone_bricks", - "sfishchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "sfishcirclestonebrickblock": "infested_chiseled_stone_bricks", - "sfishcistonebrickblock": "infested_chiseled_stone_bricks", - "fishchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "fishcirclestonebrickblock": "infested_chiseled_stone_bricks", - "fishcistonebrickblock": "infested_chiseled_stone_bricks", - "infestedchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "infestedcirclestonebrickblock": "infested_chiseled_stone_bricks", - "infestedcistonebrickblock": "infested_chiseled_stone_bricks", - "monstereggchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "monstereggcirclestonebrickblock": "infested_chiseled_stone_bricks", - "monstereggcistonebrickblock": "infested_chiseled_stone_bricks", - "meggchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "meggcirclestonebrickblock": "infested_chiseled_stone_bricks", - "meggcistonebrickblock": "infested_chiseled_stone_bricks", - "trapchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "trapcirclestonebrickblock": "infested_chiseled_stone_bricks", - "trapcistonebrickblock": "infested_chiseled_stone_bricks", - "sfchiseledstonebrickblock": "infested_chiseled_stone_bricks", - "sfcirclestonebrickblock": "infested_chiseled_stone_bricks", - "sfcistonebrickblock": "infested_chiseled_stone_bricks", - "mechiseledstonebrickblock": "infested_chiseled_stone_bricks", - "mecirclestonebrickblock": "infested_chiseled_stone_bricks", - "mecistonebrickblock": "infested_chiseled_stone_bricks", - "silverfishchiseledstonebb": "infested_chiseled_stone_bricks", - "silverfishcirclestonebb": "infested_chiseled_stone_bricks", - "silverfishcistonebb": "infested_chiseled_stone_bricks", - "sfishchiseledstonebb": "infested_chiseled_stone_bricks", - "sfishcirclestonebb": "infested_chiseled_stone_bricks", - "sfishcistonebb": "infested_chiseled_stone_bricks", - "fishchiseledstonebb": "infested_chiseled_stone_bricks", - "fishcirclestonebb": "infested_chiseled_stone_bricks", - "fishcistonebb": "infested_chiseled_stone_bricks", - "infestedchiseledstonebb": "infested_chiseled_stone_bricks", - "infestedcirclestonebb": "infested_chiseled_stone_bricks", - "infestedcistonebb": "infested_chiseled_stone_bricks", - "monstereggchiseledstonebb": "infested_chiseled_stone_bricks", - "monstereggcirclestonebb": "infested_chiseled_stone_bricks", - "monstereggcistonebb": "infested_chiseled_stone_bricks", - "meggchiseledstonebb": "infested_chiseled_stone_bricks", - "meggcirclestonebb": "infested_chiseled_stone_bricks", - "meggcistonebb": "infested_chiseled_stone_bricks", - "trapchiseledstonebb": "infested_chiseled_stone_bricks", - "trapcirclestonebb": "infested_chiseled_stone_bricks", - "trapcistonebb": "infested_chiseled_stone_bricks", - "sfchiseledstonebb": "infested_chiseled_stone_bricks", - "sfcirclestonebb": "infested_chiseled_stone_bricks", - "sfcistonebb": "infested_chiseled_stone_bricks", - "mechiseledstonebb": "infested_chiseled_stone_bricks", - "mecirclestonebb": "infested_chiseled_stone_bricks", - "mecistonebb": "infested_chiseled_stone_bricks", - "silverfishchiseledsbrick": "infested_chiseled_stone_bricks", - "silverfishcirclesbrick": "infested_chiseled_stone_bricks", - "silverfishcisbrick": "infested_chiseled_stone_bricks", - "sfishchiseledsbrick": "infested_chiseled_stone_bricks", - "sfishcirclesbrick": "infested_chiseled_stone_bricks", - "sfishcisbrick": "infested_chiseled_stone_bricks", - "fishchiseledsbrick": "infested_chiseled_stone_bricks", - "fishcirclesbrick": "infested_chiseled_stone_bricks", - "fishcisbrick": "infested_chiseled_stone_bricks", - "infestedchiseledsbrick": "infested_chiseled_stone_bricks", - "infestedcirclesbrick": "infested_chiseled_stone_bricks", - "infestedcisbrick": "infested_chiseled_stone_bricks", - "monstereggchiseledsbrick": "infested_chiseled_stone_bricks", - "monstereggcirclesbrick": "infested_chiseled_stone_bricks", - "monstereggcisbrick": "infested_chiseled_stone_bricks", - "meggchiseledsbrick": "infested_chiseled_stone_bricks", - "meggcirclesbrick": "infested_chiseled_stone_bricks", - "meggcisbrick": "infested_chiseled_stone_bricks", - "trapchiseledsbrick": "infested_chiseled_stone_bricks", - "trapcirclesbrick": "infested_chiseled_stone_bricks", - "trapcisbrick": "infested_chiseled_stone_bricks", - "sfchiseledsbrick": "infested_chiseled_stone_bricks", - "sfcirclesbrick": "infested_chiseled_stone_bricks", - "sfcisbrick": "infested_chiseled_stone_bricks", - "mechiseledsbrick": "infested_chiseled_stone_bricks", - "mecirclesbrick": "infested_chiseled_stone_bricks", - "mecisbrick": "infested_chiseled_stone_bricks", - "silverfishchiseledsbricks": "infested_chiseled_stone_bricks", - "silverfishcirclesbricks": "infested_chiseled_stone_bricks", - "silverfishcisbricks": "infested_chiseled_stone_bricks", - "sfishchiseledsbricks": "infested_chiseled_stone_bricks", - "sfishcirclesbricks": "infested_chiseled_stone_bricks", - "sfishcisbricks": "infested_chiseled_stone_bricks", - "fishchiseledsbricks": "infested_chiseled_stone_bricks", - "fishcirclesbricks": "infested_chiseled_stone_bricks", - "fishcisbricks": "infested_chiseled_stone_bricks", - "infestedchiseledsbricks": "infested_chiseled_stone_bricks", - "infestedcirclesbricks": "infested_chiseled_stone_bricks", - "infestedcisbricks": "infested_chiseled_stone_bricks", - "monstereggchiseledsbricks": "infested_chiseled_stone_bricks", - "monstereggcirclesbricks": "infested_chiseled_stone_bricks", - "monstereggcisbricks": "infested_chiseled_stone_bricks", - "meggchiseledsbricks": "infested_chiseled_stone_bricks", - "meggcirclesbricks": "infested_chiseled_stone_bricks", - "meggcisbricks": "infested_chiseled_stone_bricks", - "trapchiseledsbricks": "infested_chiseled_stone_bricks", - "trapcirclesbricks": "infested_chiseled_stone_bricks", - "trapcisbricks": "infested_chiseled_stone_bricks", - "sfchiseledsbricks": "infested_chiseled_stone_bricks", - "sfcirclesbricks": "infested_chiseled_stone_bricks", - "sfcisbricks": "infested_chiseled_stone_bricks", - "mechiseledsbricks": "infested_chiseled_stone_bricks", - "mecirclesbricks": "infested_chiseled_stone_bricks", - "mecisbricks": "infested_chiseled_stone_bricks", - "silverfishchiseledsbrickblock": "infested_chiseled_stone_bricks", - "silverfishcirclesbrickblock": "infested_chiseled_stone_bricks", - "silverfishcisbrickblock": "infested_chiseled_stone_bricks", - "sfishchiseledsbrickblock": "infested_chiseled_stone_bricks", - "sfishcirclesbrickblock": "infested_chiseled_stone_bricks", - "sfishcisbrickblock": "infested_chiseled_stone_bricks", - "fishchiseledsbrickblock": "infested_chiseled_stone_bricks", - "fishcirclesbrickblock": "infested_chiseled_stone_bricks", - "fishcisbrickblock": "infested_chiseled_stone_bricks", - "infestedchiseledsbrickblock": "infested_chiseled_stone_bricks", - "infestedcirclesbrickblock": "infested_chiseled_stone_bricks", - "infestedcisbrickblock": "infested_chiseled_stone_bricks", - "monstereggchiseledsbrickblock": "infested_chiseled_stone_bricks", - "monstereggcirclesbrickblock": "infested_chiseled_stone_bricks", - "monstereggcisbrickblock": "infested_chiseled_stone_bricks", - "meggchiseledsbrickblock": "infested_chiseled_stone_bricks", - "meggcirclesbrickblock": "infested_chiseled_stone_bricks", - "meggcisbrickblock": "infested_chiseled_stone_bricks", - "trapchiseledsbrickblock": "infested_chiseled_stone_bricks", - "trapcirclesbrickblock": "infested_chiseled_stone_bricks", - "trapcisbrickblock": "infested_chiseled_stone_bricks", - "sfchiseledsbrickblock": "infested_chiseled_stone_bricks", - "sfcirclesbrickblock": "infested_chiseled_stone_bricks", - "sfcisbrickblock": "infested_chiseled_stone_bricks", - "mechiseledsbrickblock": "infested_chiseled_stone_bricks", - "mecirclesbrickblock": "infested_chiseled_stone_bricks", - "mecisbrickblock": "infested_chiseled_stone_bricks", - "silverfishchiseledstonebricks": "infested_chiseled_stone_bricks", - "silverfishcirclestonebricks": "infested_chiseled_stone_bricks", - "silverfishcistonebricks": "infested_chiseled_stone_bricks", - "sfishchiseledstonebricks": "infested_chiseled_stone_bricks", - "sfishcirclestonebricks": "infested_chiseled_stone_bricks", - "sfishcistonebricks": "infested_chiseled_stone_bricks", - "fishchiseledstonebricks": "infested_chiseled_stone_bricks", - "fishcirclestonebricks": "infested_chiseled_stone_bricks", - "fishcistonebricks": "infested_chiseled_stone_bricks", - "infestedcirclestonebricks": "infested_chiseled_stone_bricks", - "infestedcistonebricks": "infested_chiseled_stone_bricks", - "monstereggchiseledstonebricks": "infested_chiseled_stone_bricks", - "monstereggcirclestonebricks": "infested_chiseled_stone_bricks", - "monstereggcistonebricks": "infested_chiseled_stone_bricks", - "meggchiseledstonebricks": "infested_chiseled_stone_bricks", - "meggcirclestonebricks": "infested_chiseled_stone_bricks", - "meggcistonebricks": "infested_chiseled_stone_bricks", - "trapchiseledstonebricks": "infested_chiseled_stone_bricks", - "trapcirclestonebricks": "infested_chiseled_stone_bricks", - "trapcistonebricks": "infested_chiseled_stone_bricks", - "sfchiseledstonebricks": "infested_chiseled_stone_bricks", - "sfcirclestonebricks": "infested_chiseled_stone_bricks", - "sfcistonebricks": "infested_chiseled_stone_bricks", - "mechiseledstonebricks": "infested_chiseled_stone_bricks", - "mecirclestonebricks": "infested_chiseled_stone_bricks", - "mecistonebricks": "infested_chiseled_stone_bricks", - "silverfishchiseledsbb": "infested_chiseled_stone_bricks", - "silverfishcirclesbb": "infested_chiseled_stone_bricks", - "silverfishcisbb": "infested_chiseled_stone_bricks", - "sfishchiseledsbb": "infested_chiseled_stone_bricks", - "sfishcirclesbb": "infested_chiseled_stone_bricks", - "sfishcisbb": "infested_chiseled_stone_bricks", - "fishchiseledsbb": "infested_chiseled_stone_bricks", - "fishcirclesbb": "infested_chiseled_stone_bricks", - "fishcisbb": "infested_chiseled_stone_bricks", - "infestedchiseledsbb": "infested_chiseled_stone_bricks", - "infestedcirclesbb": "infested_chiseled_stone_bricks", - "infestedcisbb": "infested_chiseled_stone_bricks", - "monstereggchiseledsbb": "infested_chiseled_stone_bricks", - "monstereggcirclesbb": "infested_chiseled_stone_bricks", - "monstereggcisbb": "infested_chiseled_stone_bricks", - "meggchiseledsbb": "infested_chiseled_stone_bricks", - "meggcirclesbb": "infested_chiseled_stone_bricks", - "meggcisbb": "infested_chiseled_stone_bricks", - "trapchiseledsbb": "infested_chiseled_stone_bricks", - "trapcirclesbb": "infested_chiseled_stone_bricks", - "trapcisbb": "infested_chiseled_stone_bricks", - "sfchiseledsbb": "infested_chiseled_stone_bricks", - "sfcirclesbb": "infested_chiseled_stone_bricks", - "sfcisbb": "infested_chiseled_stone_bricks", - "mechiseledsbb": "infested_chiseled_stone_bricks", - "mecirclesbb": "infested_chiseled_stone_bricks", - "mecisbb": "infested_chiseled_stone_bricks", - "infested_cobblestone": { - "material": "INFESTED_COBBLESTONE" - }, - "infestedcobblestone": "infested_cobblestone", - "silverfishcobblestone": "infested_cobblestone", - "sfishcobblestone": "infested_cobblestone", - "fishcobblestone": "infested_cobblestone", - "monstereggcobblestone": "infested_cobblestone", - "meggcobblestone": "infested_cobblestone", - "trapcobblestone": "infested_cobblestone", - "sfcobblestone": "infested_cobblestone", - "mecobblestone": "infested_cobblestone", - "silverfishcstone": "infested_cobblestone", - "sfishcstone": "infested_cobblestone", - "fishcstone": "infested_cobblestone", - "infestedcstone": "infested_cobblestone", - "monstereggcstone": "infested_cobblestone", - "meggcstone": "infested_cobblestone", - "trapcstone": "infested_cobblestone", - "sfcstone": "infested_cobblestone", - "mecstone": "infested_cobblestone", - "silverfishcobble": "infested_cobblestone", - "sfishcobble": "infested_cobblestone", - "fishcobble": "infested_cobblestone", - "infestedcobble": "infested_cobblestone", - "monstereggcobble": "infested_cobblestone", - "meggcobble": "infested_cobblestone", - "trapcobble": "infested_cobblestone", - "sfcobble": "infested_cobblestone", - "mecobble": "infested_cobblestone", - "infested_cracked_stone_bricks": { - "material": "INFESTED_CRACKED_STONE_BRICKS" - }, - "infestedcrackedstonebricks": "infested_cracked_stone_bricks", - "silverfishcrackedstonebrick": "infested_cracked_stone_bricks", - "silverfishcrackstonebrick": "infested_cracked_stone_bricks", - "silverfishcrstonebrick": "infested_cracked_stone_bricks", - "silverfishcstonebrick": "infested_cracked_stone_bricks", - "sfishcrackedstonebrick": "infested_cracked_stone_bricks", - "sfishcrackstonebrick": "infested_cracked_stone_bricks", - "sfishcrstonebrick": "infested_cracked_stone_bricks", - "sfishcstonebrick": "infested_cracked_stone_bricks", - "fishcrackedstonebrick": "infested_cracked_stone_bricks", - "fishcrackstonebrick": "infested_cracked_stone_bricks", - "fishcrstonebrick": "infested_cracked_stone_bricks", - "fishcstonebrick": "infested_cracked_stone_bricks", - "infestedcrackedstonebrick": "infested_cracked_stone_bricks", - "infestedcrackstonebrick": "infested_cracked_stone_bricks", - "infestedcrstonebrick": "infested_cracked_stone_bricks", - "infestedcstonebrick": "infested_cracked_stone_bricks", - "monstereggcrackedstonebrick": "infested_cracked_stone_bricks", - "monstereggcrackstonebrick": "infested_cracked_stone_bricks", - "monstereggcrstonebrick": "infested_cracked_stone_bricks", - "monstereggcstonebrick": "infested_cracked_stone_bricks", - "meggcrackedstonebrick": "infested_cracked_stone_bricks", - "meggcrackstonebrick": "infested_cracked_stone_bricks", - "meggcrstonebrick": "infested_cracked_stone_bricks", - "meggcstonebrick": "infested_cracked_stone_bricks", - "trapcrackedstonebrick": "infested_cracked_stone_bricks", - "trapcrackstonebrick": "infested_cracked_stone_bricks", - "trapcrstonebrick": "infested_cracked_stone_bricks", - "trapcstonebrick": "infested_cracked_stone_bricks", - "sfcrackedstonebrick": "infested_cracked_stone_bricks", - "sfcrackstonebrick": "infested_cracked_stone_bricks", - "sfcrstonebrick": "infested_cracked_stone_bricks", - "sfcstonebrick": "infested_cracked_stone_bricks", - "mecrackedstonebrick": "infested_cracked_stone_bricks", - "mecrackstonebrick": "infested_cracked_stone_bricks", - "mecrstonebrick": "infested_cracked_stone_bricks", - "mecstonebrick": "infested_cracked_stone_bricks", - "silverfishcrackedstonebrickblock": "infested_cracked_stone_bricks", - "silverfishcrackstonebrickblock": "infested_cracked_stone_bricks", - "silverfishcrstonebrickblock": "infested_cracked_stone_bricks", - "silverfishcstonebrickblock": "infested_cracked_stone_bricks", - "sfishcrackedstonebrickblock": "infested_cracked_stone_bricks", - "sfishcrackstonebrickblock": "infested_cracked_stone_bricks", - "sfishcrstonebrickblock": "infested_cracked_stone_bricks", - "sfishcstonebrickblock": "infested_cracked_stone_bricks", - "fishcrackedstonebrickblock": "infested_cracked_stone_bricks", - "fishcrackstonebrickblock": "infested_cracked_stone_bricks", - "fishcrstonebrickblock": "infested_cracked_stone_bricks", - "fishcstonebrickblock": "infested_cracked_stone_bricks", - "infestedcrackedstonebrickblock": "infested_cracked_stone_bricks", - "infestedcrackstonebrickblock": "infested_cracked_stone_bricks", - "infestedcrstonebrickblock": "infested_cracked_stone_bricks", - "infestedcstonebrickblock": "infested_cracked_stone_bricks", - "monstereggcrackedstonebrickblock": "infested_cracked_stone_bricks", - "monstereggcrackstonebrickblock": "infested_cracked_stone_bricks", - "monstereggcrstonebrickblock": "infested_cracked_stone_bricks", - "monstereggcstonebrickblock": "infested_cracked_stone_bricks", - "meggcrackedstonebrickblock": "infested_cracked_stone_bricks", - "meggcrackstonebrickblock": "infested_cracked_stone_bricks", - "meggcrstonebrickblock": "infested_cracked_stone_bricks", - "meggcstonebrickblock": "infested_cracked_stone_bricks", - "trapcrackedstonebrickblock": "infested_cracked_stone_bricks", - "trapcrackstonebrickblock": "infested_cracked_stone_bricks", - "trapcrstonebrickblock": "infested_cracked_stone_bricks", - "trapcstonebrickblock": "infested_cracked_stone_bricks", - "sfcrackedstonebrickblock": "infested_cracked_stone_bricks", - "sfcrackstonebrickblock": "infested_cracked_stone_bricks", - "sfcrstonebrickblock": "infested_cracked_stone_bricks", - "sfcstonebrickblock": "infested_cracked_stone_bricks", - "mecrackedstonebrickblock": "infested_cracked_stone_bricks", - "mecrackstonebrickblock": "infested_cracked_stone_bricks", - "mecrstonebrickblock": "infested_cracked_stone_bricks", - "mecstonebrickblock": "infested_cracked_stone_bricks", - "silverfishcrackedstonebb": "infested_cracked_stone_bricks", - "silverfishcrackstonebb": "infested_cracked_stone_bricks", - "silverfishcrstonebb": "infested_cracked_stone_bricks", - "silverfishcstonebb": "infested_cracked_stone_bricks", - "sfishcrackedstonebb": "infested_cracked_stone_bricks", - "sfishcrackstonebb": "infested_cracked_stone_bricks", - "sfishcrstonebb": "infested_cracked_stone_bricks", - "sfishcstonebb": "infested_cracked_stone_bricks", - "fishcrackedstonebb": "infested_cracked_stone_bricks", - "fishcrackstonebb": "infested_cracked_stone_bricks", - "fishcrstonebb": "infested_cracked_stone_bricks", - "fishcstonebb": "infested_cracked_stone_bricks", - "infestedcrackedstonebb": "infested_cracked_stone_bricks", - "infestedcrackstonebb": "infested_cracked_stone_bricks", - "infestedcrstonebb": "infested_cracked_stone_bricks", - "infestedcstonebb": "infested_cracked_stone_bricks", - "monstereggcrackedstonebb": "infested_cracked_stone_bricks", - "monstereggcrackstonebb": "infested_cracked_stone_bricks", - "monstereggcrstonebb": "infested_cracked_stone_bricks", - "monstereggcstonebb": "infested_cracked_stone_bricks", - "meggcrackedstonebb": "infested_cracked_stone_bricks", - "meggcrackstonebb": "infested_cracked_stone_bricks", - "meggcrstonebb": "infested_cracked_stone_bricks", - "meggcstonebb": "infested_cracked_stone_bricks", - "trapcrackedstonebb": "infested_cracked_stone_bricks", - "trapcrackstonebb": "infested_cracked_stone_bricks", - "trapcrstonebb": "infested_cracked_stone_bricks", - "trapcstonebb": "infested_cracked_stone_bricks", - "sfcrackedstonebb": "infested_cracked_stone_bricks", - "sfcrackstonebb": "infested_cracked_stone_bricks", - "sfcrstonebb": "infested_cracked_stone_bricks", - "sfcstonebb": "infested_cracked_stone_bricks", - "mecrackedstonebb": "infested_cracked_stone_bricks", - "mecrackstonebb": "infested_cracked_stone_bricks", - "mecrstonebb": "infested_cracked_stone_bricks", - "mecstonebb": "infested_cracked_stone_bricks", - "silverfishcrackedsbrick": "infested_cracked_stone_bricks", - "silverfishcracksbrick": "infested_cracked_stone_bricks", - "silverfishcrsbrick": "infested_cracked_stone_bricks", - "silverfishcsbrick": "infested_cracked_stone_bricks", - "sfishcrackedsbrick": "infested_cracked_stone_bricks", - "sfishcracksbrick": "infested_cracked_stone_bricks", - "sfishcrsbrick": "infested_cracked_stone_bricks", - "sfishcsbrick": "infested_cracked_stone_bricks", - "fishcrackedsbrick": "infested_cracked_stone_bricks", - "fishcracksbrick": "infested_cracked_stone_bricks", - "fishcrsbrick": "infested_cracked_stone_bricks", - "fishcsbrick": "infested_cracked_stone_bricks", - "infestedcrackedsbrick": "infested_cracked_stone_bricks", - "infestedcracksbrick": "infested_cracked_stone_bricks", - "infestedcrsbrick": "infested_cracked_stone_bricks", - "infestedcsbrick": "infested_cracked_stone_bricks", - "monstereggcrackedsbrick": "infested_cracked_stone_bricks", - "monstereggcracksbrick": "infested_cracked_stone_bricks", - "monstereggcrsbrick": "infested_cracked_stone_bricks", - "monstereggcsbrick": "infested_cracked_stone_bricks", - "meggcrackedsbrick": "infested_cracked_stone_bricks", - "meggcracksbrick": "infested_cracked_stone_bricks", - "meggcrsbrick": "infested_cracked_stone_bricks", - "meggcsbrick": "infested_cracked_stone_bricks", - "trapcrackedsbrick": "infested_cracked_stone_bricks", - "trapcracksbrick": "infested_cracked_stone_bricks", - "trapcrsbrick": "infested_cracked_stone_bricks", - "trapcsbrick": "infested_cracked_stone_bricks", - "sfcrackedsbrick": "infested_cracked_stone_bricks", - "sfcracksbrick": "infested_cracked_stone_bricks", - "sfcrsbrick": "infested_cracked_stone_bricks", - "sfcsbrick": "infested_cracked_stone_bricks", - "mecrackedsbrick": "infested_cracked_stone_bricks", - "mecracksbrick": "infested_cracked_stone_bricks", - "mecrsbrick": "infested_cracked_stone_bricks", - "mecsbrick": "infested_cracked_stone_bricks", - "silverfishcrackedsbricks": "infested_cracked_stone_bricks", - "silverfishcracksbricks": "infested_cracked_stone_bricks", - "silverfishcrsbricks": "infested_cracked_stone_bricks", - "silverfishcsbricks": "infested_cracked_stone_bricks", - "sfishcrackedsbricks": "infested_cracked_stone_bricks", - "sfishcracksbricks": "infested_cracked_stone_bricks", - "sfishcrsbricks": "infested_cracked_stone_bricks", - "sfishcsbricks": "infested_cracked_stone_bricks", - "fishcrackedsbricks": "infested_cracked_stone_bricks", - "fishcracksbricks": "infested_cracked_stone_bricks", - "fishcrsbricks": "infested_cracked_stone_bricks", - "fishcsbricks": "infested_cracked_stone_bricks", - "infestedcrackedsbricks": "infested_cracked_stone_bricks", - "infestedcracksbricks": "infested_cracked_stone_bricks", - "infestedcrsbricks": "infested_cracked_stone_bricks", - "infestedcsbricks": "infested_cracked_stone_bricks", - "monstereggcrackedsbricks": "infested_cracked_stone_bricks", - "monstereggcracksbricks": "infested_cracked_stone_bricks", - "monstereggcrsbricks": "infested_cracked_stone_bricks", - "monstereggcsbricks": "infested_cracked_stone_bricks", - "meggcrackedsbricks": "infested_cracked_stone_bricks", - "meggcracksbricks": "infested_cracked_stone_bricks", - "meggcrsbricks": "infested_cracked_stone_bricks", - "meggcsbricks": "infested_cracked_stone_bricks", - "trapcrackedsbricks": "infested_cracked_stone_bricks", - "trapcracksbricks": "infested_cracked_stone_bricks", - "trapcrsbricks": "infested_cracked_stone_bricks", - "trapcsbricks": "infested_cracked_stone_bricks", - "sfcrackedsbricks": "infested_cracked_stone_bricks", - "sfcracksbricks": "infested_cracked_stone_bricks", - "sfcrsbricks": "infested_cracked_stone_bricks", - "sfcsbricks": "infested_cracked_stone_bricks", - "mecrackedsbricks": "infested_cracked_stone_bricks", - "mecracksbricks": "infested_cracked_stone_bricks", - "mecrsbricks": "infested_cracked_stone_bricks", - "mecsbricks": "infested_cracked_stone_bricks", - "silverfishcrackedsbrickblock": "infested_cracked_stone_bricks", - "silverfishcracksbrickblock": "infested_cracked_stone_bricks", - "silverfishcrsbrickblock": "infested_cracked_stone_bricks", - "silverfishcsbrickblock": "infested_cracked_stone_bricks", - "sfishcrackedsbrickblock": "infested_cracked_stone_bricks", - "sfishcracksbrickblock": "infested_cracked_stone_bricks", - "sfishcrsbrickblock": "infested_cracked_stone_bricks", - "sfishcsbrickblock": "infested_cracked_stone_bricks", - "fishcrackedsbrickblock": "infested_cracked_stone_bricks", - "fishcracksbrickblock": "infested_cracked_stone_bricks", - "fishcrsbrickblock": "infested_cracked_stone_bricks", - "fishcsbrickblock": "infested_cracked_stone_bricks", - "infestedcrackedsbrickblock": "infested_cracked_stone_bricks", - "infestedcracksbrickblock": "infested_cracked_stone_bricks", - "infestedcrsbrickblock": "infested_cracked_stone_bricks", - "infestedcsbrickblock": "infested_cracked_stone_bricks", - "monstereggcrackedsbrickblock": "infested_cracked_stone_bricks", - "monstereggcracksbrickblock": "infested_cracked_stone_bricks", - "monstereggcrsbrickblock": "infested_cracked_stone_bricks", - "monstereggcsbrickblock": "infested_cracked_stone_bricks", - "meggcrackedsbrickblock": "infested_cracked_stone_bricks", - "meggcracksbrickblock": "infested_cracked_stone_bricks", - "meggcrsbrickblock": "infested_cracked_stone_bricks", - "meggcsbrickblock": "infested_cracked_stone_bricks", - "trapcrackedsbrickblock": "infested_cracked_stone_bricks", - "trapcracksbrickblock": "infested_cracked_stone_bricks", - "trapcrsbrickblock": "infested_cracked_stone_bricks", - "trapcsbrickblock": "infested_cracked_stone_bricks", - "sfcrackedsbrickblock": "infested_cracked_stone_bricks", - "sfcracksbrickblock": "infested_cracked_stone_bricks", - "sfcrsbrickblock": "infested_cracked_stone_bricks", - "sfcsbrickblock": "infested_cracked_stone_bricks", - "mecrackedsbrickblock": "infested_cracked_stone_bricks", - "mecracksbrickblock": "infested_cracked_stone_bricks", - "mecrsbrickblock": "infested_cracked_stone_bricks", - "mecsbrickblock": "infested_cracked_stone_bricks", - "silverfishcrackedstonebricks": "infested_cracked_stone_bricks", - "silverfishcrackstonebricks": "infested_cracked_stone_bricks", - "silverfishcrstonebricks": "infested_cracked_stone_bricks", - "silverfishcstonebricks": "infested_cracked_stone_bricks", - "sfishcrackedstonebricks": "infested_cracked_stone_bricks", - "sfishcrackstonebricks": "infested_cracked_stone_bricks", - "sfishcrstonebricks": "infested_cracked_stone_bricks", - "sfishcstonebricks": "infested_cracked_stone_bricks", - "fishcrackedstonebricks": "infested_cracked_stone_bricks", - "fishcrackstonebricks": "infested_cracked_stone_bricks", - "fishcrstonebricks": "infested_cracked_stone_bricks", - "fishcstonebricks": "infested_cracked_stone_bricks", - "infestedcrackstonebricks": "infested_cracked_stone_bricks", - "infestedcrstonebricks": "infested_cracked_stone_bricks", - "infestedcstonebricks": "infested_cracked_stone_bricks", - "monstereggcrackedstonebricks": "infested_cracked_stone_bricks", - "monstereggcrackstonebricks": "infested_cracked_stone_bricks", - "monstereggcrstonebricks": "infested_cracked_stone_bricks", - "monstereggcstonebricks": "infested_cracked_stone_bricks", - "meggcrackedstonebricks": "infested_cracked_stone_bricks", - "meggcrackstonebricks": "infested_cracked_stone_bricks", - "meggcrstonebricks": "infested_cracked_stone_bricks", - "meggcstonebricks": "infested_cracked_stone_bricks", - "trapcrackedstonebricks": "infested_cracked_stone_bricks", - "trapcrackstonebricks": "infested_cracked_stone_bricks", - "trapcrstonebricks": "infested_cracked_stone_bricks", - "trapcstonebricks": "infested_cracked_stone_bricks", - "sfcrackedstonebricks": "infested_cracked_stone_bricks", - "sfcrackstonebricks": "infested_cracked_stone_bricks", - "sfcrstonebricks": "infested_cracked_stone_bricks", - "sfcstonebricks": "infested_cracked_stone_bricks", - "mecrackedstonebricks": "infested_cracked_stone_bricks", - "mecrackstonebricks": "infested_cracked_stone_bricks", - "mecrstonebricks": "infested_cracked_stone_bricks", - "mecstonebricks": "infested_cracked_stone_bricks", - "silverfishcrackedsbb": "infested_cracked_stone_bricks", - "silverfishcracksbb": "infested_cracked_stone_bricks", - "silverfishcrsbb": "infested_cracked_stone_bricks", - "silverfishcsbb": "infested_cracked_stone_bricks", - "sfishcrackedsbb": "infested_cracked_stone_bricks", - "sfishcracksbb": "infested_cracked_stone_bricks", - "sfishcrsbb": "infested_cracked_stone_bricks", - "sfishcsbb": "infested_cracked_stone_bricks", - "fishcrackedsbb": "infested_cracked_stone_bricks", - "fishcracksbb": "infested_cracked_stone_bricks", - "fishcrsbb": "infested_cracked_stone_bricks", - "fishcsbb": "infested_cracked_stone_bricks", - "infestedcrackedsbb": "infested_cracked_stone_bricks", - "infestedcracksbb": "infested_cracked_stone_bricks", - "infestedcrsbb": "infested_cracked_stone_bricks", - "infestedcsbb": "infested_cracked_stone_bricks", - "monstereggcrackedsbb": "infested_cracked_stone_bricks", - "monstereggcracksbb": "infested_cracked_stone_bricks", - "monstereggcrsbb": "infested_cracked_stone_bricks", - "monstereggcsbb": "infested_cracked_stone_bricks", - "meggcrackedsbb": "infested_cracked_stone_bricks", - "meggcracksbb": "infested_cracked_stone_bricks", - "meggcrsbb": "infested_cracked_stone_bricks", - "meggcsbb": "infested_cracked_stone_bricks", - "trapcrackedsbb": "infested_cracked_stone_bricks", - "trapcracksbb": "infested_cracked_stone_bricks", - "trapcrsbb": "infested_cracked_stone_bricks", - "trapcsbb": "infested_cracked_stone_bricks", - "sfcrackedsbb": "infested_cracked_stone_bricks", - "sfcracksbb": "infested_cracked_stone_bricks", - "sfcrsbb": "infested_cracked_stone_bricks", - "sfcsbb": "infested_cracked_stone_bricks", - "mecrackedsbb": "infested_cracked_stone_bricks", - "mecracksbb": "infested_cracked_stone_bricks", - "mecrsbb": "infested_cracked_stone_bricks", - "mecsbb": "infested_cracked_stone_bricks", - "infested_mossy_stone_bricks": { - "material": "INFESTED_MOSSY_STONE_BRICKS" - }, - "infestedmossystonebricks": "infested_mossy_stone_bricks", - "silverfishmossystonebrick": "infested_mossy_stone_bricks", - "silverfishmossstonebrick": "infested_mossy_stone_bricks", - "silverfishmstonebrick": "infested_mossy_stone_bricks", - "sfishmossystonebrick": "infested_mossy_stone_bricks", - "sfishmossstonebrick": "infested_mossy_stone_bricks", - "sfishmstonebrick": "infested_mossy_stone_bricks", - "fishmossystonebrick": "infested_mossy_stone_bricks", - "fishmossstonebrick": "infested_mossy_stone_bricks", - "fishmstonebrick": "infested_mossy_stone_bricks", - "infestedmossystonebrick": "infested_mossy_stone_bricks", - "infestedmossstonebrick": "infested_mossy_stone_bricks", - "infestedmstonebrick": "infested_mossy_stone_bricks", - "monstereggmossystonebrick": "infested_mossy_stone_bricks", - "monstereggmossstonebrick": "infested_mossy_stone_bricks", - "monstereggmstonebrick": "infested_mossy_stone_bricks", - "meggmossystonebrick": "infested_mossy_stone_bricks", - "meggmossstonebrick": "infested_mossy_stone_bricks", - "meggmstonebrick": "infested_mossy_stone_bricks", - "trapmossystonebrick": "infested_mossy_stone_bricks", - "trapmossstonebrick": "infested_mossy_stone_bricks", - "trapmstonebrick": "infested_mossy_stone_bricks", - "sfmossystonebrick": "infested_mossy_stone_bricks", - "sfmossstonebrick": "infested_mossy_stone_bricks", - "sfmstonebrick": "infested_mossy_stone_bricks", - "memossystonebrick": "infested_mossy_stone_bricks", - "memossstonebrick": "infested_mossy_stone_bricks", - "memstonebrick": "infested_mossy_stone_bricks", - "silverfishmossystonebrickblock": "infested_mossy_stone_bricks", - "silverfishmossstonebrickblock": "infested_mossy_stone_bricks", - "silverfishmstonebrickblock": "infested_mossy_stone_bricks", - "sfishmossystonebrickblock": "infested_mossy_stone_bricks", - "sfishmossstonebrickblock": "infested_mossy_stone_bricks", - "sfishmstonebrickblock": "infested_mossy_stone_bricks", - "fishmossystonebrickblock": "infested_mossy_stone_bricks", - "fishmossstonebrickblock": "infested_mossy_stone_bricks", - "fishmstonebrickblock": "infested_mossy_stone_bricks", - "infestedmossystonebrickblock": "infested_mossy_stone_bricks", - "infestedmossstonebrickblock": "infested_mossy_stone_bricks", - "infestedmstonebrickblock": "infested_mossy_stone_bricks", - "monstereggmossystonebrickblock": "infested_mossy_stone_bricks", - "monstereggmossstonebrickblock": "infested_mossy_stone_bricks", - "monstereggmstonebrickblock": "infested_mossy_stone_bricks", - "meggmossystonebrickblock": "infested_mossy_stone_bricks", - "meggmossstonebrickblock": "infested_mossy_stone_bricks", - "meggmstonebrickblock": "infested_mossy_stone_bricks", - "trapmossystonebrickblock": "infested_mossy_stone_bricks", - "trapmossstonebrickblock": "infested_mossy_stone_bricks", - "trapmstonebrickblock": "infested_mossy_stone_bricks", - "sfmossystonebrickblock": "infested_mossy_stone_bricks", - "sfmossstonebrickblock": "infested_mossy_stone_bricks", - "sfmstonebrickblock": "infested_mossy_stone_bricks", - "memossystonebrickblock": "infested_mossy_stone_bricks", - "memossstonebrickblock": "infested_mossy_stone_bricks", - "memstonebrickblock": "infested_mossy_stone_bricks", - "silverfishmossystonebb": "infested_mossy_stone_bricks", - "silverfishmossstonebb": "infested_mossy_stone_bricks", - "silverfishmstonebb": "infested_mossy_stone_bricks", - "sfishmossystonebb": "infested_mossy_stone_bricks", - "sfishmossstonebb": "infested_mossy_stone_bricks", - "sfishmstonebb": "infested_mossy_stone_bricks", - "fishmossystonebb": "infested_mossy_stone_bricks", - "fishmossstonebb": "infested_mossy_stone_bricks", - "fishmstonebb": "infested_mossy_stone_bricks", - "infestedmossystonebb": "infested_mossy_stone_bricks", - "infestedmossstonebb": "infested_mossy_stone_bricks", - "infestedmstonebb": "infested_mossy_stone_bricks", - "monstereggmossystonebb": "infested_mossy_stone_bricks", - "monstereggmossstonebb": "infested_mossy_stone_bricks", - "monstereggmstonebb": "infested_mossy_stone_bricks", - "meggmossystonebb": "infested_mossy_stone_bricks", - "meggmossstonebb": "infested_mossy_stone_bricks", - "meggmstonebb": "infested_mossy_stone_bricks", - "trapmossystonebb": "infested_mossy_stone_bricks", - "trapmossstonebb": "infested_mossy_stone_bricks", - "trapmstonebb": "infested_mossy_stone_bricks", - "sfmossystonebb": "infested_mossy_stone_bricks", - "sfmossstonebb": "infested_mossy_stone_bricks", - "sfmstonebb": "infested_mossy_stone_bricks", - "memossystonebb": "infested_mossy_stone_bricks", - "memossstonebb": "infested_mossy_stone_bricks", - "memstonebb": "infested_mossy_stone_bricks", - "silverfishmossysbrick": "infested_mossy_stone_bricks", - "silverfishmosssbrick": "infested_mossy_stone_bricks", - "silverfishmsbrick": "infested_mossy_stone_bricks", - "sfishmossysbrick": "infested_mossy_stone_bricks", - "sfishmosssbrick": "infested_mossy_stone_bricks", - "sfishmsbrick": "infested_mossy_stone_bricks", - "fishmossysbrick": "infested_mossy_stone_bricks", - "fishmosssbrick": "infested_mossy_stone_bricks", - "fishmsbrick": "infested_mossy_stone_bricks", - "infestedmossysbrick": "infested_mossy_stone_bricks", - "infestedmosssbrick": "infested_mossy_stone_bricks", - "infestedmsbrick": "infested_mossy_stone_bricks", - "monstereggmossysbrick": "infested_mossy_stone_bricks", - "monstereggmosssbrick": "infested_mossy_stone_bricks", - "monstereggmsbrick": "infested_mossy_stone_bricks", - "meggmossysbrick": "infested_mossy_stone_bricks", - "meggmosssbrick": "infested_mossy_stone_bricks", - "meggmsbrick": "infested_mossy_stone_bricks", - "trapmossysbrick": "infested_mossy_stone_bricks", - "trapmosssbrick": "infested_mossy_stone_bricks", - "trapmsbrick": "infested_mossy_stone_bricks", - "sfmossysbrick": "infested_mossy_stone_bricks", - "sfmosssbrick": "infested_mossy_stone_bricks", - "sfmsbrick": "infested_mossy_stone_bricks", - "memossysbrick": "infested_mossy_stone_bricks", - "memosssbrick": "infested_mossy_stone_bricks", - "memsbrick": "infested_mossy_stone_bricks", - "silverfishmossysbricks": "infested_mossy_stone_bricks", - "silverfishmosssbricks": "infested_mossy_stone_bricks", - "silverfishmsbricks": "infested_mossy_stone_bricks", - "sfishmossysbricks": "infested_mossy_stone_bricks", - "sfishmosssbricks": "infested_mossy_stone_bricks", - "sfishmsbricks": "infested_mossy_stone_bricks", - "fishmossysbricks": "infested_mossy_stone_bricks", - "fishmosssbricks": "infested_mossy_stone_bricks", - "fishmsbricks": "infested_mossy_stone_bricks", - "infestedmossysbricks": "infested_mossy_stone_bricks", - "infestedmosssbricks": "infested_mossy_stone_bricks", - "infestedmsbricks": "infested_mossy_stone_bricks", - "monstereggmossysbricks": "infested_mossy_stone_bricks", - "monstereggmosssbricks": "infested_mossy_stone_bricks", - "monstereggmsbricks": "infested_mossy_stone_bricks", - "meggmossysbricks": "infested_mossy_stone_bricks", - "meggmosssbricks": "infested_mossy_stone_bricks", - "meggmsbricks": "infested_mossy_stone_bricks", - "trapmossysbricks": "infested_mossy_stone_bricks", - "trapmosssbricks": "infested_mossy_stone_bricks", - "trapmsbricks": "infested_mossy_stone_bricks", - "sfmossysbricks": "infested_mossy_stone_bricks", - "sfmosssbricks": "infested_mossy_stone_bricks", - "sfmsbricks": "infested_mossy_stone_bricks", - "memossysbricks": "infested_mossy_stone_bricks", - "memosssbricks": "infested_mossy_stone_bricks", - "memsbricks": "infested_mossy_stone_bricks", - "silverfishmossysbrickblock": "infested_mossy_stone_bricks", - "silverfishmosssbrickblock": "infested_mossy_stone_bricks", - "silverfishmsbrickblock": "infested_mossy_stone_bricks", - "sfishmossysbrickblock": "infested_mossy_stone_bricks", - "sfishmosssbrickblock": "infested_mossy_stone_bricks", - "sfishmsbrickblock": "infested_mossy_stone_bricks", - "fishmossysbrickblock": "infested_mossy_stone_bricks", - "fishmosssbrickblock": "infested_mossy_stone_bricks", - "fishmsbrickblock": "infested_mossy_stone_bricks", - "infestedmossysbrickblock": "infested_mossy_stone_bricks", - "infestedmosssbrickblock": "infested_mossy_stone_bricks", - "infestedmsbrickblock": "infested_mossy_stone_bricks", - "monstereggmossysbrickblock": "infested_mossy_stone_bricks", - "monstereggmosssbrickblock": "infested_mossy_stone_bricks", - "monstereggmsbrickblock": "infested_mossy_stone_bricks", - "meggmossysbrickblock": "infested_mossy_stone_bricks", - "meggmosssbrickblock": "infested_mossy_stone_bricks", - "meggmsbrickblock": "infested_mossy_stone_bricks", - "trapmossysbrickblock": "infested_mossy_stone_bricks", - "trapmosssbrickblock": "infested_mossy_stone_bricks", - "trapmsbrickblock": "infested_mossy_stone_bricks", - "sfmossysbrickblock": "infested_mossy_stone_bricks", - "sfmosssbrickblock": "infested_mossy_stone_bricks", - "sfmsbrickblock": "infested_mossy_stone_bricks", - "memossysbrickblock": "infested_mossy_stone_bricks", - "memosssbrickblock": "infested_mossy_stone_bricks", - "memsbrickblock": "infested_mossy_stone_bricks", - "silverfishmossystonebricks": "infested_mossy_stone_bricks", - "silverfishmossstonebricks": "infested_mossy_stone_bricks", - "silverfishmstonebricks": "infested_mossy_stone_bricks", - "sfishmossystonebricks": "infested_mossy_stone_bricks", - "sfishmossstonebricks": "infested_mossy_stone_bricks", - "sfishmstonebricks": "infested_mossy_stone_bricks", - "fishmossystonebricks": "infested_mossy_stone_bricks", - "fishmossstonebricks": "infested_mossy_stone_bricks", - "fishmstonebricks": "infested_mossy_stone_bricks", - "infestedmossstonebricks": "infested_mossy_stone_bricks", - "infestedmstonebricks": "infested_mossy_stone_bricks", - "monstereggmossystonebricks": "infested_mossy_stone_bricks", - "monstereggmossstonebricks": "infested_mossy_stone_bricks", - "monstereggmstonebricks": "infested_mossy_stone_bricks", - "meggmossystonebricks": "infested_mossy_stone_bricks", - "meggmossstonebricks": "infested_mossy_stone_bricks", - "meggmstonebricks": "infested_mossy_stone_bricks", - "trapmossystonebricks": "infested_mossy_stone_bricks", - "trapmossstonebricks": "infested_mossy_stone_bricks", - "trapmstonebricks": "infested_mossy_stone_bricks", - "sfmossystonebricks": "infested_mossy_stone_bricks", - "sfmossstonebricks": "infested_mossy_stone_bricks", - "sfmstonebricks": "infested_mossy_stone_bricks", - "memossystonebricks": "infested_mossy_stone_bricks", - "memossstonebricks": "infested_mossy_stone_bricks", - "memstonebricks": "infested_mossy_stone_bricks", - "silverfishmossysbb": "infested_mossy_stone_bricks", - "silverfishmosssbb": "infested_mossy_stone_bricks", - "silverfishmsbb": "infested_mossy_stone_bricks", - "sfishmossysbb": "infested_mossy_stone_bricks", - "sfishmosssbb": "infested_mossy_stone_bricks", - "sfishmsbb": "infested_mossy_stone_bricks", - "fishmossysbb": "infested_mossy_stone_bricks", - "fishmosssbb": "infested_mossy_stone_bricks", - "fishmsbb": "infested_mossy_stone_bricks", - "infestedmossysbb": "infested_mossy_stone_bricks", - "infestedmosssbb": "infested_mossy_stone_bricks", - "infestedmsbb": "infested_mossy_stone_bricks", - "monstereggmossysbb": "infested_mossy_stone_bricks", - "monstereggmosssbb": "infested_mossy_stone_bricks", - "monstereggmsbb": "infested_mossy_stone_bricks", - "meggmossysbb": "infested_mossy_stone_bricks", - "meggmosssbb": "infested_mossy_stone_bricks", - "meggmsbb": "infested_mossy_stone_bricks", - "trapmossysbb": "infested_mossy_stone_bricks", - "trapmosssbb": "infested_mossy_stone_bricks", - "trapmsbb": "infested_mossy_stone_bricks", - "sfmossysbb": "infested_mossy_stone_bricks", - "sfmosssbb": "infested_mossy_stone_bricks", - "sfmsbb": "infested_mossy_stone_bricks", - "memossysbb": "infested_mossy_stone_bricks", - "memosssbb": "infested_mossy_stone_bricks", - "memsbb": "infested_mossy_stone_bricks", - "infested_stone": { - "material": "INFESTED_STONE" - }, - "infestedstone": "infested_stone", - "silverfishstone": "infested_stone", - "sfishstone": "infested_stone", - "fishstone": "infested_stone", - "monstereggstone": "infested_stone", - "meggstone": "infested_stone", - "trapstone": "infested_stone", - "sfstone": "infested_stone", - "mestone": "infested_stone", - "silverfishsmoothstone": "infested_stone", - "sfishsmoothstone": "infested_stone", - "fishsmoothstone": "infested_stone", - "infestedsmoothstone": "infested_stone", - "monstereggsmoothstone": "infested_stone", - "meggsmoothstone": "infested_stone", - "trapsmoothstone": "infested_stone", - "sfsmoothstone": "infested_stone", - "mesmoothstone": "infested_stone", - "silverfishsstone": "infested_stone", - "sfishsstone": "infested_stone", - "fishsstone": "infested_stone", - "infestedsstone": "infested_stone", - "monstereggsstone": "infested_stone", - "meggsstone": "infested_stone", - "trapsstone": "infested_stone", - "sfsstone": "infested_stone", - "messtone": "infested_stone", - "infested_stone_bricks": { - "material": "INFESTED_STONE_BRICKS" - }, - "infestedstonebricks": "infested_stone_bricks", - "silverfishstonebrick": "infested_stone_bricks", - "sfishstonebrick": "infested_stone_bricks", - "fishstonebrick": "infested_stone_bricks", - "infestedstonebrick": "infested_stone_bricks", - "monstereggstonebrick": "infested_stone_bricks", - "meggstonebrick": "infested_stone_bricks", - "trapstonebrick": "infested_stone_bricks", - "sfstonebrick": "infested_stone_bricks", - "mestonebrick": "infested_stone_bricks", - "silverfishstonebrickblock": "infested_stone_bricks", - "sfishstonebrickblock": "infested_stone_bricks", - "fishstonebrickblock": "infested_stone_bricks", - "infestedstonebrickblock": "infested_stone_bricks", - "monstereggstonebrickblock": "infested_stone_bricks", - "meggstonebrickblock": "infested_stone_bricks", - "trapstonebrickblock": "infested_stone_bricks", - "sfstonebrickblock": "infested_stone_bricks", - "mestonebrickblock": "infested_stone_bricks", - "silverfishstonebb": "infested_stone_bricks", - "sfishstonebb": "infested_stone_bricks", - "fishstonebb": "infested_stone_bricks", - "infestedstonebb": "infested_stone_bricks", - "monstereggstonebb": "infested_stone_bricks", - "meggstonebb": "infested_stone_bricks", - "trapstonebb": "infested_stone_bricks", - "sfstonebb": "infested_stone_bricks", - "mestonebb": "infested_stone_bricks", - "silverfishsbrick": "infested_stone_bricks", - "sfishsbrick": "infested_stone_bricks", - "fishsbrick": "infested_stone_bricks", - "infestedsbrick": "infested_stone_bricks", - "monstereggsbrick": "infested_stone_bricks", - "meggsbrick": "infested_stone_bricks", - "trapsbrick": "infested_stone_bricks", - "sfsbrick": "infested_stone_bricks", - "mesbrick": "infested_stone_bricks", - "silverfishsbricks": "infested_stone_bricks", - "sfishsbricks": "infested_stone_bricks", - "fishsbricks": "infested_stone_bricks", - "infestedsbricks": "infested_stone_bricks", - "monstereggsbricks": "infested_stone_bricks", - "meggsbricks": "infested_stone_bricks", - "trapsbricks": "infested_stone_bricks", - "sfsbricks": "infested_stone_bricks", - "mesbricks": "infested_stone_bricks", - "silverfishsbrickblock": "infested_stone_bricks", - "sfishsbrickblock": "infested_stone_bricks", - "fishsbrickblock": "infested_stone_bricks", - "infestedsbrickblock": "infested_stone_bricks", - "monstereggsbrickblock": "infested_stone_bricks", - "meggsbrickblock": "infested_stone_bricks", - "trapsbrickblock": "infested_stone_bricks", - "sfsbrickblock": "infested_stone_bricks", - "mesbrickblock": "infested_stone_bricks", - "silverfishstonebricks": "infested_stone_bricks", - "sfishstonebricks": "infested_stone_bricks", - "fishstonebricks": "infested_stone_bricks", - "monstereggstonebricks": "infested_stone_bricks", - "meggstonebricks": "infested_stone_bricks", - "trapstonebricks": "infested_stone_bricks", - "sfstonebricks": "infested_stone_bricks", - "mestonebricks": "infested_stone_bricks", - "silverfishsbb": "infested_stone_bricks", - "sfishsbb": "infested_stone_bricks", - "fishsbb": "infested_stone_bricks", - "infestedsbb": "infested_stone_bricks", - "monstereggsbb": "infested_stone_bricks", - "meggsbb": "infested_stone_bricks", - "trapsbb": "infested_stone_bricks", - "sfsbb": "infested_stone_bricks", - "mesbb": "infested_stone_bricks", - "ink_sac": { - "material": "INK_SAC" - }, - "inksac": "ink_sac", - "iron_axe": { - "material": "IRON_AXE" - }, - "ironaxe": "iron_axe", - "iaxe": "iron_axe", - "steelaxe": "iron_axe", - "saxe": "stone_axe", - "staxe": "iron_axe", - "iron_bars": { - "material": "IRON_BARS" - }, - "ironbars": "iron_bars", - "ironbarsb": "iron_bars", - "ironbarsblock": "iron_bars", - "ironfence": "iron_bars", - "metalbars": "iron_bars", - "metalbarsb": "iron_bars", - "metalbarsblock": "iron_bars", - "metalfence": "iron_bars", - "jailbars": "iron_bars", - "jailbarsb": "iron_bars", - "jailbarsblock": "iron_bars", - "jailfence": "iron_bars", - "mbars": "iron_bars", - "mbarsb": "iron_bars", - "mbarsblock": "iron_bars", - "mfence": "iron_bars", - "jbars": "iron_bars", - "jbarsb": "iron_bars", - "jbarsblock": "iron_bars", - "ibars": "iron_bars", - "ibarsb": "iron_bars", - "ibarsblock": "iron_bars", - "ifence": "iron_bars", - "iron_block": { - "material": "IRON_BLOCK" - }, - "ironblock": "iron_block", - "blockiron": "iron_block", - "iblock": "iron_block", - "blocki": "iron_block", - "steelblock": "iron_block", - "blocksteel": "iron_block", - "sblock": "iron_block", - "blocks": "iron_block", - "stblock": "iron_block", - "blockst": "iron_block", - "iron_boots": { - "material": "IRON_BOOTS" - }, - "ironboots": "iron_boots", - "ironshoes": "iron_boots", - "iboots": "iron_boots", - "ishoes": "iron_boots", - "steelboots": "iron_boots", - "steelshoes": "iron_boots", - "sboots": "iron_boots", - "sshoes": "iron_boots", - "stboots": "iron_boots", - "stshoes": "iron_boots", - "iron_chestplate": { - "material": "IRON_CHESTPLATE" - }, - "ironchestplate": "iron_chestplate", - "ironplatebody": "iron_chestplate", - "ironplate": "iron_chestplate", - "ironshirt": "iron_chestplate", - "irontunic": "iron_chestplate", - "ichestplate": "iron_chestplate", - "iplatebody": "iron_chestplate", - "iplate": "iron_chestplate", - "ishirt": "iron_chestplate", - "itunic": "iron_chestplate", - "steelchestplate": "iron_chestplate", - "steelplatebody": "iron_chestplate", - "steelplate": "iron_chestplate", - "steelshirt": "iron_chestplate", - "steeltunic": "iron_chestplate", - "schestplate": "iron_chestplate", - "splatebody": "iron_chestplate", - "sshirt": "iron_chestplate", - "stunic": "iron_chestplate", - "stchestplate": "iron_chestplate", - "stplatebody": "iron_chestplate", - "stplate": "iron_chestplate", - "stshirt": "iron_chestplate", - "sttunic": "iron_chestplate", - "iron_door": { - "material": "IRON_DOOR" - }, - "irondoor": "iron_trapdoor", - "dooriron": "iron_trapdoor", - "idoor": "iron_trapdoor", - "doori": "iron_trapdoor", - "steeldoor": "iron_trapdoor", - "doorsteel": "iron_trapdoor", - "sdoor": "iron_trapdoor", - "doors": "iron_trapdoor", - "stdoor": "spruce_trapdoor", - "doorst": "iron_trapdoor", - "iron_helmet": { - "material": "IRON_HELMET" - }, - "ironhelmet": "iron_helmet", - "ironhelm": "iron_helmet", - "ironhat": "iron_helmet", - "ironcoif": "iron_helmet", - "ihelmet": "iron_helmet", - "ihelm": "iron_helmet", - "ihat": "iron_helmet", - "icoif": "iron_helmet", - "steelhelmet": "iron_helmet", - "steelhelm": "iron_helmet", - "steelhat": "iron_helmet", - "steelcoif": "iron_helmet", - "shelmet": "iron_helmet", - "shelm": "iron_helmet", - "shat": "iron_helmet", - "scoif": "iron_helmet", - "sthelmet": "iron_helmet", - "sthelm": "iron_helmet", - "sthat": "iron_helmet", - "stcoif": "iron_helmet", - "iron_hoe": { - "material": "IRON_HOE" - }, - "ironhoe": "iron_hoe", - "ihoe": "iron_hoe", - "steelhoe": "iron_hoe", - "shoe": "stone_hoe", - "sthoe": "iron_hoe", - "iron_horse_armor": { - "material": "IRON_HORSE_ARMOR" - }, - "ironhorsearmor": "iron_horse_armor", - "ironharmor": "iron_horse_armor", - "ironarmor": "iron_horse_armor", - "ihorsearmor": "iron_horse_armor", - "iharmor": "iron_horse_armor", - "iarmor": "iron_horse_armor", - "steelhorsearmor": "iron_horse_armor", - "steelharmor": "iron_horse_armor", - "steelarmor": "iron_horse_armor", - "shorsearmor": "iron_horse_armor", - "sharmor": "iron_horse_armor", - "sarmor": "iron_horse_armor", - "sthorsearmor": "iron_horse_armor", - "stharmor": "iron_horse_armor", - "starmor": "iron_horse_armor", - "iron_ingot": { - "material": "IRON_INGOT" - }, - "ironingot": "iron_ingot", - "ironbar": "iron_ingot", - "ironi": "iron_ingot", - "ingotiron": "iron_ingot", - "bariron": "iron_ingot", - "iiron": "iron_ingot", - "iingot": "iron_ingot", - "ibar": "iron_ingot", - "ingoti": "iron_ingot", - "bari": "iron_ingot", - "steelingot": "iron_ingot", - "steelbar": "iron_ingot", - "steeli": "iron_ingot", - "ingotsteel": "iron_ingot", - "barsteel": "iron_ingot", - "isteel": "iron_ingot", - "singot": "iron_ingot", - "sbar": "iron_ingot", - "stingot": "iron_ingot", - "stbar": "iron_ingot", - "sti": "iron_ingot", - "ingotst": "iron_ingot", - "barst": "iron_ingot", - "ist": "iron_ingot", - "iron_leggings": { - "material": "IRON_LEGGINGS" - }, - "ironleggings": "iron_leggings", - "ironlegs": "iron_leggings", - "ironpants": "iron_leggings", - "ileggings": "iron_leggings", - "ilegs": "iron_leggings", - "ipants": "iron_leggings", - "steelleggings": "iron_leggings", - "steellegs": "iron_leggings", - "steelpants": "iron_leggings", - "sleggings": "iron_leggings", - "slegs": "iron_leggings", - "spants": "iron_leggings", - "stleggings": "iron_leggings", - "stlegs": "iron_leggings", - "stpants": "iron_leggings", - "iron_nugget": { - "material": "IRON_NUGGET" - }, - "ironnugget": "iron_nugget", - "iron_ore": { - "material": "IRON_ORE" - }, - "ironore": "iron_ore", - "irono": "iron_ore", - "oreiron": "iron_ore", - "oiron": "iron_ore", - "iore": "iron_ore", - "orei": "iron_ore", - "steelore": "iron_ore", - "steelo": "iron_ore", - "oresteel": "iron_ore", - "osteel": "iron_ore", - "sore": "iron_ore", - "ores": "iron_ore", - "store": "iron_ore", - "sto": "iron_ore", - "orest": "iron_ore", - "ost": "iron_ore", - "iron_pickaxe": { - "material": "IRON_PICKAXE" - }, - "ironpickaxe": "iron_pickaxe", - "ironpick": "iron_pickaxe", - "ipickaxe": "iron_pickaxe", - "ipick": "iron_pickaxe", - "steelpickaxe": "iron_pickaxe", - "steelpick": "iron_pickaxe", - "spickaxe": "stone_pickaxe", - "spick": "stone_pickaxe", - "stpickaxe": "iron_pickaxe", - "stpick": "iron_pickaxe", - "iron_shovel": { - "material": "IRON_SHOVEL" - }, - "ironshovel": "iron_shovel", - "ironspade": "iron_shovel", - "ishovel": "iron_shovel", - "ispade": "iron_shovel", - "steelshovel": "iron_shovel", - "steelspade": "iron_shovel", - "sshovel": "stone_shovel", - "sspade": "stone_shovel", - "stshovel": "iron_shovel", - "stspade": "iron_shovel", - "iron_sword": { - "material": "IRON_SWORD" - }, - "ironsword": "iron_sword", - "isword": "iron_sword", - "steelsword": "iron_sword", - "ssword": "stone_sword", - "stsword": "iron_sword", - "iron_trapdoor": { - "material": "IRON_TRAPDOOR" - }, - "irontrapdoor": "iron_trapdoor", - "item_frame": { - "material": "ITEM_FRAME" - }, - "itemframe": "item_frame", - "jack_o_lantern": { - "material": "JACK_O_LANTERN" - }, - "jackolantern": "jack_o_lantern", - "pumpkinlantern": "jack_o_lantern", - "glowingpumpkin": "jack_o_lantern", - "lightpumpkin": "jack_o_lantern", - "jpumpkin": "jack_o_lantern", - "plantren": "jack_o_lantern", - "glowpumpkin": "jack_o_lantern", - "gpumpkin": "jack_o_lantern", - "lpumpkin": "jack_o_lantern", - "jukebox": { - "material": "JUKEBOX" - }, - "jbox": "jukebox", - "jungle_boat": { - "material": "JUNGLE_BOAT" - }, - "jungleboat": "jungle_boat", - "jboat": "jungle_boat", - "forestboat": "jungle_boat", - "fboat": "jungle_boat", - "jungle_button": { - "material": "JUNGLE_BUTTON" - }, - "junglebutton": "jungle_button", - "jungle_door": { - "material": "JUNGLE_DOOR" - }, - "jungledoor": "jungle_door", - "jungle_fence": { - "material": "JUNGLE_FENCE" - }, - "junglefence": "jungle_fence", - "jfence": "jungle_fence", - "forestfence": "jungle_fence", - "ffence": "jungle_fence", - "jungle_fence_gate": { - "material": "JUNGLE_FENCE_GATE" - }, - "junglefencegate": "jungle_fence_gate", - "junglegate": "jungle_fence_gate", - "jfencegate": "jungle_fence_gate", - "jgate": "jungle_fence_gate", - "forestfencegate": "jungle_fence_gate", - "forestgate": "jungle_fence_gate", - "ffencegate": "jungle_fence_gate", - "fgate": "jungle_fence_gate", - "jungle_leaves": { - "material": "JUNGLE_LEAVES" - }, - "jungleleaves": "jungle_leaves", - "jungletreeleaves": "jungle_leaves", - "junglelogleaves": "jungle_leaves", - "jungletrunkleaves": "jungle_leaves", - "junglewoodleaves": "jungle_leaves", - "jungletreeleaf": "jungle_leaves", - "junglelogleaf": "jungle_leaves", - "jungletrunkleaf": "jungle_leaves", - "junglewoodleaf": "jungle_leaves", - "jungleleaf": "jungle_leaves", - "jungletreeleave": "jungle_leaves", - "junglelogleave": "jungle_leaves", - "jungletrunkleave": "jungle_leaves", - "junglewoodleave": "jungle_leaves", - "jungleleave": "jungle_leaves", - "jtreeleaves": "jungle_leaves", - "jlogleaves": "jungle_leaves", - "jtrunkleaves": "jungle_leaves", - "jwoodleaves": "jungle_leaves", - "jleaves": "jungle_leaves", - "jtreeleaf": "jungle_leaves", - "jlogleaf": "jungle_leaves", - "jtrunkleaf": "jungle_leaves", - "jwoodleaf": "jungle_leaves", - "jleaf": "jungle_leaves", - "jtreeleave": "jungle_leaves", - "jlogleave": "jungle_leaves", - "jtrunkleave": "jungle_leaves", - "jwoodleave": "jungle_leaves", - "jleave": "jungle_leaves", - "foresttreeleaves": "jungle_leaves", - "forestlogleaves": "jungle_leaves", - "foresttrunkleaves": "jungle_leaves", - "forestwoodleaves": "jungle_leaves", - "forestleaves": "jungle_leaves", - "foresttreeleaf": "jungle_leaves", - "forestlogleaf": "jungle_leaves", - "foresttrunkleaf": "jungle_leaves", - "forestwoodleaf": "jungle_leaves", - "forestleaf": "jungle_leaves", - "foresttreeleave": "jungle_leaves", - "forestlogleave": "jungle_leaves", - "foresttrunkleave": "jungle_leaves", - "forestwoodleave": "jungle_leaves", - "forestleave": "jungle_leaves", - "ftreeleaves": "jungle_leaves", - "flogleaves": "jungle_leaves", - "ftrunkleaves": "jungle_leaves", - "fwoodleaves": "jungle_leaves", - "fleaves": "jungle_leaves", - "ftreeleaf": "jungle_leaves", - "flogleaf": "jungle_leaves", - "ftrunkleaf": "jungle_leaves", - "fwoodleaf": "jungle_leaves", - "fleaf": "jungle_leaves", - "ftreeleave": "jungle_leaves", - "flogleave": "jungle_leaves", - "ftrunkleave": "jungle_leaves", - "fwoodleave": "jungle_leaves", - "fleave": "jungle_leaves", - "jungle_log": { - "material": "JUNGLE_LOG" - }, - "junglelog": "jungle_log", - "jungle": "jungle_log", - "logjungle": "jungle_log", - "jungletrunk": "jungle_log", - "jungletree": "jungle_log", - "j": "jungle_log", - "logj": "jungle_log", - "jtrunk": "jungle_log", - "jlog": "jungle_log", - "jtree": "jungle_log", - "forest": "jungle_log", - "logforest": "jungle_log", - "foresttrunk": "jungle_log", - "forestlog": "jungle_log", - "foresttree": "jungle_log", - "f": "jungle_log", - "logf": "jungle_log", - "ftrunk": "jungle_log", - "flog": "jungle_log", - "ftree": "jungle_log", - "jungle_planks": { - "material": "JUNGLE_PLANKS" - }, - "jungleplanks": "jungle_planks", - "junglewoodenplank": "jungle_planks", - "junglewoodplank": "jungle_planks", - "junglewplank": "jungle_planks", - "jungleplankwooden": "jungle_planks", - "jungleplankwood": "jungle_planks", - "jungleplankw": "jungle_planks", - "jungleplank": "jungle_planks", - "jwoodenplank": "jungle_planks", - "jwoodplank": "jungle_planks", - "jwplank": "jungle_planks", - "jplankwooden": "jungle_planks", - "jplankwood": "jungle_planks", - "jplankw": "jungle_planks", - "jplank": "jungle_planks", - "forestwoodenplank": "jungle_planks", - "forestwoodplank": "jungle_planks", - "forestwplank": "jungle_planks", - "forestplankwooden": "jungle_planks", - "forestplankwood": "jungle_planks", - "forestplankw": "jungle_planks", - "forestplank": "jungle_planks", - "fwoodenplank": "jungle_planks", - "fwoodplank": "jungle_planks", - "fwplank": "jungle_planks", - "fplankwooden": "jungle_planks", - "fplankwood": "jungle_planks", - "fplankw": "jungle_planks", - "fplank": "jungle_planks", - "jungle_pressure_plate": { - "material": "JUNGLE_PRESSURE_PLATE" - }, - "junglepressureplate": "jungle_pressure_plate", - "junglepressplate": "jungle_pressure_plate", - "junglepplate": "jungle_pressure_plate", - "jungleplate": "jungle_pressure_plate", - "jpressureplate": "jungle_pressure_plate", - "jpressplate": "jungle_pressure_plate", - "jpplate": "jungle_pressure_plate", - "jplate": "jungle_pressure_plate", - "forestpressureplate": "jungle_pressure_plate", - "forestpressplate": "jungle_pressure_plate", - "forestpplate": "jungle_pressure_plate", - "forestplate": "jungle_pressure_plate", - "fpressureplate": "jungle_pressure_plate", - "fpressplate": "jungle_pressure_plate", - "fpplate": "jungle_pressure_plate", - "fplate": "jungle_pressure_plate", - "jungle_sapling": { - "material": "JUNGLE_SAPLING" - }, - "junglesapling": "jungle_sapling", - "jungletreesapling": "jungle_sapling", - "junglelogsapling": "jungle_sapling", - "jungletrunksapling": "jungle_sapling", - "junglewoodsapling": "jungle_sapling", - "jsapling": "jungle_sapling", - "jtreesapling": "jungle_sapling", - "jlogsapling": "jungle_sapling", - "jtrunksapling": "jungle_sapling", - "jwoodsapling": "jungle_sapling", - "forestsapling": "jungle_sapling", - "foresttreesapling": "jungle_sapling", - "forestlogsapling": "jungle_sapling", - "foresttrunksapling": "jungle_sapling", - "forestwoodsapling": "jungle_sapling", - "fsapling": "jungle_sapling", - "ftreesapling": "jungle_sapling", - "flogsapling": "jungle_sapling", - "ftrunksapling": "jungle_sapling", - "fwoodsapling": "jungle_sapling", - "jungle_slab": { - "material": "JUNGLE_SLAB" - }, - "jungleslab": "jungle_slab", - "junglewoodenstep": "jungle_slab", - "junglewoodstep": "jungle_slab", - "junglewstep": "jungle_slab", - "junglestep": "jungle_slab", - "junglewoodenslab": "jungle_slab", - "junglewoodslab": "jungle_slab", - "junglewslab": "jungle_slab", - "junglewoodenhalfblock": "jungle_slab", - "junglewoodhalfblock": "jungle_slab", - "junglewhalfblock": "jungle_slab", - "junglehalfblock": "jungle_slab", - "jwoodenstep": "jungle_slab", - "jwoodstep": "jungle_slab", - "jwstep": "jungle_slab", - "jstep": "jungle_slab", - "jwoodenslab": "jungle_slab", - "jwoodslab": "jungle_slab", - "jwslab": "jungle_slab", - "jwoodenhalfblock": "jungle_slab", - "jwoodhalfblock": "jungle_slab", - "jwhalfblock": "jungle_slab", - "jhalfblock": "jungle_slab", - "forestwoodenstep": "jungle_slab", - "forestwoodstep": "jungle_slab", - "forestwstep": "jungle_slab", - "foreststep": "jungle_slab", - "forestwoodenslab": "jungle_slab", - "forestwoodslab": "jungle_slab", - "forestwslab": "jungle_slab", - "forestwoodenhalfblock": "jungle_slab", - "forestwoodhalfblock": "jungle_slab", - "forestwhalfblock": "jungle_slab", - "foresthalfblock": "jungle_slab", - "fwoodenstep": "jungle_slab", - "fwoodstep": "jungle_slab", - "fwstep": "jungle_slab", - "fstep": "jungle_slab", - "fwoodenslab": "jungle_slab", - "fwoodslab": "jungle_slab", - "fwslab": "jungle_slab", - "fwoodenhalfblock": "jungle_slab", - "fwoodhalfblock": "jungle_slab", - "fwhalfblock": "jungle_slab", - "fhalfblock": "jungle_slab", - "jungle_stairs": { - "material": "JUNGLE_STAIRS" - }, - "junglestairs": "jungle_stairs", - "junglewoodenstairs": "jungle_stairs", - "junglewoodstairs": "jungle_stairs", - "junglewstairs": "jungle_stairs", - "junglewoodenstair": "jungle_stairs", - "junglewoodstair": "jungle_stairs", - "junglewstair": "jungle_stairs", - "junglestair": "jungle_stairs", - "jwoodenstairs": "jungle_stairs", - "jwoodstairs": "jungle_stairs", - "jwstairs": "jungle_stairs", - "jwoodenstair": "jungle_stairs", - "jwoodstair": "jungle_stairs", - "jwstair": "jungle_stairs", - "jstair": "jungle_stairs", - "forestwoodenstairs": "jungle_stairs", - "forestwoodstairs": "jungle_stairs", - "forestwstairs": "jungle_stairs", - "forestwoodenstair": "jungle_stairs", - "forestwoodstair": "jungle_stairs", - "forestwstair": "jungle_stairs", - "foreststair": "jungle_stairs", - "fwoodenstairs": "jungle_stairs", - "fwoodstairs": "jungle_stairs", - "fwstairs": "jungle_stairs", - "fwoodenstair": "jungle_stairs", - "fwoodstair": "jungle_stairs", - "fwstair": "jungle_stairs", - "fstair": "jungle_stairs", - "jungle_trapdoor": { - "material": "JUNGLE_TRAPDOOR" - }, - "jungletrapdoor": "jungle_trapdoor", - "jungledoortrap": "jungle_trapdoor", - "junglehatch": "jungle_trapdoor", - "jungletdoor": "jungle_trapdoor", - "jungledoort": "jungle_trapdoor", - "jungletrapd": "jungle_trapdoor", - "jungledtrap": "jungle_trapdoor", - "jtrapdoor": "jungle_trapdoor", - "jdoortrap": "jungle_trapdoor", - "jhatch": "jungle_trapdoor", - "jtdoor": "jungle_trapdoor", - "jdoort": "jungle_trapdoor", - "jtrapd": "jungle_trapdoor", - "jdtrap": "jungle_trapdoor", - "foresttrapdoor": "jungle_trapdoor", - "forestdoortrap": "jungle_trapdoor", - "foresthatch": "jungle_trapdoor", - "foresttdoor": "jungle_trapdoor", - "forestdoort": "jungle_trapdoor", - "foresttrapd": "jungle_trapdoor", - "forestdtrap": "jungle_trapdoor", - "ftrapdoor": "jungle_trapdoor", - "fdoortrap": "jungle_trapdoor", - "fhatch": "jungle_trapdoor", - "ftdoor": "jungle_trapdoor", - "fdoort": "jungle_trapdoor", - "ftrapd": "jungle_trapdoor", - "fdtrap": "jungle_trapdoor", - "jungle_wood": { - "material": "JUNGLE_WOOD" - }, - "junglewood": "jungle_wood", - "junglelogall": "jungle_wood", - "jungletrunkall": "jungle_wood", - "jungletreeall": "jungle_wood", - "jwood": "jungle_wood", - "jlogall": "jungle_wood", - "jtrunkall": "jungle_wood", - "jtreeall": "jungle_wood", - "forestwood": "jungle_wood", - "forestlogall": "jungle_wood", - "foresttrunkall": "jungle_wood", - "foresttreeall": "jungle_wood", - "fwood": "jungle_wood", - "flogall": "jungle_wood", - "ftrunkall": "jungle_wood", - "ftreeall": "jungle_wood", - "kelp": { - "material": "KELP" - }, - "kelp_plant": { - "material": "KELP_PLANT", - "unspawnable": true - }, - "kelpplant": "kelp_plant", - "knowledge_book": { - "material": "KNOWLEDGE_BOOK" - }, - "knowledgebook": "knowledge_book", - "ladder": { - "material": "LADDER" - }, - "lapis_block": { - "material": "LAPIS_BLOCK" - }, - "lapisblock": "lapis_block", - "lapislazuliblock": "lapis_block", - "blocklapislazuli": "lapis_block", - "blocklapis": "lapis_block", - "lblock": "lapis_block", - "blockl": "lapis_block", - "lapis_lazuli": { - "material": "LAPIS_LAZULI" - }, - "lapislazuli": "lapis_lazuli", - "lapis_ore": { - "material": "LAPIS_ORE" - }, - "lapisore": "lapis_ore", - "lapislazuliore": "lapis_ore", - "lapislazulio": "lapis_ore", - "orelapislazuli": "lapis_ore", - "olapislazuli": "lapis_ore", - "lapiso": "lapis_ore", - "orelapis": "lapis_ore", - "olapis": "lapis_ore", - "lore": "lapis_ore", - "lo": "lapis_ore", - "orel": "lapis_ore", - "ol": "lapis_ore", - "large_fern": { - "material": "LARGE_FERN" - }, - "largefern": "large_fern", - "lava": { - "material": "LAVA", - "unspawnable": true - }, - "stationarylava": "lava", - "stilllava": "lava", - "slava": "lava", - "lava_bucket": { - "material": "LAVA_BUCKET" - }, - "lavabucket": "lava_bucket", - "lead": { - "material": "LEAD" - }, - "leather": { - "material": "LEATHER" - }, - "leather_boots": { - "material": "LEATHER_BOOTS" - }, - "leatherboots": "leather_boots", - "leathershoes": "leather_boots", - "lboots": "leather_boots", - "lshoes": "leather_boots", - "leather_chestplate": { - "material": "LEATHER_CHESTPLATE" - }, - "leatherchestplate": "leather_chestplate", - "leatherplatebody": "leather_chestplate", - "leatherplate": "leather_chestplate", - "leathershirt": "leather_chestplate", - "leathertunic": "leather_chestplate", - "lchestplate": "leather_chestplate", - "lplatebody": "leather_chestplate", - "lplate": "leather_chestplate", - "lshirt": "leather_chestplate", - "ltunic": "leather_chestplate", - "leather_helmet": { - "material": "LEATHER_HELMET" - }, - "leatherhelmet": "leather_helmet", - "leatherhelm": "leather_helmet", - "leatherhat": "leather_helmet", - "leathercoif": "leather_helmet", - "lhelmet": "leather_helmet", - "lhelm": "leather_helmet", - "lhat": "leather_helmet", - "lcoif": "leather_helmet", - "leather_leggings": { - "material": "LEATHER_LEGGINGS" - }, - "leatherleggings": "leather_leggings", - "leatherlegs": "leather_leggings", - "leatherpants": "leather_leggings", - "lleggings": "leather_leggings", - "llegs": "leather_leggings", - "lpants": "leather_leggings", - "lever": { - "material": "LEVER" - }, - "light_blue_banner": { - "material": "LIGHT_BLUE_BANNER" - }, - "lightbluebanner": "light_blue_banner", - "lbstandingbanner": "light_blue_banner", - "lbbanner": "light_blue_banner", - "lblustandingbanner": "light_blue_banner", - "lblubanner": "light_blue_banner", - "lightblustandingbanner": "light_blue_banner", - "lightblubanner": "light_blue_banner", - "lbluestandingbanner": "light_blue_banner", - "lbluebanner": "light_blue_banner", - "lightbluestandingbanner": "light_blue_banner", - "light_blue_bed": { - "material": "LIGHT_BLUE_BED" - }, - "lightbluebed": "light_blue_bed", - "lbbed": "light_blue_bed", - "lblubed": "light_blue_bed", - "lightblubed": "light_blue_bed", - "lbluebed": "light_blue_bed", - "light_blue_carpet": { - "material": "LIGHT_BLUE_CARPET" - }, - "lightbluecarpet": "light_blue_carpet", - "lbcarpet": "light_blue_carpet", - "lbfloor": "light_blue_carpet", - "lblucarpet": "light_blue_carpet", - "lblufloor": "light_blue_carpet", - "lightblucarpet": "light_blue_carpet", - "lightblufloor": "light_blue_carpet", - "lbluecarpet": "light_blue_carpet", - "lbluefloor": "light_blue_carpet", - "lightbluefloor": "light_blue_carpet", - "light_blue_concrete": { - "material": "LIGHT_BLUE_CONCRETE" - }, - "lightblueconcrete": "light_blue_concrete", - "lbconcrete": "light_blue_concrete", - "lbluconcrete": "light_blue_concrete", - "lightbluconcrete": "light_blue_concrete", - "lblueconcrete": "light_blue_concrete", - "light_blue_concrete_powder": { - "material": "LIGHT_BLUE_CONCRETE_POWDER" - }, - "lightblueconcretepowder": "light_blue_concrete_powder", - "lbconcretepowder": "light_blue_concrete_powder", - "lbconcretesand": "light_blue_concrete_powder", - "lbcpowder": "light_blue_concrete_powder", - "lbcdust": "light_blue_concrete_powder", - "lbcp": "light_blue_concrete_powder", - "lbluconcretepowder": "light_blue_concrete_powder", - "lbluconcretesand": "light_blue_concrete_powder", - "lblucpowder": "light_blue_concrete_powder", - "lblucdust": "light_blue_concrete_powder", - "lblucp": "light_blue_concrete_powder", - "lightbluconcretepowder": "light_blue_concrete_powder", - "lightbluconcretesand": "light_blue_concrete_powder", - "lightblucpowder": "light_blue_concrete_powder", - "lightblucdust": "light_blue_concrete_powder", - "lightblucp": "light_blue_concrete_powder", - "lblueconcretepowder": "light_blue_concrete_powder", - "lblueconcretesand": "light_blue_concrete_powder", - "lbluecpowder": "light_blue_concrete_powder", - "lbluecdust": "light_blue_concrete_powder", - "lbluecp": "light_blue_concrete_powder", - "lightblueconcretesand": "light_blue_concrete_powder", - "lightbluecpowder": "light_blue_concrete_powder", - "lightbluecdust": "light_blue_concrete_powder", - "lightbluecp": "light_blue_concrete_powder", - "light_blue_dye": { - "material": "LIGHT_BLUE_DYE" - }, - "lightbluedye": "light_blue_dye", - "light_blue_glazed_terracotta": { - "material": "LIGHT_BLUE_GLAZED_TERRACOTTA" - }, - "lightblueglazedterracotta": "light_blue_glazed_terracotta", - "lbglazedtcota": "light_blue_glazed_terracotta", - "lbglazedterra": "light_blue_glazed_terracotta", - "lbglazedterracotta": "light_blue_glazed_terracotta", - "lbglazedterracota": "light_blue_glazed_terracotta", - "lbluglazedtcota": "light_blue_glazed_terracotta", - "lbluglazedterra": "light_blue_glazed_terracotta", - "lbluglazedterracotta": "light_blue_glazed_terracotta", - "lbluglazedterracota": "light_blue_glazed_terracotta", - "lightbluglazedtcota": "light_blue_glazed_terracotta", - "lightbluglazedterra": "light_blue_glazed_terracotta", - "lightbluglazedterracotta": "light_blue_glazed_terracotta", - "lightbluglazedterracota": "light_blue_glazed_terracotta", - "lblueglazedtcota": "light_blue_glazed_terracotta", - "lblueglazedterra": "light_blue_glazed_terracotta", - "lblueglazedterracotta": "light_blue_glazed_terracotta", - "lblueglazedterracota": "light_blue_glazed_terracotta", - "lightblueglazedtcota": "light_blue_glazed_terracotta", - "lightblueglazedterra": "light_blue_glazed_terracotta", - "lightblueglazedterracota": "light_blue_glazed_terracotta", - "light_blue_shulker_box": { - "material": "LIGHT_BLUE_SHULKER_BOX" - }, - "lightblueshulkerbox": "light_blue_shulker_box", - "lbshulkerbox": "light_blue_shulker_box", - "lbchest": "light_blue_shulker_box", - "lblushulkerbox": "light_blue_shulker_box", - "lbluchest": "light_blue_shulker_box", - "lightblushulkerbox": "light_blue_shulker_box", - "lightbluchest": "light_blue_shulker_box", - "lblueshulkerbox": "light_blue_shulker_box", - "lbluechest": "light_blue_shulker_box", - "lightbluechest": "light_blue_shulker_box", - "light_blue_stained_glass": { - "material": "LIGHT_BLUE_STAINED_GLASS" - }, - "lightbluestainedglass": "light_blue_stained_glass", - "lbglass": "light_blue_stained_glass", - "lbsglass": "light_blue_stained_glass", - "lbstainedglass": "light_blue_stained_glass", - "lbluglass": "light_blue_stained_glass", - "lblusglass": "light_blue_stained_glass", - "lblustainedglass": "light_blue_stained_glass", - "lightbluglass": "light_blue_stained_glass", - "lightblusglass": "light_blue_stained_glass", - "lightblustainedglass": "light_blue_stained_glass", - "lblueglass": "light_blue_stained_glass", - "lbluesglass": "light_blue_stained_glass", - "lbluestainedglass": "light_blue_stained_glass", - "lightblueglass": "light_blue_stained_glass", - "lightbluesglass": "light_blue_stained_glass", - "light_blue_stained_glass_pane": { - "material": "LIGHT_BLUE_STAINED_GLASS_PANE" - }, - "lightbluestainedglasspane": "light_blue_stained_glass_pane", - "lbglasspane": "light_blue_stained_glass_pane", - "lbsglasspane": "light_blue_stained_glass_pane", - "lbstainedglasspane": "light_blue_stained_glass_pane", - "lbgpane": "light_blue_stained_glass_pane", - "lbluglasspane": "light_blue_stained_glass_pane", - "lblusglasspane": "light_blue_stained_glass_pane", - "lblustainedglasspane": "light_blue_stained_glass_pane", - "lblugpane": "light_blue_stained_glass_pane", - "lightbluglasspane": "light_blue_stained_glass_pane", - "lightblusglasspane": "light_blue_stained_glass_pane", - "lightblustainedglasspane": "light_blue_stained_glass_pane", - "lightblugpane": "light_blue_stained_glass_pane", - "lblueglasspane": "light_blue_stained_glass_pane", - "lbluesglasspane": "light_blue_stained_glass_pane", - "lbluestainedglasspane": "light_blue_stained_glass_pane", - "lbluegpane": "light_blue_stained_glass_pane", - "lightblueglasspane": "light_blue_stained_glass_pane", - "lightbluesglasspane": "light_blue_stained_glass_pane", - "lightbluegpane": "light_blue_stained_glass_pane", - "light_blue_terracotta": { - "material": "LIGHT_BLUE_TERRACOTTA" - }, - "lightblueterracotta": "light_blue_terracotta", - "lbclay": "light_blue_terracotta", - "lbsclay": "light_blue_terracotta", - "lbstainedclay": "light_blue_terracotta", - "lbterra": "light_blue_terracotta", - "lbtcota": "light_blue_terracotta", - "lbterracota": "light_blue_terracotta", - "lbterracotta": "light_blue_terracotta", - "lbluclay": "light_blue_terracotta", - "lblusclay": "light_blue_terracotta", - "lblustainedclay": "light_blue_terracotta", - "lbluterra": "light_blue_terracotta", - "lblutcota": "light_blue_terracotta", - "lbluterracota": "light_blue_terracotta", - "lbluterracotta": "light_blue_terracotta", - "lightbluclay": "light_blue_terracotta", - "lightblusclay": "light_blue_terracotta", - "lightblustainedclay": "light_blue_terracotta", - "lightbluterra": "light_blue_terracotta", - "lightblutcota": "light_blue_terracotta", - "lightbluterracota": "light_blue_terracotta", - "lightbluterracotta": "light_blue_terracotta", - "lblueclay": "light_blue_terracotta", - "lbluesclay": "light_blue_terracotta", - "lbluestainedclay": "light_blue_terracotta", - "lblueterra": "light_blue_terracotta", - "lbluetcota": "light_blue_terracotta", - "lblueterracota": "light_blue_terracotta", - "lblueterracotta": "light_blue_terracotta", - "lightblueclay": "light_blue_terracotta", - "lightbluesclay": "light_blue_terracotta", - "lightbluestainedclay": "light_blue_terracotta", - "lightblueterra": "light_blue_terracotta", - "lightbluetcota": "light_blue_terracotta", - "lightblueterracota": "light_blue_terracotta", - "light_blue_wall_banner": { - "material": "LIGHT_BLUE_WALL_BANNER", - "unspawnable": true - }, - "lightbluewallbanner": "light_blue_wall_banner", - "light_blue_wool": { - "material": "LIGHT_BLUE_WOOL" - }, - "lightbluewool": "light_blue_wool", - "lbwool": "light_blue_wool", - "lbcloth": "light_blue_wool", - "lbcotton": "light_blue_wool", - "lbluwool": "light_blue_wool", - "lblucloth": "light_blue_wool", - "lblucotton": "light_blue_wool", - "lightbluwool": "light_blue_wool", - "lightblucloth": "light_blue_wool", - "lightblucotton": "light_blue_wool", - "lbluewool": "light_blue_wool", - "lbluecloth": "light_blue_wool", - "lbluecotton": "light_blue_wool", - "lightbluecloth": "light_blue_wool", - "lightbluecotton": "light_blue_wool", - "light_gray_banner": { - "material": "LIGHT_GRAY_BANNER" - }, - "lightgraybanner": "light_gray_banner", - "lgstandingbanner": "light_gray_banner", - "lgbanner": "light_gray_banner", - "lgrastandingbanner": "light_gray_banner", - "lgrabanner": "light_gray_banner", - "lgreystandingbanner": "light_gray_banner", - "lgreybanner": "light_gray_banner", - "lgraystandingbanner": "light_gray_banner", - "lgraybanner": "light_gray_banner", - "lightgrastandingbanner": "light_gray_banner", - "lightgrabanner": "light_gray_banner", - "lightgreystandingbanner": "light_gray_banner", - "lightgreybanner": "light_gray_banner", - "lightgraystandingbanner": "light_gray_banner", - "sistandingbanner": "light_gray_banner", - "sibanner": "light_gray_banner", - "siastandingbanner": "light_gray_banner", - "siabanner": "light_gray_banner", - "silverstandingbanner": "light_gray_banner", - "silverbanner": "light_gray_banner", - "light_gray_bed": { - "material": "LIGHT_GRAY_BED" - }, - "lightgraybed": "light_gray_bed", - "lgbed": "light_gray_bed", - "lgrabed": "light_gray_bed", - "lgreybed": "light_gray_bed", - "lgraybed": "light_gray_bed", - "lightgrabed": "light_gray_bed", - "lightgreybed": "light_gray_bed", - "sibed": "light_gray_bed", - "siabed": "light_gray_bed", - "silverbed": "light_gray_bed", - "light_gray_carpet": { - "material": "LIGHT_GRAY_CARPET" - }, - "lightgraycarpet": "light_gray_carpet", - "lgcarpet": "light_gray_carpet", - "lgfloor": "light_gray_carpet", - "lgracarpet": "light_gray_carpet", - "lgrafloor": "light_gray_carpet", - "lgreycarpet": "light_gray_carpet", - "lgreyfloor": "light_gray_carpet", - "lgraycarpet": "light_gray_carpet", - "lgrayfloor": "light_gray_carpet", - "lightgracarpet": "light_gray_carpet", - "lightgrafloor": "light_gray_carpet", - "lightgreycarpet": "light_gray_carpet", - "lightgreyfloor": "light_gray_carpet", - "lightgrayfloor": "light_gray_carpet", - "sicarpet": "light_gray_carpet", - "sifloor": "light_gray_carpet", - "siacarpet": "light_gray_carpet", - "siafloor": "light_gray_carpet", - "silvercarpet": "light_gray_carpet", - "silverfloor": "light_gray_carpet", - "light_gray_concrete": { - "material": "LIGHT_GRAY_CONCRETE" - }, - "lightgrayconcrete": "light_gray_concrete", - "lgconcrete": "light_gray_concrete", - "lgraconcrete": "light_gray_concrete", - "lgreyconcrete": "light_gray_concrete", - "lgrayconcrete": "light_gray_concrete", - "lightgraconcrete": "light_gray_concrete", - "lightgreyconcrete": "light_gray_concrete", - "siconcrete": "light_gray_concrete", - "siaconcrete": "light_gray_concrete", - "silverconcrete": "light_gray_concrete", - "light_gray_concrete_powder": { - "material": "LIGHT_GRAY_CONCRETE_POWDER" - }, - "lightgrayconcretepowder": "light_gray_concrete_powder", - "lgconcretepowder": "light_gray_concrete_powder", - "lgconcretesand": "light_gray_concrete_powder", - "lgcpowder": "light_gray_concrete_powder", - "lgcdust": "light_gray_concrete_powder", - "lgcp": "light_gray_concrete_powder", - "lgraconcretepowder": "light_gray_concrete_powder", - "lgraconcretesand": "light_gray_concrete_powder", - "lgracpowder": "light_gray_concrete_powder", - "lgracdust": "light_gray_concrete_powder", - "lgracp": "light_gray_concrete_powder", - "lgreyconcretepowder": "light_gray_concrete_powder", - "lgreyconcretesand": "light_gray_concrete_powder", - "lgreycpowder": "light_gray_concrete_powder", - "lgreycdust": "light_gray_concrete_powder", - "lgreycp": "light_gray_concrete_powder", - "lgrayconcretepowder": "light_gray_concrete_powder", - "lgrayconcretesand": "light_gray_concrete_powder", - "lgraycpowder": "light_gray_concrete_powder", - "lgraycdust": "light_gray_concrete_powder", - "lgraycp": "light_gray_concrete_powder", - "lightgraconcretepowder": "light_gray_concrete_powder", - "lightgraconcretesand": "light_gray_concrete_powder", - "lightgracpowder": "light_gray_concrete_powder", - "lightgracdust": "light_gray_concrete_powder", - "lightgracp": "light_gray_concrete_powder", - "lightgreyconcretepowder": "light_gray_concrete_powder", - "lightgreyconcretesand": "light_gray_concrete_powder", - "lightgreycpowder": "light_gray_concrete_powder", - "lightgreycdust": "light_gray_concrete_powder", - "lightgreycp": "light_gray_concrete_powder", - "lightgrayconcretesand": "light_gray_concrete_powder", - "lightgraycpowder": "light_gray_concrete_powder", - "lightgraycdust": "light_gray_concrete_powder", - "lightgraycp": "light_gray_concrete_powder", - "siconcretepowder": "light_gray_concrete_powder", - "siconcretesand": "light_gray_concrete_powder", - "sicpowder": "light_gray_concrete_powder", - "sicdust": "light_gray_concrete_powder", - "sicp": "light_gray_concrete_powder", - "siaconcretepowder": "light_gray_concrete_powder", - "siaconcretesand": "light_gray_concrete_powder", - "siacpowder": "light_gray_concrete_powder", - "siacdust": "light_gray_concrete_powder", - "siacp": "light_gray_concrete_powder", - "silverconcretepowder": "light_gray_concrete_powder", - "silverconcretesand": "light_gray_concrete_powder", - "silvercpowder": "light_gray_concrete_powder", - "silvercdust": "light_gray_concrete_powder", - "silvercp": "light_gray_concrete_powder", - "light_gray_dye": { - "material": "LIGHT_GRAY_DYE" - }, - "lightgraydye": "light_gray_dye", - "light_gray_glazed_terracotta": { - "material": "LIGHT_GRAY_GLAZED_TERRACOTTA" - }, - "lightgrayglazedterracotta": "light_gray_glazed_terracotta", - "lgglazedtcota": "light_gray_glazed_terracotta", - "lgglazedterra": "light_gray_glazed_terracotta", - "lgglazedterracotta": "light_gray_glazed_terracotta", - "lgglazedterracota": "light_gray_glazed_terracotta", - "lgraglazedtcota": "light_gray_glazed_terracotta", - "lgraglazedterra": "light_gray_glazed_terracotta", - "lgraglazedterracotta": "light_gray_glazed_terracotta", - "lgraglazedterracota": "light_gray_glazed_terracotta", - "lgreyglazedtcota": "light_gray_glazed_terracotta", - "lgreyglazedterra": "light_gray_glazed_terracotta", - "lgreyglazedterracotta": "light_gray_glazed_terracotta", - "lgreyglazedterracota": "light_gray_glazed_terracotta", - "lgrayglazedtcota": "light_gray_glazed_terracotta", - "lgrayglazedterra": "light_gray_glazed_terracotta", - "lgrayglazedterracotta": "light_gray_glazed_terracotta", - "lgrayglazedterracota": "light_gray_glazed_terracotta", - "lightgraglazedtcota": "light_gray_glazed_terracotta", - "lightgraglazedterra": "light_gray_glazed_terracotta", - "lightgraglazedterracotta": "light_gray_glazed_terracotta", - "lightgraglazedterracota": "light_gray_glazed_terracotta", - "lightgreyglazedtcota": "light_gray_glazed_terracotta", - "lightgreyglazedterra": "light_gray_glazed_terracotta", - "lightgreyglazedterracotta": "light_gray_glazed_terracotta", - "lightgreyglazedterracota": "light_gray_glazed_terracotta", - "lightgrayglazedtcota": "light_gray_glazed_terracotta", - "lightgrayglazedterra": "light_gray_glazed_terracotta", - "lightgrayglazedterracota": "light_gray_glazed_terracotta", - "siglazedtcota": "light_gray_glazed_terracotta", - "siglazedterra": "light_gray_glazed_terracotta", - "siglazedterracotta": "light_gray_glazed_terracotta", - "siglazedterracota": "light_gray_glazed_terracotta", - "siaglazedtcota": "light_gray_glazed_terracotta", - "siaglazedterra": "light_gray_glazed_terracotta", - "siaglazedterracotta": "light_gray_glazed_terracotta", - "siaglazedterracota": "light_gray_glazed_terracotta", - "silverglazedtcota": "light_gray_glazed_terracotta", - "silverglazedterra": "light_gray_glazed_terracotta", - "silverglazedterracotta": "light_gray_glazed_terracotta", - "silverglazedterracota": "light_gray_glazed_terracotta", - "light_gray_shulker_box": { - "material": "LIGHT_GRAY_SHULKER_BOX" - }, - "lightgrayshulkerbox": "light_gray_shulker_box", - "lgshulkerbox": "light_gray_shulker_box", - "lgchest": "light_gray_shulker_box", - "lgrashulkerbox": "light_gray_shulker_box", - "lgrachest": "light_gray_shulker_box", - "lgreyshulkerbox": "light_gray_shulker_box", - "lgreychest": "light_gray_shulker_box", - "lgrayshulkerbox": "light_gray_shulker_box", - "lgraychest": "light_gray_shulker_box", - "lightgrashulkerbox": "light_gray_shulker_box", - "lightgrachest": "light_gray_shulker_box", - "lightgreyshulkerbox": "light_gray_shulker_box", - "lightgreychest": "light_gray_shulker_box", - "lightgraychest": "light_gray_shulker_box", - "sishulkerbox": "light_gray_shulker_box", - "sichest": "light_gray_shulker_box", - "siashulkerbox": "light_gray_shulker_box", - "siachest": "light_gray_shulker_box", - "silvershulkerbox": "light_gray_shulker_box", - "silverchest": "light_gray_shulker_box", - "light_gray_stained_glass": { - "material": "LIGHT_GRAY_STAINED_GLASS" - }, - "lightgraystainedglass": "light_gray_stained_glass", - "lgglass": "light_gray_stained_glass", - "lgsglass": "light_gray_stained_glass", - "lgstainedglass": "light_gray_stained_glass", - "lgraglass": "light_gray_stained_glass", - "lgrasglass": "light_gray_stained_glass", - "lgrastainedglass": "light_gray_stained_glass", - "lgreyglass": "light_gray_stained_glass", - "lgreysglass": "light_gray_stained_glass", - "lgreystainedglass": "light_gray_stained_glass", - "lgrayglass": "light_gray_stained_glass", - "lgraysglass": "light_gray_stained_glass", - "lgraystainedglass": "light_gray_stained_glass", - "lightgraglass": "light_gray_stained_glass", - "lightgrasglass": "light_gray_stained_glass", - "lightgrastainedglass": "light_gray_stained_glass", - "lightgreyglass": "light_gray_stained_glass", - "lightgreysglass": "light_gray_stained_glass", - "lightgreystainedglass": "light_gray_stained_glass", - "lightgrayglass": "light_gray_stained_glass", - "lightgraysglass": "light_gray_stained_glass", - "siglass": "light_gray_stained_glass", - "sisglass": "light_gray_stained_glass", - "sistainedglass": "light_gray_stained_glass", - "siaglass": "light_gray_stained_glass", - "siasglass": "light_gray_stained_glass", - "siastainedglass": "light_gray_stained_glass", - "silverglass": "light_gray_stained_glass", - "silversglass": "light_gray_stained_glass", - "silverstainedglass": "light_gray_stained_glass", - "light_gray_stained_glass_pane": { - "material": "LIGHT_GRAY_STAINED_GLASS_PANE" - }, - "lightgraystainedglasspane": "light_gray_stained_glass_pane", - "lgglasspane": "light_gray_stained_glass_pane", - "lgsglasspane": "light_gray_stained_glass_pane", - "lgstainedglasspane": "light_gray_stained_glass_pane", - "lggpane": "light_gray_stained_glass_pane", - "lgraglasspane": "light_gray_stained_glass_pane", - "lgrasglasspane": "light_gray_stained_glass_pane", - "lgrastainedglasspane": "light_gray_stained_glass_pane", - "lgragpane": "light_gray_stained_glass_pane", - "lgreyglasspane": "light_gray_stained_glass_pane", - "lgreysglasspane": "light_gray_stained_glass_pane", - "lgreystainedglasspane": "light_gray_stained_glass_pane", - "lgreygpane": "light_gray_stained_glass_pane", - "lgrayglasspane": "light_gray_stained_glass_pane", - "lgraysglasspane": "light_gray_stained_glass_pane", - "lgraystainedglasspane": "light_gray_stained_glass_pane", - "lgraygpane": "light_gray_stained_glass_pane", - "lightgraglasspane": "light_gray_stained_glass_pane", - "lightgrasglasspane": "light_gray_stained_glass_pane", - "lightgrastainedglasspane": "light_gray_stained_glass_pane", - "lightgragpane": "light_gray_stained_glass_pane", - "lightgreyglasspane": "light_gray_stained_glass_pane", - "lightgreysglasspane": "light_gray_stained_glass_pane", - "lightgreystainedglasspane": "light_gray_stained_glass_pane", - "lightgreygpane": "light_gray_stained_glass_pane", - "lightgrayglasspane": "light_gray_stained_glass_pane", - "lightgraysglasspane": "light_gray_stained_glass_pane", - "lightgraygpane": "light_gray_stained_glass_pane", - "siglasspane": "light_gray_stained_glass_pane", - "sisglasspane": "light_gray_stained_glass_pane", - "sistainedglasspane": "light_gray_stained_glass_pane", - "sigpane": "light_gray_stained_glass_pane", - "siaglasspane": "light_gray_stained_glass_pane", - "siasglasspane": "light_gray_stained_glass_pane", - "siastainedglasspane": "light_gray_stained_glass_pane", - "siagpane": "light_gray_stained_glass_pane", - "silverglasspane": "light_gray_stained_glass_pane", - "silversglasspane": "light_gray_stained_glass_pane", - "silverstainedglasspane": "light_gray_stained_glass_pane", - "silvergpane": "light_gray_stained_glass_pane", - "light_gray_terracotta": { - "material": "LIGHT_GRAY_TERRACOTTA" - }, - "lightgrayterracotta": "light_gray_terracotta", - "lgclay": "light_gray_terracotta", - "lgsclay": "light_gray_terracotta", - "lgstainedclay": "light_gray_terracotta", - "lgterra": "light_gray_terracotta", - "lgtcota": "light_gray_terracotta", - "lgterracota": "light_gray_terracotta", - "lgterracotta": "light_gray_terracotta", - "lgraclay": "light_gray_terracotta", - "lgrasclay": "light_gray_terracotta", - "lgrastainedclay": "light_gray_terracotta", - "lgraterra": "light_gray_terracotta", - "lgratcota": "light_gray_terracotta", - "lgraterracota": "light_gray_terracotta", - "lgraterracotta": "light_gray_terracotta", - "lgreyclay": "light_gray_terracotta", - "lgreysclay": "light_gray_terracotta", - "lgreystainedclay": "light_gray_terracotta", - "lgreyterra": "light_gray_terracotta", - "lgreytcota": "light_gray_terracotta", - "lgreyterracota": "light_gray_terracotta", - "lgreyterracotta": "light_gray_terracotta", - "lgrayclay": "light_gray_terracotta", - "lgraysclay": "light_gray_terracotta", - "lgraystainedclay": "light_gray_terracotta", - "lgrayterra": "light_gray_terracotta", - "lgraytcota": "light_gray_terracotta", - "lgrayterracota": "light_gray_terracotta", - "lgrayterracotta": "light_gray_terracotta", - "lightgraclay": "light_gray_terracotta", - "lightgrasclay": "light_gray_terracotta", - "lightgrastainedclay": "light_gray_terracotta", - "lightgraterra": "light_gray_terracotta", - "lightgratcota": "light_gray_terracotta", - "lightgraterracota": "light_gray_terracotta", - "lightgraterracotta": "light_gray_terracotta", - "lightgreyclay": "light_gray_terracotta", - "lightgreysclay": "light_gray_terracotta", - "lightgreystainedclay": "light_gray_terracotta", - "lightgreyterra": "light_gray_terracotta", - "lightgreytcota": "light_gray_terracotta", - "lightgreyterracota": "light_gray_terracotta", - "lightgreyterracotta": "light_gray_terracotta", - "lightgrayclay": "light_gray_terracotta", - "lightgraysclay": "light_gray_terracotta", - "lightgraystainedclay": "light_gray_terracotta", - "lightgrayterra": "light_gray_terracotta", - "lightgraytcota": "light_gray_terracotta", - "lightgrayterracota": "light_gray_terracotta", - "siclay": "light_gray_terracotta", - "sisclay": "light_gray_terracotta", - "sistainedclay": "light_gray_terracotta", - "siterra": "light_gray_terracotta", - "sitcota": "light_gray_terracotta", - "siterracota": "light_gray_terracotta", - "siterracotta": "light_gray_terracotta", - "siaclay": "light_gray_terracotta", - "siasclay": "light_gray_terracotta", - "siastainedclay": "light_gray_terracotta", - "siaterra": "light_gray_terracotta", - "siatcota": "light_gray_terracotta", - "siaterracota": "light_gray_terracotta", - "siaterracotta": "light_gray_terracotta", - "silverclay": "light_gray_terracotta", - "silversclay": "light_gray_terracotta", - "silverstainedclay": "light_gray_terracotta", - "silverterra": "light_gray_terracotta", - "silvertcota": "light_gray_terracotta", - "silverterracota": "light_gray_terracotta", - "silverterracotta": "light_gray_terracotta", - "light_gray_wall_banner": { - "material": "LIGHT_GRAY_WALL_BANNER", - "unspawnable": true - }, - "lightgraywallbanner": "light_gray_wall_banner", - "light_gray_wool": { - "material": "LIGHT_GRAY_WOOL" - }, - "lightgraywool": "light_gray_wool", - "lgwool": "light_gray_wool", - "lgcloth": "light_gray_wool", - "lgcotton": "light_gray_wool", - "lgrawool": "light_gray_wool", - "lgracloth": "light_gray_wool", - "lgracotton": "light_gray_wool", - "lgreywool": "light_gray_wool", - "lgreycloth": "light_gray_wool", - "lgreycotton": "light_gray_wool", - "lgraywool": "light_gray_wool", - "lgraycloth": "light_gray_wool", - "lgraycotton": "light_gray_wool", - "lightgrawool": "light_gray_wool", - "lightgracloth": "light_gray_wool", - "lightgracotton": "light_gray_wool", - "lightgreywool": "light_gray_wool", - "lightgreycloth": "light_gray_wool", - "lightgreycotton": "light_gray_wool", - "lightgraycloth": "light_gray_wool", - "lightgraycotton": "light_gray_wool", - "siwool": "light_gray_wool", - "sicloth": "light_gray_wool", - "sicotton": "light_gray_wool", - "siawool": "light_gray_wool", - "siacloth": "light_gray_wool", - "siacotton": "light_gray_wool", - "silverwool": "light_gray_wool", - "silvercloth": "light_gray_wool", - "silvercotton": "light_gray_wool", - "light_weighted_pressure_plate": { - "material": "LIGHT_WEIGHTED_PRESSURE_PLATE" - }, - "lightweightedpressureplate": "light_weighted_pressure_plate", - "lilac": { - "material": "LILAC" - }, - "lily_pad": { - "material": "LILY_PAD" - }, - "lilypad": "lily_pad", - "waterlily": "lily_pad", - "lily": "lily_pad", - "swamppad": "lily_pad", - "lpad": "lily_pad", - "wlily": "lily_pad", - "lime_banner": { - "material": "LIME_BANNER" - }, - "limebanner": "lime_banner", - "lstandingbanner": "lime_banner", - "lbanner": "lime_banner", - "limestandingbanner": "lime_banner", - "lgrestandingbanner": "lime_banner", - "lgrebanner": "lime_banner", - "lightgrestandingbanner": "lime_banner", - "lightgrebanner": "lime_banner", - "lgreenstandingbanner": "lime_banner", - "lgreenbanner": "lime_banner", - "lightgreenstandingbanner": "lime_banner", - "lightgreenbanner": "lime_banner", - "lime_bed": { - "material": "LIME_BED" - }, - "limebed": "lime_bed", - "lbed": "lime_bed", - "lgrebed": "lime_bed", - "lightgrebed": "lime_bed", - "lgreenbed": "lime_bed", - "lightgreenbed": "lime_bed", - "lime_carpet": { - "material": "LIME_CARPET" - }, - "limecarpet": "lime_carpet", - "lcarpet": "lime_carpet", - "lfloor": "lime_carpet", - "limefloor": "lime_carpet", - "lgrecarpet": "lime_carpet", - "lgrefloor": "lime_carpet", - "lightgrecarpet": "lime_carpet", - "lightgrefloor": "lime_carpet", - "lgreencarpet": "lime_carpet", - "lgreenfloor": "lime_carpet", - "lightgreencarpet": "lime_carpet", - "lightgreenfloor": "lime_carpet", - "lime_concrete": { - "material": "LIME_CONCRETE" - }, - "limeconcrete": "lime_concrete", - "lconcrete": "lime_concrete", - "lgreconcrete": "lime_concrete", - "lightgreconcrete": "lime_concrete", - "lgreenconcrete": "lime_concrete", - "lightgreenconcrete": "lime_concrete", - "lime_concrete_powder": { - "material": "LIME_CONCRETE_POWDER" - }, - "limeconcretepowder": "lime_concrete_powder", - "lconcretepowder": "lime_concrete_powder", - "lconcretesand": "lime_concrete_powder", - "lcpowder": "lime_concrete_powder", - "lcdust": "lime_concrete_powder", - "lcp": "lime_concrete_powder", - "limeconcretesand": "lime_concrete_powder", - "limecpowder": "lime_concrete_powder", - "limecdust": "lime_concrete_powder", - "limecp": "lime_concrete_powder", - "lgreconcretepowder": "lime_concrete_powder", - "lgreconcretesand": "lime_concrete_powder", - "lgrecpowder": "lime_concrete_powder", - "lgrecdust": "lime_concrete_powder", - "lgrecp": "lime_concrete_powder", - "lightgreconcretepowder": "lime_concrete_powder", - "lightgreconcretesand": "lime_concrete_powder", - "lightgrecpowder": "lime_concrete_powder", - "lightgrecdust": "lime_concrete_powder", - "lightgrecp": "lime_concrete_powder", - "lgreenconcretepowder": "lime_concrete_powder", - "lgreenconcretesand": "lime_concrete_powder", - "lgreencpowder": "lime_concrete_powder", - "lgreencdust": "lime_concrete_powder", - "lgreencp": "lime_concrete_powder", - "lightgreenconcretepowder": "lime_concrete_powder", - "lightgreenconcretesand": "lime_concrete_powder", - "lightgreencpowder": "lime_concrete_powder", - "lightgreencdust": "lime_concrete_powder", - "lightgreencp": "lime_concrete_powder", - "lime_dye": { - "material": "LIME_DYE" - }, - "limedye": "lime_dye", - "lime_glazed_terracotta": { - "material": "LIME_GLAZED_TERRACOTTA" - }, - "limeglazedterracotta": "lime_glazed_terracotta", - "lglazedtcota": "lime_glazed_terracotta", - "lglazedterra": "lime_glazed_terracotta", - "lglazedterracotta": "lime_glazed_terracotta", - "lglazedterracota": "lime_glazed_terracotta", - "limeglazedtcota": "lime_glazed_terracotta", - "limeglazedterra": "lime_glazed_terracotta", - "limeglazedterracota": "lime_glazed_terracotta", - "lgreglazedtcota": "lime_glazed_terracotta", - "lgreglazedterra": "lime_glazed_terracotta", - "lgreglazedterracotta": "lime_glazed_terracotta", - "lgreglazedterracota": "lime_glazed_terracotta", - "lightgreglazedtcota": "lime_glazed_terracotta", - "lightgreglazedterra": "lime_glazed_terracotta", - "lightgreglazedterracotta": "lime_glazed_terracotta", - "lightgreglazedterracota": "lime_glazed_terracotta", - "lgreenglazedtcota": "lime_glazed_terracotta", - "lgreenglazedterra": "lime_glazed_terracotta", - "lgreenglazedterracotta": "lime_glazed_terracotta", - "lgreenglazedterracota": "lime_glazed_terracotta", - "lightgreenglazedtcota": "lime_glazed_terracotta", - "lightgreenglazedterra": "lime_glazed_terracotta", - "lightgreenglazedterracotta": "lime_glazed_terracotta", - "lightgreenglazedterracota": "lime_glazed_terracotta", - "lime_shulker_box": { - "material": "LIME_SHULKER_BOX" - }, - "limeshulkerbox": "lime_shulker_box", - "lshulkerbox": "lime_shulker_box", - "lchest": "lime_shulker_box", - "limechest": "lime_shulker_box", - "lgreshulkerbox": "lime_shulker_box", - "lgrechest": "lime_shulker_box", - "lightgreshulkerbox": "lime_shulker_box", - "lightgrechest": "lime_shulker_box", - "lgreenshulkerbox": "lime_shulker_box", - "lgreenchest": "lime_shulker_box", - "lightgreenshulkerbox": "lime_shulker_box", - "lightgreenchest": "lime_shulker_box", - "lime_stained_glass": { - "material": "LIME_STAINED_GLASS" - }, - "limestainedglass": "lime_stained_glass", - "lglass": "lime_stained_glass", - "lsglass": "lime_stained_glass", - "lstainedglass": "lime_stained_glass", - "limeglass": "lime_stained_glass", - "limesglass": "lime_stained_glass", - "lgreglass": "lime_stained_glass", - "lgresglass": "lime_stained_glass", - "lgrestainedglass": "lime_stained_glass", - "lightgreglass": "lime_stained_glass", - "lightgresglass": "lime_stained_glass", - "lightgrestainedglass": "lime_stained_glass", - "lgreenglass": "lime_stained_glass", - "lgreensglass": "lime_stained_glass", - "lgreenstainedglass": "lime_stained_glass", - "lightgreenglass": "lime_stained_glass", - "lightgreensglass": "lime_stained_glass", - "lightgreenstainedglass": "lime_stained_glass", - "lime_stained_glass_pane": { - "material": "LIME_STAINED_GLASS_PANE" - }, - "limestainedglasspane": "lime_stained_glass_pane", - "lglasspane": "lime_stained_glass_pane", - "lsglasspane": "lime_stained_glass_pane", - "lstainedglasspane": "lime_stained_glass_pane", - "lgpane": "lime_stained_glass_pane", - "limeglasspane": "lime_stained_glass_pane", - "limesglasspane": "lime_stained_glass_pane", - "limegpane": "lime_stained_glass_pane", - "lgreglasspane": "lime_stained_glass_pane", - "lgresglasspane": "lime_stained_glass_pane", - "lgrestainedglasspane": "lime_stained_glass_pane", - "lgregpane": "lime_stained_glass_pane", - "lightgreglasspane": "lime_stained_glass_pane", - "lightgresglasspane": "lime_stained_glass_pane", - "lightgrestainedglasspane": "lime_stained_glass_pane", - "lightgregpane": "lime_stained_glass_pane", - "lgreenglasspane": "lime_stained_glass_pane", - "lgreensglasspane": "lime_stained_glass_pane", - "lgreenstainedglasspane": "lime_stained_glass_pane", - "lgreengpane": "lime_stained_glass_pane", - "lightgreenglasspane": "lime_stained_glass_pane", - "lightgreensglasspane": "lime_stained_glass_pane", - "lightgreenstainedglasspane": "lime_stained_glass_pane", - "lightgreengpane": "lime_stained_glass_pane", - "lime_terracotta": { - "material": "LIME_TERRACOTTA" - }, - "limeterracotta": "lime_terracotta", - "lclay": "lime_terracotta", - "lsclay": "lime_terracotta", - "lstainedclay": "lime_terracotta", - "lterra": "lime_terracotta", - "ltcota": "lime_terracotta", - "lterracota": "lime_terracotta", - "lterracotta": "lime_terracotta", - "limeclay": "lime_terracotta", - "limesclay": "lime_terracotta", - "limestainedclay": "lime_terracotta", - "limeterra": "lime_terracotta", - "limetcota": "lime_terracotta", - "limeterracota": "lime_terracotta", - "lgreclay": "lime_terracotta", - "lgresclay": "lime_terracotta", - "lgrestainedclay": "lime_terracotta", - "lgreterra": "lime_terracotta", - "lgretcota": "lime_terracotta", - "lgreterracota": "lime_terracotta", - "lgreterracotta": "lime_terracotta", - "lightgreclay": "lime_terracotta", - "lightgresclay": "lime_terracotta", - "lightgrestainedclay": "lime_terracotta", - "lightgreterra": "lime_terracotta", - "lightgretcota": "lime_terracotta", - "lightgreterracota": "lime_terracotta", - "lightgreterracotta": "lime_terracotta", - "lgreenclay": "lime_terracotta", - "lgreensclay": "lime_terracotta", - "lgreenstainedclay": "lime_terracotta", - "lgreenterra": "lime_terracotta", - "lgreentcota": "lime_terracotta", - "lgreenterracota": "lime_terracotta", - "lgreenterracotta": "lime_terracotta", - "lightgreenclay": "lime_terracotta", - "lightgreensclay": "lime_terracotta", - "lightgreenstainedclay": "lime_terracotta", - "lightgreenterra": "lime_terracotta", - "lightgreentcota": "lime_terracotta", - "lightgreenterracota": "lime_terracotta", - "lightgreenterracotta": "lime_terracotta", - "lime_wall_banner": { - "material": "LIME_WALL_BANNER", - "unspawnable": true - }, - "limewallbanner": "lime_wall_banner", - "lime_wool": { - "material": "LIME_WOOL" - }, - "limewool": "lime_wool", - "lwool": "lime_wool", - "lcloth": "lime_wool", - "lcotton": "lime_wool", - "limecloth": "lime_wool", - "limecotton": "lime_wool", - "lgrewool": "lime_wool", - "lgrecloth": "lime_wool", - "lgrecotton": "lime_wool", - "lightgrewool": "lime_wool", - "lightgrecloth": "lime_wool", - "lightgrecotton": "lime_wool", - "lgreenwool": "lime_wool", - "lgreencloth": "lime_wool", - "lgreencotton": "lime_wool", - "lightgreenwool": "lime_wool", - "lightgreencloth": "lime_wool", - "lightgreencotton": "lime_wool", - "lingering_potion": { - "material": "LINGERING_POTION" - }, - "lingeringpotion": "lingering_potion", - "llama_spawn_egg": { - "material": "LLAMA_SPAWN_EGG" - }, - "llamaspawnegg": "llama_spawn_egg", - "llamaegg": "llama_spawn_egg", - "eggllama": "llama_spawn_egg", - "spawneggllama": "llama_spawn_egg", - "llamaspawn": "llama_spawn_egg", - "spawnllama": "llama_spawn_egg", - "magenta_banner": { - "material": "MAGENTA_BANNER" - }, - "magentabanner": "magenta_banner", - "mstandingbanner": "magenta_banner", - "mbanner": "magenta_banner", - "magentastandingbanner": "magenta_banner", - "magenta_bed": { - "material": "MAGENTA_BED" - }, - "magentabed": "magenta_bed", - "mbed": "magenta_bed", - "magenta_carpet": { - "material": "MAGENTA_CARPET" - }, - "magentacarpet": "magenta_carpet", - "mcarpet": "magenta_carpet", - "mfloor": "magenta_carpet", - "magentafloor": "magenta_carpet", - "magenta_concrete": { - "material": "MAGENTA_CONCRETE" - }, - "magentaconcrete": "magenta_concrete", - "mconcrete": "magenta_concrete", - "magenta_concrete_powder": { - "material": "MAGENTA_CONCRETE_POWDER" - }, - "magentaconcretepowder": "magenta_concrete_powder", - "mconcretepowder": "magenta_concrete_powder", - "mconcretesand": "magenta_concrete_powder", - "mcpowder": "magenta_concrete_powder", - "mcdust": "magenta_concrete_powder", - "mcp": "magenta_concrete_powder", - "magentaconcretesand": "magenta_concrete_powder", - "magentacpowder": "magenta_concrete_powder", - "magentacdust": "magenta_concrete_powder", - "magentacp": "magenta_concrete_powder", - "magenta_dye": { - "material": "MAGENTA_DYE" - }, - "magentadye": "magenta_dye", - "magenta_glazed_terracotta": { - "material": "MAGENTA_GLAZED_TERRACOTTA" - }, - "magentaglazedterracotta": "magenta_glazed_terracotta", - "mglazedtcota": "magenta_glazed_terracotta", - "mglazedterra": "magenta_glazed_terracotta", - "mglazedterracotta": "magenta_glazed_terracotta", - "mglazedterracota": "magenta_glazed_terracotta", - "magentaglazedtcota": "magenta_glazed_terracotta", - "magentaglazedterra": "magenta_glazed_terracotta", - "magentaglazedterracota": "magenta_glazed_terracotta", - "magenta_shulker_box": { - "material": "MAGENTA_SHULKER_BOX" - }, - "magentashulkerbox": "magenta_shulker_box", - "mshulkerbox": "magenta_shulker_box", - "mchest": "magenta_shulker_box", - "magentachest": "magenta_shulker_box", - "magenta_stained_glass": { - "material": "MAGENTA_STAINED_GLASS" - }, - "magentastainedglass": "magenta_stained_glass", - "mglass": "magenta_stained_glass", - "msglass": "magenta_stained_glass", - "mstainedglass": "magenta_stained_glass", - "magentaglass": "magenta_stained_glass", - "magentasglass": "magenta_stained_glass", - "magenta_stained_glass_pane": { - "material": "MAGENTA_STAINED_GLASS_PANE" - }, - "magentastainedglasspane": "magenta_stained_glass_pane", - "mglasspane": "magenta_stained_glass_pane", - "msglasspane": "magenta_stained_glass_pane", - "mstainedglasspane": "magenta_stained_glass_pane", - "mgpane": "magenta_stained_glass_pane", - "magentaglasspane": "magenta_stained_glass_pane", - "magentasglasspane": "magenta_stained_glass_pane", - "magentagpane": "magenta_stained_glass_pane", - "magenta_terracotta": { - "material": "MAGENTA_TERRACOTTA" - }, - "magentaterracotta": "magenta_terracotta", - "mclay": "magenta_terracotta", - "msclay": "magenta_terracotta", - "mstainedclay": "magenta_terracotta", - "mterra": "magenta_terracotta", - "mtcota": "magenta_terracotta", - "mterracota": "magenta_terracotta", - "mterracotta": "magenta_terracotta", - "magentaclay": "magenta_terracotta", - "magentasclay": "magenta_terracotta", - "magentastainedclay": "magenta_terracotta", - "magentaterra": "magenta_terracotta", - "magentatcota": "magenta_terracotta", - "magentaterracota": "magenta_terracotta", - "magenta_wall_banner": { - "material": "MAGENTA_WALL_BANNER", - "unspawnable": true - }, - "magentawallbanner": "magenta_wall_banner", - "magenta_wool": { - "material": "MAGENTA_WOOL" - }, - "magentawool": "magenta_wool", - "mwool": "magenta_wool", - "mcloth": "magenta_wool", - "mcotton": "magenta_wool", - "magentacloth": "magenta_wool", - "magentacotton": "magenta_wool", - "magma_block": { - "material": "MAGMA_BLOCK" - }, - "magmablock": "magma_block", - "magma_cream": { - "material": "MAGMA_CREAM" - }, - "magmacream": "magma_cream", - "magma_cube_spawn_egg": { - "material": "MAGMA_CUBE_SPAWN_EGG" - }, - "magmacubespawnegg": "magma_cube_spawn_egg", - "lavaslimeegg": "magma_cube_spawn_egg", - "egglavaslime": "magma_cube_spawn_egg", - "lavaslimespawnegg": "magma_cube_spawn_egg", - "spawnegglavaslime": "magma_cube_spawn_egg", - "lavaslimespawn": "magma_cube_spawn_egg", - "spawnlavaslime": "magma_cube_spawn_egg", - "lavacubeegg": "magma_cube_spawn_egg", - "egglavacube": "magma_cube_spawn_egg", - "lavacubespawnegg": "magma_cube_spawn_egg", - "spawnegglavacube": "magma_cube_spawn_egg", - "lavacubespawn": "magma_cube_spawn_egg", - "spawnlavacube": "magma_cube_spawn_egg", - "magmacubeegg": "magma_cube_spawn_egg", - "eggmagmacube": "magma_cube_spawn_egg", - "spawneggmagmacube": "magma_cube_spawn_egg", - "magmacubespawn": "magma_cube_spawn_egg", - "spawnmagmacube": "magma_cube_spawn_egg", - "magmaslimeegg": "magma_cube_spawn_egg", - "eggmagmaslime": "magma_cube_spawn_egg", - "magmaslimespawnegg": "magma_cube_spawn_egg", - "spawneggmagmaslime": "magma_cube_spawn_egg", - "magmaslimespawn": "magma_cube_spawn_egg", - "spawnmagmaslime": "magma_cube_spawn_egg", - "map": { - "material": "MAP" - }, - "melon": { - "material": "MELON" - }, - "watermelon": "melon", - "greenmelon": "melon", - "melongreen": "melon", - "melonblock": "melon", - "watermelonblock": "melon", - "greenmelonblock": "melon", - "melon_seeds": { - "material": "MELON_SEEDS" - }, - "melonseeds": "melon_seeds", - "melon_slice": { - "material": "MELON_SLICE" - }, - "melonslice": "melon_slice", - "melon_stem": { - "material": "MELON_STEM", - "unspawnable": true - }, - "melonstem": "melon_stem", - "milk_bucket": { - "material": "MILK_BUCKET" - }, - "milkbucket": "milk_bucket", - "minecart": { - "material": "MINECART" - }, - "mcart": "minecart", - "mc": "minecart", - "cart": "minecart", - "mooshroom_spawn_egg": { - "material": "MOOSHROOM_SPAWN_EGG" - }, - "mooshroomspawnegg": "mooshroom_spawn_egg", - "mooshroomegg": "mooshroom_spawn_egg", - "eggmooshroom": "mooshroom_spawn_egg", - "spawneggmooshroom": "mooshroom_spawn_egg", - "mooshroomspawn": "mooshroom_spawn_egg", - "spawnmooshroom": "mooshroom_spawn_egg", - "mushroomegg": "mooshroom_spawn_egg", - "eggmushroom": "mooshroom_spawn_egg", - "mushroomspawnegg": "mooshroom_spawn_egg", - "spawneggmushroom": "mooshroom_spawn_egg", - "mushroomspawn": "mooshroom_spawn_egg", - "spawnmushroom": "mooshroom_spawn_egg", - "mushroomcowegg": "mooshroom_spawn_egg", - "eggmushroomcow": "mooshroom_spawn_egg", - "mushroomcowspawnegg": "mooshroom_spawn_egg", - "spawneggmushroomcow": "mooshroom_spawn_egg", - "mushroomcowspawn": "mooshroom_spawn_egg", - "spawnmushroomcow": "mooshroom_spawn_egg", - "mossy_cobblestone": { - "material": "MOSSY_COBBLESTONE" - }, - "mossycobblestone": "mossy_cobblestone", - "mosscobblestone": "mossy_cobblestone", - "mcobblestone": "mossy_cobblestone", - "mossycstone": "mossy_cobblestone", - "mosscstone": "mossy_cobblestone", - "mcstone": "mossy_cobblestone", - "mossycobble": "mossy_cobblestone", - "mosscobble": "mossy_cobblestone", - "mcobble": "mossy_cobblestone", - "mossy_cobblestone_wall": { - "material": "MOSSY_COBBLESTONE_WALL" - }, - "mossycobblestonewall": "mossy_cobblestone_wall", - "mosscobblestonewall": "mossy_cobblestone_wall", - "mcobblestonewall": "mossy_cobblestone_wall", - "mossycobblewall": "mossy_cobblestone_wall", - "mosscobblewall": "mossy_cobblestone_wall", - "mcobblewall": "mossy_cobblestone_wall", - "mossycstonewall": "mossy_cobblestone_wall", - "mosscstonewall": "mossy_cobblestone_wall", - "mcstonewall": "mossy_cobblestone_wall", - "mossycswall": "mossy_cobblestone_wall", - "mosscswall": "mossy_cobblestone_wall", - "mcswall": "mossy_cobblestone_wall", - "mossycwall": "mossy_cobblestone_wall", - "mosscwall": "mossy_cobblestone_wall", - "mcwall": "mossy_cobblestone_wall", - "mossycobblestonefence": "mossy_cobblestone_wall", - "mosscobblestonefence": "mossy_cobblestone_wall", - "mcobblestonefence": "mossy_cobblestone_wall", - "mossycobblefence": "mossy_cobblestone_wall", - "mosscobblefence": "mossy_cobblestone_wall", - "mcobblefence": "mossy_cobblestone_wall", - "mossycstonefence": "mossy_cobblestone_wall", - "mosscstonefence": "mossy_cobblestone_wall", - "mcstonefence": "mossy_cobblestone_wall", - "mossycsfence": "mossy_cobblestone_wall", - "mosscsfence": "mossy_cobblestone_wall", - "mcsfence": "mossy_cobblestone_wall", - "mossycfence": "mossy_cobblestone_wall", - "mosscfence": "mossy_cobblestone_wall", - "mcfence": "mossy_cobblestone_wall", - "mossystonewall": "mossy_cobblestone_wall", - "mossstonewall": "mossy_cobblestone_wall", - "mstonewall": "mossy_cobblestone_wall", - "mossyswall": "mossy_cobblestone_wall", - "mossswall": "mossy_cobblestone_wall", - "mswall": "mossy_cobblestone_wall", - "mossy_stone_bricks": { - "material": "MOSSY_STONE_BRICKS" - }, - "mossystonebricks": "mossy_stone_bricks", - "mossystonebrick": "mossy_stone_bricks", - "mossstonebrick": "mossy_stone_bricks", - "mstonebrick": "mossy_stone_bricks", - "mossystonebrickblock": "mossy_stone_bricks", - "mossstonebrickblock": "mossy_stone_bricks", - "mstonebrickblock": "mossy_stone_bricks", - "mossystonebb": "mossy_stone_bricks", - "mossstonebb": "mossy_stone_bricks", - "mstonebb": "mossy_stone_bricks", - "mossysbrick": "mossy_stone_bricks", - "mosssbrick": "mossy_stone_bricks", - "msbrick": "mossy_stone_bricks", - "mossysbricks": "mossy_stone_bricks", - "mosssbricks": "mossy_stone_bricks", - "msbricks": "mossy_stone_bricks", - "mossysbrickblock": "mossy_stone_bricks", - "mosssbrickblock": "mossy_stone_bricks", - "msbrickblock": "mossy_stone_bricks", - "mossstonebricks": "mossy_stone_bricks", - "mstonebricks": "mossy_stone_bricks", - "mossysbb": "mossy_stone_bricks", - "mosssbb": "mossy_stone_bricks", - "msbb": "mossy_stone_bricks", - "moving_piston": { - "material": "MOVING_PISTON", - "unspawnable": true - }, - "movingpiston": "moving_piston", - "mule_spawn_egg": { - "material": "MULE_SPAWN_EGG" - }, - "mulespawnegg": "mule_spawn_egg", - "muleegg": "mule_spawn_egg", - "eggmule": "mule_spawn_egg", - "spawneggmule": "mule_spawn_egg", - "mulespawn": "mule_spawn_egg", - "spawnmule": "mule_spawn_egg", - "mushroom_stem": { - "material": "MUSHROOM_STEM" - }, - "mushroomstem": "mushroom_stem", - "mushroom_stew": { - "material": "MUSHROOM_STEW" - }, - "mushroomstew": "mushroom_stew", - "music_disc_11": { - "material": "MUSIC_DISC_11" - }, - "musicdisc11": "music_disc_11", - "11musicrecord": "music_disc_11", - "crackedmusicrecord": "music_disc_11", - "crackmusicrecord": "music_disc_11", - "cmusicrecord": "music_disc_11", - "musicrecord11": "music_disc_11", - "11musicdisk": "music_disc_11", - "crackedmusicdisk": "music_disc_11", - "crackmusicdisk": "music_disc_11", - "cmusicdisk": "music_disc_11", - "musicdisk11": "music_disc_11", - "11musicdisc": "music_disc_11", - "crackedmusicdisc": "music_disc_11", - "crackmusicdisc": "music_disc_11", - "cmusicdisc": "music_disc_11", - "11musiccd": "music_disc_11", - "crackedmusiccd": "music_disc_11", - "crackmusiccd": "music_disc_11", - "cmusiccd": "music_disc_11", - "musiccd11": "music_disc_11", - "11mrecord": "music_disc_11", - "crackedmrecord": "music_disc_11", - "crackmrecord": "music_disc_11", - "cmrecord": "music_disc_11", - "mrecord11": "music_disc_11", - "11mdisk": "music_disc_11", - "crackedmdisk": "music_disc_11", - "crackmdisk": "music_disc_11", - "cmdisk": "music_disc_11", - "mdisk11": "music_disc_11", - "11mdisc": "music_disc_11", - "crackedmdisc": "music_disc_11", - "crackmdisc": "music_disc_11", - "cmdisc": "music_disc_11", - "mdisc11": "music_disc_11", - "11mcd": "music_disc_11", - "crackedmcd": "music_disc_11", - "crackmcd": "music_disc_11", - "cmcd": "music_disc_11", - "mcd11": "music_disc_11", - "11record": "music_disc_11", - "crackedrecord": "music_disc_11", - "crackrecord": "music_disc_11", - "crecord": "music_disc_11", - "record11": "music_disc_11", - "11disk": "music_disc_11", - "crackeddisk": "music_disc_11", - "crackdisk": "music_disc_11", - "cdisk": "music_disc_11", - "disk11": "music_disc_11", - "11disc": "music_disc_11", - "crackeddisc": "music_disc_11", - "crackdisc": "music_disc_11", - "cdisc": "music_disc_11", - "disc11": "music_disc_11", - "11cd": "music_disc_11", - "crackedcd": "music_disc_11", - "crackcd": "music_disc_11", - "ccd": "music_disc_11", - "cd11": "music_disc_11", - "music_disc_13": { - "material": "MUSIC_DISC_13" - }, - "musicdisc13": "music_disc_13", - "13musicrecord": "music_disc_13", - "goldmusicrecord": "music_disc_13", - "gomusicrecord": "music_disc_13", - "musicrecord1": "music_disc_13", - "1musicrecord": "music_disc_13", - "13musicdisk": "music_disc_13", - "goldmusicdisk": "music_disc_13", - "gomusicdisk": "music_disc_13", - "musicdisk1": "music_disc_13", - "1musicdisk": "music_disc_13", - "13musicdisc": "music_disc_13", - "goldmusicdisc": "music_disc_13", - "gomusicdisc": "music_disc_13", - "musicdisc1": "music_disc_13", - "1musicdisc": "music_disc_13", - "13musiccd": "music_disc_13", - "goldmusiccd": "music_disc_13", - "gomusiccd": "music_disc_13", - "musiccd1": "music_disc_13", - "1musiccd": "music_disc_13", - "13mrecord": "music_disc_13", - "goldmrecord": "music_disc_13", - "gomrecord": "music_disc_13", - "mrecord1": "music_disc_13", - "1mrecord": "music_disc_13", - "13mdisk": "music_disc_13", - "goldmdisk": "music_disc_13", - "gomdisk": "music_disc_13", - "mdisk1": "music_disc_13", - "1mdisk": "music_disc_13", - "13mdisc": "music_disc_13", - "goldmdisc": "music_disc_13", - "gomdisc": "music_disc_13", - "mdisc1": "music_disc_13", - "1mdisc": "music_disc_13", - "13mcd": "music_disc_13", - "goldmcd": "music_disc_13", - "gomcd": "music_disc_13", - "mcd1": "music_disc_13", - "1mcd": "music_disc_13", - "13record": "music_disc_13", - "goldrecord": "music_disc_13", - "gorecord": "music_disc_13", - "record1": "music_disc_13", - "1record": "music_disc_13", - "13disk": "music_disc_13", - "golddisk": "music_disc_13", - "godisk": "music_disc_13", - "disk1": "music_disc_13", - "1disk": "music_disc_13", - "13disc": "music_disc_13", - "golddisc": "music_disc_13", - "godisc": "music_disc_13", - "disc1": "music_disc_13", - "1disc": "music_disc_13", - "13cd": "music_disc_13", - "goldcd": "music_disc_13", - "gocd": "music_disc_13", - "cd1": "music_disc_13", - "1cd": "music_disc_13", - "music_disc_blocks": { - "material": "MUSIC_DISC_BLOCKS" - }, - "musicdiscblocks": "music_disc_blocks", - "blocksmusicrecord": "music_disc_blocks", - "orangemusicrecord": "music_disc_blocks", - "ormusicrecord": "music_disc_blocks", - "musicrecord3": "music_disc_blocks", - "3musicrecord": "music_disc_blocks", - "blocksmusicdisk": "music_disc_blocks", - "orangemusicdisk": "music_disc_blocks", - "ormusicdisk": "music_disc_blocks", - "musicdisk3": "music_disc_blocks", - "3musicdisk": "music_disc_blocks", - "blocksmusicdisc": "music_disc_blocks", - "orangemusicdisc": "music_disc_blocks", - "ormusicdisc": "music_disc_blocks", - "musicdisc3": "music_disc_blocks", - "3musicdisc": "music_disc_blocks", - "blocksmusiccd": "music_disc_blocks", - "orangemusiccd": "music_disc_blocks", - "ormusiccd": "music_disc_blocks", - "musiccd3": "music_disc_blocks", - "3musiccd": "music_disc_blocks", - "blocksmrecord": "music_disc_blocks", - "orangemrecord": "music_disc_blocks", - "ormrecord": "music_disc_blocks", - "mrecord3": "music_disc_blocks", - "3mrecord": "music_disc_blocks", - "blocksmdisk": "music_disc_blocks", - "orangemdisk": "music_disc_blocks", - "ormdisk": "music_disc_blocks", - "mdisk3": "music_disc_blocks", - "3mdisk": "music_disc_blocks", - "blocksmdisc": "music_disc_blocks", - "orangemdisc": "music_disc_blocks", - "ormdisc": "music_disc_blocks", - "mdisc3": "music_disc_blocks", - "3mdisc": "music_disc_blocks", - "blocksmcd": "music_disc_blocks", - "orangemcd": "music_disc_blocks", - "ormcd": "music_disc_blocks", - "mcd3": "music_disc_blocks", - "3mcd": "music_disc_blocks", - "blocksrecord": "music_disc_blocks", - "orangerecord": "music_disc_blocks", - "orrecord": "music_disc_blocks", - "record3": "music_disc_blocks", - "3record": "music_disc_blocks", - "blocksdisk": "music_disc_blocks", - "orangedisk": "music_disc_blocks", - "ordisk": "music_disc_blocks", - "disk3": "music_disc_blocks", - "3disk": "music_disc_blocks", - "blocksdisc": "music_disc_blocks", - "orangedisc": "music_disc_blocks", - "ordisc": "music_disc_blocks", - "disc3": "music_disc_blocks", - "3disc": "music_disc_blocks", - "blockscd": "music_disc_blocks", - "orangecd": "music_disc_blocks", - "orcd": "music_disc_blocks", - "cd3": "music_disc_blocks", - "3cd": "music_disc_blocks", - "music_disc_cat": { - "material": "MUSIC_DISC_CAT" - }, - "musicdisccat": "music_disc_cat", - "catmusicrecord": "music_disc_cat", - "greenmusicrecord": "music_disc_cat", - "grmusicrecord": "music_disc_cat", - "musicrecord2": "music_disc_cat", - "2musicrecord": "music_disc_cat", - "catmusicdisk": "music_disc_cat", - "greenmusicdisk": "music_disc_cat", - "grmusicdisk": "music_disc_cat", - "musicdisk2": "music_disc_cat", - "2musicdisk": "music_disc_cat", - "catmusicdisc": "music_disc_cat", - "greenmusicdisc": "music_disc_cat", - "grmusicdisc": "music_disc_cat", - "musicdisc2": "music_disc_cat", - "2musicdisc": "music_disc_cat", - "catmusiccd": "music_disc_cat", - "greenmusiccd": "music_disc_cat", - "grmusiccd": "music_disc_cat", - "musiccd2": "music_disc_cat", - "2musiccd": "music_disc_cat", - "catmrecord": "music_disc_cat", - "greenmrecord": "music_disc_cat", - "grmrecord": "music_disc_cat", - "mrecord2": "music_disc_cat", - "2mrecord": "music_disc_cat", - "catmdisk": "music_disc_cat", - "greenmdisk": "music_disc_cat", - "grmdisk": "music_disc_cat", - "mdisk2": "music_disc_cat", - "2mdisk": "music_disc_cat", - "catmdisc": "music_disc_cat", - "greenmdisc": "music_disc_cat", - "grmdisc": "music_disc_cat", - "mdisc2": "music_disc_cat", - "2mdisc": "music_disc_cat", - "catmcd": "music_disc_cat", - "greenmcd": "music_disc_cat", - "grmcd": "music_disc_cat", - "mcd2": "music_disc_cat", - "2mcd": "music_disc_cat", - "catrecord": "music_disc_cat", - "greenrecord": "music_disc_cat", - "grrecord": "music_disc_cat", - "record2": "music_disc_cat", - "2record": "music_disc_cat", - "catdisk": "music_disc_cat", - "greendisk": "music_disc_cat", - "grdisk": "music_disc_cat", - "disk2": "music_disc_cat", - "2disk": "music_disc_cat", - "catdisc": "music_disc_cat", - "greendisc": "music_disc_cat", - "grdisc": "music_disc_cat", - "disc2": "music_disc_cat", - "2disc": "music_disc_cat", - "catcd": "music_disc_cat", - "greencd": "music_disc_cat", - "grcd": "music_disc_cat", - "cd2": "music_disc_cat", - "2cd": "music_disc_cat", - "music_disc_chirp": { - "material": "MUSIC_DISC_CHIRP" - }, - "musicdiscchirp": "music_disc_chirp", - "chirpmusicrecord": "music_disc_chirp", - "redmusicrecord": "music_disc_chirp", - "remusicrecord": "music_disc_chirp", - "musicrecord4": "music_disc_chirp", - "4musicrecord": "music_disc_chirp", - "chirpmusicdisk": "music_disc_chirp", - "redmusicdisk": "music_disc_chirp", - "remusicdisk": "music_disc_chirp", - "musicdisk4": "music_disc_chirp", - "4musicdisk": "music_disc_chirp", - "chirpmusicdisc": "music_disc_chirp", - "redmusicdisc": "music_disc_chirp", - "remusicdisc": "music_disc_chirp", - "musicdisc4": "music_disc_chirp", - "4musicdisc": "music_disc_chirp", - "chirpmusiccd": "music_disc_chirp", - "redmusiccd": "music_disc_chirp", - "remusiccd": "music_disc_chirp", - "musiccd4": "music_disc_chirp", - "4musiccd": "music_disc_chirp", - "chirpmrecord": "music_disc_chirp", - "redmrecord": "music_disc_chirp", - "remrecord": "music_disc_chirp", - "mrecord4": "music_disc_chirp", - "4mrecord": "music_disc_chirp", - "chirpmdisk": "music_disc_chirp", - "redmdisk": "music_disc_chirp", - "remdisk": "music_disc_chirp", - "mdisk4": "music_disc_chirp", - "4mdisk": "music_disc_chirp", - "chirpmdisc": "music_disc_chirp", - "redmdisc": "music_disc_chirp", - "remdisc": "music_disc_chirp", - "mdisc4": "music_disc_chirp", - "4mdisc": "music_disc_chirp", - "chirpmcd": "music_disc_chirp", - "redmcd": "music_disc_chirp", - "remcd": "music_disc_chirp", - "mcd4": "music_disc_chirp", - "4mcd": "music_disc_chirp", - "chirprecord": "music_disc_chirp", - "redrecord": "music_disc_chirp", - "rerecord": "music_disc_chirp", - "record4": "music_disc_chirp", - "4record": "music_disc_chirp", - "chirpdisk": "music_disc_chirp", - "reddisk": "music_disc_chirp", - "redisk": "music_disc_chirp", - "disk4": "music_disc_chirp", - "4disk": "music_disc_chirp", - "chirpdisc": "music_disc_chirp", - "reddisc": "music_disc_chirp", - "redisc": "music_disc_chirp", - "disc4": "music_disc_chirp", - "4disc": "music_disc_chirp", - "chirpcd": "music_disc_chirp", - "redcd": "music_disc_chirp", - "recd": "music_disc_chirp", - "cd4": "music_disc_chirp", - "4cd": "music_disc_chirp", - "music_disc_far": { - "material": "MUSIC_DISC_FAR" - }, - "musicdiscfar": "music_disc_far", - "farmusicrecord": "music_disc_far", - "lightgreenmusicrecord": "music_disc_far", - "lgreenmusicrecord": "music_disc_far", - "lightgrmusicrecord": "music_disc_far", - "lgrmusicrecord": "music_disc_far", - "musicrecord5": "music_disc_far", - "5musicrecord": "music_disc_far", - "farmusicdisk": "music_disc_far", - "lightgreenmusicdisk": "music_disc_far", - "lgreenmusicdisk": "music_disc_far", - "lightgrmusicdisk": "music_disc_far", - "lgrmusicdisk": "music_disc_far", - "musicdisk5": "music_disc_far", - "5musicdisk": "music_disc_far", - "farmusicdisc": "music_disc_far", - "lightgreenmusicdisc": "music_disc_far", - "lgreenmusicdisc": "music_disc_far", - "lightgrmusicdisc": "music_disc_far", - "lgrmusicdisc": "music_disc_far", - "musicdisc5": "music_disc_far", - "5musicdisc": "music_disc_far", - "farmusiccd": "music_disc_far", - "lightgreenmusiccd": "music_disc_far", - "lgreenmusiccd": "music_disc_far", - "lightgrmusiccd": "music_disc_far", - "lgrmusiccd": "music_disc_far", - "musiccd5": "music_disc_far", - "5musiccd": "music_disc_far", - "farmrecord": "music_disc_far", - "lightgreenmrecord": "music_disc_far", - "lgreenmrecord": "music_disc_far", - "lightgrmrecord": "music_disc_far", - "lgrmrecord": "music_disc_far", - "mrecord5": "music_disc_far", - "5mrecord": "music_disc_far", - "farmdisk": "music_disc_far", - "lightgreenmdisk": "music_disc_far", - "lgreenmdisk": "music_disc_far", - "lightgrmdisk": "music_disc_far", - "lgrmdisk": "music_disc_far", - "mdisk5": "music_disc_far", - "5mdisk": "music_disc_far", - "farmdisc": "music_disc_far", - "lightgreenmdisc": "music_disc_far", - "lgreenmdisc": "music_disc_far", - "lightgrmdisc": "music_disc_far", - "lgrmdisc": "music_disc_far", - "mdisc5": "music_disc_far", - "5mdisc": "music_disc_far", - "farmcd": "music_disc_far", - "lightgreenmcd": "music_disc_far", - "lgreenmcd": "music_disc_far", - "lightgrmcd": "music_disc_far", - "lgrmcd": "music_disc_far", - "mcd5": "music_disc_far", - "5mcd": "music_disc_far", - "farrecord": "music_disc_far", - "lightgreenrecord": "music_disc_far", - "lgreenrecord": "music_disc_far", - "lightgrrecord": "music_disc_far", - "lgrrecord": "music_disc_far", - "record5": "music_disc_far", - "5record": "music_disc_far", - "fardisk": "music_disc_far", - "lightgreendisk": "music_disc_far", - "lgreendisk": "music_disc_far", - "lightgrdisk": "music_disc_far", - "lgrdisk": "music_disc_far", - "disk5": "music_disc_far", - "5disk": "music_disc_far", - "fardisc": "music_disc_far", - "lightgreendisc": "music_disc_far", - "lgreendisc": "music_disc_far", - "lightgrdisc": "music_disc_far", - "lgrdisc": "music_disc_far", - "disc5": "music_disc_far", - "5disc": "music_disc_far", - "farcd": "music_disc_far", - "lightgreencd": "music_disc_far", - "lgreencd": "music_disc_far", - "lightgrcd": "music_disc_far", - "lgrcd": "music_disc_far", - "cd5": "music_disc_far", - "5cd": "music_disc_far", - "music_disc_mall": { - "material": "MUSIC_DISC_MALL" - }, - "musicdiscmall": "music_disc_mall", - "mallmusicrecord": "music_disc_mall", - "purplemusicrecord": "music_disc_mall", - "pumusicrecord": "music_disc_mall", - "musicrecord6": "music_disc_mall", - "6musicrecord": "music_disc_mall", - "mallmusicdisk": "music_disc_mall", - "purplemusicdisk": "music_disc_mall", - "pumusicdisk": "music_disc_mall", - "musicdisk6": "music_disc_mall", - "6musicdisk": "music_disc_mall", - "mallmusicdisc": "music_disc_mall", - "purplemusicdisc": "music_disc_mall", - "pumusicdisc": "music_disc_mall", - "musicdisc6": "music_disc_mall", - "6musicdisc": "music_disc_mall", - "mallmusiccd": "music_disc_mall", - "purplemusiccd": "music_disc_mall", - "pumusiccd": "music_disc_mall", - "musiccd6": "music_disc_mall", - "6musiccd": "music_disc_mall", - "mallmrecord": "music_disc_mall", - "purplemrecord": "music_disc_mall", - "pumrecord": "music_disc_mall", - "mrecord6": "music_disc_mall", - "6mrecord": "music_disc_mall", - "mallmdisk": "music_disc_mall", - "purplemdisk": "music_disc_mall", - "pumdisk": "music_disc_mall", - "mdisk6": "music_disc_mall", - "6mdisk": "music_disc_mall", - "mallmdisc": "music_disc_mall", - "purplemdisc": "music_disc_mall", - "pumdisc": "music_disc_mall", - "mdisc6": "music_disc_mall", - "6mdisc": "music_disc_mall", - "mallmcd": "music_disc_mall", - "purplemcd": "music_disc_mall", - "pumcd": "music_disc_mall", - "mcd6": "music_disc_mall", - "6mcd": "music_disc_mall", - "mallrecord": "music_disc_mall", - "purplerecord": "music_disc_mall", - "purecord": "music_disc_mall", - "record6": "music_disc_mall", - "6record": "music_disc_mall", - "malldisk": "music_disc_mall", - "purpledisk": "music_disc_mall", - "pudisk": "music_disc_mall", - "disk6": "music_disc_mall", - "6disk": "music_disc_mall", - "malldisc": "music_disc_mall", - "purpledisc": "music_disc_mall", - "pudisc": "music_disc_mall", - "disc6": "music_disc_mall", - "6disc": "music_disc_mall", - "mallcd": "music_disc_mall", - "purplecd": "music_disc_mall", - "pucd": "music_disc_mall", - "cd6": "music_disc_mall", - "6cd": "music_disc_mall", - "music_disc_mellohi": { - "material": "MUSIC_DISC_MELLOHI" - }, - "musicdiscmellohi": "music_disc_mellohi", - "mellohimusicrecord": "music_disc_mellohi", - "pinkmusicrecord": "music_disc_mellohi", - "pimusicrecord": "music_disc_mellohi", - "musicrecord7": "music_disc_mellohi", - "7musicrecord": "music_disc_mellohi", - "mellohimusicdisk": "music_disc_mellohi", - "pinkmusicdisk": "music_disc_mellohi", - "pimusicdisk": "music_disc_mellohi", - "musicdisk7": "music_disc_mellohi", - "7musicdisk": "music_disc_mellohi", - "mellohimusicdisc": "music_disc_mellohi", - "pinkmusicdisc": "music_disc_mellohi", - "pimusicdisc": "music_disc_mellohi", - "musicdisc7": "music_disc_mellohi", - "7musicdisc": "music_disc_mellohi", - "mellohimusiccd": "music_disc_mellohi", - "pinkmusiccd": "music_disc_mellohi", - "pimusiccd": "music_disc_mellohi", - "musiccd7": "music_disc_mellohi", - "7musiccd": "music_disc_mellohi", - "mellohimrecord": "music_disc_mellohi", - "pinkmrecord": "music_disc_mellohi", - "pimrecord": "music_disc_mellohi", - "mrecord7": "music_disc_mellohi", - "7mrecord": "music_disc_mellohi", - "mellohimdisk": "music_disc_mellohi", - "pinkmdisk": "music_disc_mellohi", - "pimdisk": "music_disc_mellohi", - "mdisk7": "music_disc_mellohi", - "7mdisk": "music_disc_mellohi", - "mellohimdisc": "music_disc_mellohi", - "pinkmdisc": "music_disc_mellohi", - "pimdisc": "music_disc_mellohi", - "mdisc7": "music_disc_mellohi", - "7mdisc": "music_disc_mellohi", - "mellohimcd": "music_disc_mellohi", - "pinkmcd": "music_disc_mellohi", - "pimcd": "music_disc_mellohi", - "mcd7": "music_disc_mellohi", - "7mcd": "music_disc_mellohi", - "mellohirecord": "music_disc_mellohi", - "pinkrecord": "music_disc_mellohi", - "pirecord": "music_disc_mellohi", - "record7": "music_disc_mellohi", - "7record": "music_disc_mellohi", - "mellohidisk": "music_disc_mellohi", - "pinkdisk": "music_disc_mellohi", - "pidisk": "music_disc_mellohi", - "disk7": "music_disc_mellohi", - "7disk": "music_disc_mellohi", - "mellohidisc": "music_disc_mellohi", - "pinkdisc": "music_disc_mellohi", - "pidisc": "music_disc_mellohi", - "disc7": "music_disc_mellohi", - "7disc": "music_disc_mellohi", - "mellohicd": "music_disc_mellohi", - "pinkcd": "music_disc_mellohi", - "picd": "music_disc_mellohi", - "cd7": "music_disc_mellohi", - "7cd": "music_disc_mellohi", - "music_disc_stal": { - "material": "MUSIC_DISC_STAL" - }, - "musicdiscstal": "music_disc_stal", - "stalmusicrecord": "music_disc_stal", - "blackmusicrecord": "music_disc_stal", - "blmusicrecord": "music_disc_wait", - "musicrecord8": "music_disc_stal", - "8musicrecord": "music_disc_stal", - "stalmusicdisk": "music_disc_stal", - "blackmusicdisk": "music_disc_stal", - "blmusicdisk": "music_disc_wait", - "musicdisk8": "music_disc_stal", - "8musicdisk": "music_disc_stal", - "stalmusicdisc": "music_disc_stal", - "blackmusicdisc": "music_disc_stal", - "blmusicdisc": "music_disc_wait", - "musicdisc8": "music_disc_stal", - "8musicdisc": "music_disc_stal", - "stalmusiccd": "music_disc_stal", - "blackmusiccd": "music_disc_stal", - "blmusiccd": "music_disc_wait", - "musiccd8": "music_disc_stal", - "8musiccd": "music_disc_stal", - "stalmrecord": "music_disc_stal", - "blackmrecord": "music_disc_stal", - "blmrecord": "music_disc_wait", - "mrecord8": "music_disc_stal", - "8mrecord": "music_disc_stal", - "stalmdisk": "music_disc_stal", - "blackmdisk": "music_disc_stal", - "blmdisk": "music_disc_wait", - "mdisk8": "music_disc_stal", - "8mdisk": "music_disc_stal", - "stalmdisc": "music_disc_stal", - "blackmdisc": "music_disc_stal", - "blmdisc": "music_disc_wait", - "mdisc8": "music_disc_stal", - "8mdisc": "music_disc_stal", - "stalmcd": "music_disc_stal", - "blackmcd": "music_disc_stal", - "blmcd": "music_disc_wait", - "mcd8": "music_disc_stal", - "8mcd": "music_disc_stal", - "stalrecord": "music_disc_stal", - "blackrecord": "music_disc_stal", - "blrecord": "music_disc_wait", - "record8": "music_disc_stal", - "8record": "music_disc_stal", - "staldisk": "music_disc_stal", - "blackdisk": "music_disc_stal", - "bldisk": "music_disc_wait", - "disk8": "music_disc_stal", - "8disk": "music_disc_stal", - "staldisc": "music_disc_stal", - "blackdisc": "music_disc_stal", - "bldisc": "music_disc_wait", - "disc8": "music_disc_stal", - "8disc": "music_disc_stal", - "stalcd": "music_disc_stal", - "blackcd": "music_disc_stal", - "blcd": "music_disc_wait", - "cd8": "music_disc_stal", - "8cd": "music_disc_stal", - "music_disc_strad": { - "material": "MUSIC_DISC_STRAD" - }, - "musicdiscstrad": "music_disc_strad", - "stradmusicrecord": "music_disc_strad", - "whitemusicrecord": "music_disc_strad", - "whmusicrecord": "music_disc_strad", - "musicrecord9": "music_disc_strad", - "9musicrecord": "music_disc_strad", - "stradmusicdisk": "music_disc_strad", - "whitemusicdisk": "music_disc_strad", - "whmusicdisk": "music_disc_strad", - "musicdisk9": "music_disc_strad", - "9musicdisk": "music_disc_strad", - "stradmusicdisc": "music_disc_strad", - "whitemusicdisc": "music_disc_strad", - "whmusicdisc": "music_disc_strad", - "musicdisc9": "music_disc_strad", - "9musicdisc": "music_disc_strad", - "stradmusiccd": "music_disc_strad", - "whitemusiccd": "music_disc_strad", - "whmusiccd": "music_disc_strad", - "musiccd9": "music_disc_strad", - "9musiccd": "music_disc_strad", - "stradmrecord": "music_disc_strad", - "whitemrecord": "music_disc_strad", - "whmrecord": "music_disc_strad", - "mrecord9": "music_disc_strad", - "9mrecord": "music_disc_strad", - "stradmdisk": "music_disc_strad", - "whitemdisk": "music_disc_strad", - "whmdisk": "music_disc_strad", - "mdisk9": "music_disc_strad", - "9mdisk": "music_disc_strad", - "stradmdisc": "music_disc_strad", - "whitemdisc": "music_disc_strad", - "whmdisc": "music_disc_strad", - "mdisc9": "music_disc_strad", - "9mdisc": "music_disc_strad", - "stradmcd": "music_disc_strad", - "whitemcd": "music_disc_strad", - "whmcd": "music_disc_strad", - "mcd9": "music_disc_strad", - "9mcd": "music_disc_strad", - "stradrecord": "music_disc_strad", - "whiterecord": "music_disc_strad", - "whrecord": "music_disc_strad", - "record9": "music_disc_strad", - "9record": "music_disc_strad", - "straddisk": "music_disc_strad", - "whitedisk": "music_disc_strad", - "whdisk": "music_disc_strad", - "disk9": "music_disc_strad", - "9disk": "music_disc_strad", - "straddisc": "music_disc_strad", - "whitedisc": "music_disc_strad", - "whdisc": "music_disc_strad", - "disc9": "music_disc_strad", - "9disc": "music_disc_strad", - "stradcd": "music_disc_strad", - "whitecd": "music_disc_strad", - "whcd": "music_disc_strad", - "cd9": "music_disc_strad", - "9cd": "music_disc_strad", - "music_disc_wait": { - "material": "MUSIC_DISC_WAIT" - }, - "musicdiscwait": "music_disc_wait", - "waitmusicrecord": "music_disc_wait", - "bluemusicrecord": "music_disc_wait", - "cyanmusicrecord": "music_disc_wait", - "cymusicrecord": "music_disc_wait", - "musicrecord12": "music_disc_wait", - "12musicrecord": "music_disc_wait", - "waitmusicdisk": "music_disc_wait", - "bluemusicdisk": "music_disc_wait", - "cyanmusicdisk": "music_disc_wait", - "cymusicdisk": "music_disc_wait", - "musicdisk12": "music_disc_wait", - "12musicdisk": "music_disc_wait", - "waitmusicdisc": "music_disc_wait", - "bluemusicdisc": "music_disc_wait", - "cyanmusicdisc": "music_disc_wait", - "cymusicdisc": "music_disc_wait", - "musicdisc12": "music_disc_wait", - "12musicdisc": "music_disc_wait", - "waitmusiccd": "music_disc_wait", - "bluemusiccd": "music_disc_wait", - "cyanmusiccd": "music_disc_wait", - "cymusiccd": "music_disc_wait", - "musiccd12": "music_disc_wait", - "12musiccd": "music_disc_wait", - "waitmrecord": "music_disc_wait", - "bluemrecord": "music_disc_wait", - "cyanmrecord": "music_disc_wait", - "cymrecord": "music_disc_wait", - "mrecord12": "music_disc_wait", - "12mrecord": "music_disc_wait", - "waitmdisk": "music_disc_wait", - "bluemdisk": "music_disc_wait", - "cyanmdisk": "music_disc_wait", - "cymdisk": "music_disc_wait", - "mdisk12": "music_disc_wait", - "12mdisk": "music_disc_wait", - "waitmdisc": "music_disc_wait", - "bluemdisc": "music_disc_wait", - "cyanmdisc": "music_disc_wait", - "cymdisc": "music_disc_wait", - "mdisc12": "music_disc_wait", - "12mdisc": "music_disc_wait", - "waitmcd": "music_disc_wait", - "bluemcd": "music_disc_wait", - "cyanmcd": "music_disc_wait", - "cymcd": "music_disc_wait", - "mcd12": "music_disc_wait", - "12mcd": "music_disc_wait", - "waitrecord": "music_disc_wait", - "bluerecord": "music_disc_wait", - "cyanrecord": "music_disc_wait", - "cyrecord": "music_disc_wait", - "record12": "music_disc_wait", - "12record": "music_disc_wait", - "waitdisk": "music_disc_wait", - "bluedisk": "music_disc_wait", - "cyandisk": "music_disc_wait", - "cydisk": "music_disc_wait", - "disk12": "music_disc_wait", - "12disk": "music_disc_wait", - "waitdisc": "music_disc_wait", - "bluedisc": "music_disc_wait", - "cyandisc": "music_disc_wait", - "cydisc": "music_disc_wait", - "disc12": "music_disc_wait", - "12disc": "music_disc_wait", - "waitcd": "music_disc_wait", - "bluecd": "music_disc_wait", - "cyancd": "music_disc_wait", - "cycd": "music_disc_wait", - "cd12": "music_disc_wait", - "12cd": "music_disc_wait", - "music_disc_ward": { - "material": "MUSIC_DISC_WARD" - }, - "musicdiscward": "music_disc_ward", - "wardmusicrecord": "music_disc_ward", - "darkgreenmusicrecord": "music_disc_ward", - "dgreenmusicrecord": "music_disc_ward", - "darkgrmusicrecord": "music_disc_ward", - "dgrmusicrecord": "music_disc_ward", - "musicrecord10": "music_disc_ward", - "10musicrecord": "music_disc_ward", - "wardmusicdisk": "music_disc_ward", - "darkgreenmusicdisk": "music_disc_ward", - "dgreenmusicdisk": "music_disc_ward", - "darkgrmusicdisk": "music_disc_ward", - "dgrmusicdisk": "music_disc_ward", - "musicdisk10": "music_disc_ward", - "10musicdisk": "music_disc_ward", - "wardmusicdisc": "music_disc_ward", - "darkgreenmusicdisc": "music_disc_ward", - "dgreenmusicdisc": "music_disc_ward", - "darkgrmusicdisc": "music_disc_ward", - "dgrmusicdisc": "music_disc_ward", - "musicdisc10": "music_disc_ward", - "10musicdisc": "music_disc_ward", - "wardmusiccd": "music_disc_ward", - "darkgreenmusiccd": "music_disc_ward", - "dgreenmusiccd": "music_disc_ward", - "darkgrmusiccd": "music_disc_ward", - "dgrmusiccd": "music_disc_ward", - "musiccd10": "music_disc_ward", - "10musiccd": "music_disc_ward", - "wardmrecord": "music_disc_ward", - "darkgreenmrecord": "music_disc_ward", - "dgreenmrecord": "music_disc_ward", - "darkgrmrecord": "music_disc_ward", - "dgrmrecord": "music_disc_ward", - "mrecord10": "music_disc_ward", - "10mrecord": "music_disc_ward", - "wardmdisk": "music_disc_ward", - "darkgreenmdisk": "music_disc_ward", - "dgreenmdisk": "music_disc_ward", - "darkgrmdisk": "music_disc_ward", - "dgrmdisk": "music_disc_ward", - "mdisk10": "music_disc_ward", - "10mdisk": "music_disc_ward", - "wardmdisc": "music_disc_ward", - "darkgreenmdisc": "music_disc_ward", - "dgreenmdisc": "music_disc_ward", - "darkgrmdisc": "music_disc_ward", - "dgrmdisc": "music_disc_ward", - "mdisc10": "music_disc_ward", - "10mdisc": "music_disc_ward", - "wardmcd": "music_disc_ward", - "darkgreenmcd": "music_disc_ward", - "dgreenmcd": "music_disc_ward", - "darkgrmcd": "music_disc_ward", - "dgrmcd": "music_disc_ward", - "mcd10": "music_disc_ward", - "10mcd": "music_disc_ward", - "wardrecord": "music_disc_ward", - "darkgreenrecord": "music_disc_ward", - "dgreenrecord": "music_disc_ward", - "darkgrrecord": "music_disc_ward", - "dgrrecord": "music_disc_ward", - "record10": "music_disc_ward", - "10record": "music_disc_ward", - "warddisk": "music_disc_ward", - "darkgreendisk": "music_disc_ward", - "dgreendisk": "music_disc_ward", - "darkgrdisk": "music_disc_ward", - "dgrdisk": "music_disc_ward", - "disk10": "music_disc_ward", - "10disk": "music_disc_ward", - "warddisc": "music_disc_ward", - "darkgreendisc": "music_disc_ward", - "dgreendisc": "music_disc_ward", - "darkgrdisc": "music_disc_ward", - "dgrdisc": "music_disc_ward", - "disc10": "music_disc_ward", - "10disc": "music_disc_ward", - "wardcd": "music_disc_ward", - "darkgreencd": "music_disc_ward", - "dgreencd": "music_disc_ward", - "darkgrcd": "music_disc_ward", - "dgrcd": "music_disc_ward", - "cd10": "music_disc_ward", - "10cd": "music_disc_ward", - "mutton": { - "material": "MUTTON" - }, - "rawmutton": "mutton", - "rawsheepmeat": "mutton", - "ramutton": "mutton", - "rasheepmeat": "mutton", - "uncookedmutton": "mutton", - "uncookedsheepmeat": "mutton", - "plainmutton": "mutton", - "plainsheepmeat": "mutton", - "sheepmeat": "mutton", - "mycelium": { - "material": "MYCELIUM" - }, - "mycel": "mycelium", - "swampgrass": "mycelium", - "sgrass": "mycelium", - "mushroomgrass": "mycelium", - "mushgrass": "mycelium", - "name_tag": { - "material": "NAME_TAG" - }, - "nametag": "name_tag", - "nautilus_shell": { - "material": "NAUTILUS_SHELL" - }, - "nautilusshell": "nautilus_shell", - "netherrack": { - "material": "NETHERRACK" - }, - "nether_brick": { - "material": "NETHER_BRICK" - }, - "netherbrick": "nether_brick", - "nether_bricks": { - "material": "NETHER_BRICKS" - }, - "netherbricks": "nether_bricks", - "nether_brick_fence": { - "material": "NETHER_BRICK_FENCE" - }, - "netherbrickfence": "nether_brick_fence", - "nether_brick_slab": { - "material": "NETHER_BRICK_SLAB" - }, - "netherbrickslab": "nether_brick_slab", - "nether_brick_stairs": { - "material": "NETHER_BRICK_STAIRS" - }, - "netherbrickstairs": "nether_brick_stairs", - "nether_portal": { - "material": "NETHER_PORTAL", - "unspawnable": true - }, - "netherportal": "nether_portal", - "nether_quartz_ore": { - "material": "NETHER_QUARTZ_ORE" - }, - "netherquartzore": "nether_quartz_ore", - "netherquartzo": "nether_quartz_ore", - "orenetherquartz": "nether_quartz_ore", - "onetherquartz": "nether_quartz_ore", - "hellquartzore": "nether_quartz_ore", - "hellquartzo": "nether_quartz_ore", - "orehellquartz": "nether_quartz_ore", - "ohellquartz": "nether_quartz_ore", - "deathquartzore": "nether_quartz_ore", - "deathquartzo": "nether_quartz_ore", - "oredeathquartz": "nether_quartz_ore", - "odeathquartz": "nether_quartz_ore", - "nquartzore": "nether_quartz_ore", - "nquartzo": "nether_quartz_ore", - "orenquartz": "nether_quartz_ore", - "onquartz": "nether_quartz_ore", - "hquartzore": "nether_quartz_ore", - "hquartzo": "nether_quartz_ore", - "orehquartz": "nether_quartz_ore", - "ohquartz": "nether_quartz_ore", - "dquartzore": "nether_quartz_ore", - "dquartzo": "nether_quartz_ore", - "oredquartz": "nether_quartz_ore", - "odquartz": "nether_quartz_ore", - "quartzore": "nether_quartz_ore", - "quartzo": "nether_quartz_ore", - "orequartz": "nether_quartz_ore", - "oquartz": "nether_quartz_ore", - "netherqore": "nether_quartz_ore", - "netherqo": "nether_quartz_ore", - "orenetherq": "nether_quartz_ore", - "onetherq": "nether_quartz_ore", - "hellqore": "nether_quartz_ore", - "hellqo": "nether_quartz_ore", - "orehellq": "nether_quartz_ore", - "ohellq": "nether_quartz_ore", - "deathqore": "nether_quartz_ore", - "deathqo": "nether_quartz_ore", - "oredeathq": "nether_quartz_ore", - "odeathq": "nether_quartz_ore", - "nqore": "nether_quartz_ore", - "nqo": "nether_quartz_ore", - "orenq": "nether_quartz_ore", - "onq": "nether_quartz_ore", - "hqore": "nether_quartz_ore", - "hqo": "nether_quartz_ore", - "orehq": "nether_quartz_ore", - "ohq": "nether_quartz_ore", - "dqore": "nether_quartz_ore", - "dqo": "nether_quartz_ore", - "oredq": "nether_quartz_ore", - "odq": "nether_quartz_ore", - "qore": "nether_quartz_ore", - "qo": "nether_quartz_ore", - "oreq": "nether_quartz_ore", - "oq": "nether_quartz_ore", - "nether_star": { - "material": "NETHER_STAR" - }, - "netherstar": "nether_star", - "nether_wart": { - "material": "NETHER_WART" - }, - "netherwart": "nether_wart", - "nether_wart_block": { - "material": "NETHER_WART_BLOCK" - }, - "netherwartblock": "nether_wart_block", - "note_block": { - "material": "NOTE_BLOCK" - }, - "noteblock": "note_block", - "musicblock": "note_block", - "nblock": "note_block", - "mblock": "note_block", - "oak_boat": { - "material": "OAK_BOAT" - }, - "oakboat": "oak_boat", - "boat": "oak_boat", - "oboat": "oak_boat", - "oak_button": { - "material": "OAK_BUTTON" - }, - "oakbutton": "oak_button", - "oak_door": { - "material": "OAK_DOOR" - }, - "oakdoor": "oak_door", - "oak_fence": { - "material": "OAK_FENCE" - }, - "oakfence": "oak_fence", - "fence": "oak_fence", - "ofence": "oak_fence", - "oak_fence_gate": { - "material": "OAK_FENCE_GATE" - }, - "oakfencegate": "oak_fence_gate", - "fencegate": "oak_fence_gate", - "gate": "oak_fence_gate", - "oakgate": "oak_fence_gate", - "ofencegate": "oak_fence_gate", - "ogate": "oak_fence_gate", - "oak_leaves": { - "material": "OAK_LEAVES" - }, - "oakleaves": "oak_leaves", - "treeleaves": "oak_leaves", - "logleaves": "oak_leaves", - "trunkleaves": "oak_leaves", - "woodleaves": "oak_leaves", - "leaves": "oak_leaves", - "treeleaf": "oak_leaves", - "logleaf": "oak_leaves", - "trunkleaf": "oak_leaves", - "woodleaf": "oak_leaves", - "leaf": "oak_leaves", - "treeleave": "oak_leaves", - "logleave": "oak_leaves", - "trunkleave": "oak_leaves", - "woodleave": "oak_leaves", - "leave": "oak_leaves", - "oaktreeleaves": "oak_leaves", - "oaklogleaves": "oak_leaves", - "oaktrunkleaves": "oak_leaves", - "oakwoodleaves": "oak_leaves", - "oaktreeleaf": "oak_leaves", - "oaklogleaf": "oak_leaves", - "oaktrunkleaf": "oak_leaves", - "oakwoodleaf": "oak_leaves", - "oakleaf": "oak_leaves", - "oaktreeleave": "oak_leaves", - "oaklogleave": "oak_leaves", - "oaktrunkleave": "oak_leaves", - "oakwoodleave": "oak_leaves", - "oakleave": "oak_leaves", - "otreeleaves": "oak_leaves", - "ologleaves": "oak_leaves", - "otrunkleaves": "oak_leaves", - "owoodleaves": "oak_leaves", - "oleaves": "oak_leaves", - "otreeleaf": "oak_leaves", - "ologleaf": "oak_leaves", - "otrunkleaf": "oak_leaves", - "owoodleaf": "oak_leaves", - "oleaf": "oak_leaves", - "otreeleave": "oak_leaves", - "ologleave": "oak_leaves", - "otrunkleave": "oak_leaves", - "owoodleave": "oak_leaves", - "oleave": "oak_leaves", - "oak_log": { - "material": "OAK_LOG" - }, - "oaklog": "oak_log", - "": "oak_log", - "log": "oak_log", - "trunk": "oak_log", - "tree": "oak_log", - "oak": "oak_log", - "logoak": "oak_log", - "oaktrunk": "oak_log", - "oaktree": "oak_log", - "o": "oak_log", - "logo": "oak_log", - "otrunk": "oak_log", - "olog": "oak_log", - "otree": "oak_log", - "oak_planks": { - "material": "OAK_PLANKS" - }, - "oakplanks": "oak_planks", - "woodenplank": "oak_planks", - "woodplank": "oak_planks", - "plankwooden": "oak_planks", - "plankwood": "oak_planks", - "plankw": "oak_planks", - "plank": "oak_planks", - "oakwoodenplank": "oak_planks", - "oakwoodplank": "oak_planks", - "oakwplank": "oak_planks", - "oakplankwooden": "oak_planks", - "oakplankwood": "oak_planks", - "oakplankw": "oak_planks", - "oakplank": "oak_planks", - "owoodenplank": "oak_planks", - "owoodplank": "oak_planks", - "owplank": "oak_planks", - "oplankwooden": "oak_planks", - "oplankwood": "oak_planks", - "oplankw": "oak_planks", - "oplank": "oak_planks", - "oak_pressure_plate": { - "material": "OAK_PRESSURE_PLATE" - }, - "oakpressureplate": "oak_pressure_plate", - "pressureplate": "oak_pressure_plate", - "pressplate": "oak_pressure_plate", - "pplate": "spruce_pressure_plate", - "plate": "oak_pressure_plate", - "oakpressplate": "oak_pressure_plate", - "oakpplate": "oak_pressure_plate", - "oakplate": "oak_pressure_plate", - "opressureplate": "oak_pressure_plate", - "opressplate": "oak_pressure_plate", - "opplate": "oak_pressure_plate", - "oplate": "oak_pressure_plate", - "oak_sapling": { - "material": "OAK_SAPLING" - }, - "oaksapling": "oak_sapling", - "sapling": "oak_sapling", - "treesapling": "oak_sapling", - "logsapling": "oak_sapling", - "trunksapling": "oak_sapling", - "woodsapling": "oak_sapling", - "oaktreesapling": "oak_sapling", - "oaklogsapling": "oak_sapling", - "oaktrunksapling": "oak_sapling", - "oakwoodsapling": "oak_sapling", - "osapling": "oak_sapling", - "otreesapling": "oak_sapling", - "ologsapling": "oak_sapling", - "otrunksapling": "oak_sapling", - "owoodsapling": "oak_sapling", - "oak_slab": { - "material": "OAK_SLAB" - }, - "oakslab": "oak_slab", - "woodenstep": "petrified_oak_slab", - "woodstep": "petrified_oak_slab", - "step": "petrified_oak_slab", - "woodenslab": "petrified_oak_slab", - "woodslab": "petrified_oak_slab", - "wslab": "petrified_oak_slab", - "woodenhalfblock": "petrified_oak_slab", - "woodhalfblock": "petrified_oak_slab", - "halfblock": "petrified_oak_slab", - "oakwoodenstep": "petrified_oak_slab", - "oakwoodstep": "petrified_oak_slab", - "oakwstep": "petrified_oak_slab", - "oakstep": "petrified_oak_slab", - "oakwoodenslab": "petrified_oak_slab", - "oakwoodslab": "petrified_oak_slab", - "oakwslab": "petrified_oak_slab", - "oakwoodenhalfblock": "petrified_oak_slab", - "oakwoodhalfblock": "petrified_oak_slab", - "oakwhalfblock": "petrified_oak_slab", - "oakhalfblock": "petrified_oak_slab", - "owoodenstep": "petrified_oak_slab", - "owoodstep": "petrified_oak_slab", - "owstep": "petrified_oak_slab", - "ostep": "petrified_oak_slab", - "owoodenslab": "petrified_oak_slab", - "owoodslab": "petrified_oak_slab", - "owslab": "petrified_oak_slab", - "owoodenhalfblock": "petrified_oak_slab", - "owoodhalfblock": "petrified_oak_slab", - "owhalfblock": "petrified_oak_slab", - "ohalfblock": "petrified_oak_slab", - "oak_stairs": { - "material": "OAK_STAIRS" - }, - "oakstairs": "oak_stairs", - "woodenstairs": "oak_stairs", - "woodstairs": "oak_stairs", - "wstairs": "oak_stairs", - "woodenstair": "oak_stairs", - "woodstair": "oak_stairs", - "stair": "oak_stairs", - "oakwoodenstairs": "oak_stairs", - "oakwoodstairs": "oak_stairs", - "oakwstairs": "oak_stairs", - "oakwoodenstair": "oak_stairs", - "oakwoodstair": "oak_stairs", - "oakwstair": "oak_stairs", - "oakstair": "oak_stairs", - "owoodenstairs": "oak_stairs", - "owoodstairs": "oak_stairs", - "owstairs": "oak_stairs", - "owoodenstair": "oak_stairs", - "owoodstair": "oak_stairs", - "owstair": "oak_stairs", - "ostair": "oak_stairs", - "oak_trapdoor": { - "material": "OAK_TRAPDOOR" - }, - "oaktrapdoor": "oak_trapdoor", - "trapdoor": "oak_trapdoor", - "doortrap": "oak_trapdoor", - "hatch": "oak_trapdoor", - "tdoor": "oak_trapdoor", - "doort": "oak_trapdoor", - "trapd": "oak_trapdoor", - "dtrap": "oak_trapdoor", - "oakdoortrap": "oak_trapdoor", - "oakhatch": "oak_trapdoor", - "oaktdoor": "oak_trapdoor", - "oakdoort": "oak_trapdoor", - "oaktrapd": "oak_trapdoor", - "oakdtrap": "oak_trapdoor", - "otrapdoor": "oak_trapdoor", - "odoortrap": "oak_trapdoor", - "ohatch": "oak_trapdoor", - "otdoor": "oak_trapdoor", - "odoort": "oak_trapdoor", - "otrapd": "oak_trapdoor", - "odtrap": "oak_trapdoor", - "oak_wood": { - "material": "OAK_WOOD" - }, - "oakwood": "oak_wood", - "wood": "oak_wood", - "logall": "oak_wood", - "trunkall": "oak_wood", - "treeall": "oak_wood", - "oaklogall": "oak_wood", - "oaktrunkall": "oak_wood", - "oaktreeall": "oak_wood", - "owood": "oak_wood", - "ologall": "oak_wood", - "otrunkall": "oak_wood", - "otreeall": "oak_wood", - "observer": { - "material": "OBSERVER" - }, - "obsidian": { - "material": "OBSIDIAN" - }, - "obsi": "obsidian", - "obby": "obsidian", - "ocelot_spawn_egg": { - "material": "OCELOT_SPAWN_EGG" - }, - "ocelotspawnegg": "ocelot_spawn_egg", - "ocelotegg": "ocelot_spawn_egg", - "eggocelot": "ocelot_spawn_egg", - "spawneggocelot": "ocelot_spawn_egg", - "ocelotspawn": "ocelot_spawn_egg", - "spawnocelot": "ocelot_spawn_egg", - "categg": "ocelot_spawn_egg", - "eggcat": "ocelot_spawn_egg", - "catspawnegg": "ocelot_spawn_egg", - "spawneggcat": "ocelot_spawn_egg", - "catspawn": "ocelot_spawn_egg", - "spawncat": "ocelot_spawn_egg", - "orange_banner": { - "material": "ORANGE_BANNER" - }, - "orangebanner": "orange_banner", - "ostandingbanner": "orange_banner", - "obanner": "orange_banner", - "orangestandingbanner": "orange_banner", - "orange_bed": { - "material": "ORANGE_BED" - }, - "orangebed": "orange_bed", - "obed": "orange_bed", - "orange_carpet": { - "material": "ORANGE_CARPET" - }, - "orangecarpet": "orange_carpet", - "ocarpet": "orange_carpet", - "ofloor": "orange_carpet", - "orangefloor": "orange_carpet", - "orange_concrete": { - "material": "ORANGE_CONCRETE" - }, - "orangeconcrete": "orange_concrete", - "oconcrete": "orange_concrete", - "orange_concrete_powder": { - "material": "ORANGE_CONCRETE_POWDER" - }, - "orangeconcretepowder": "orange_concrete_powder", - "oconcretepowder": "orange_concrete_powder", - "oconcretesand": "orange_concrete_powder", - "ocpowder": "orange_concrete_powder", - "ocdust": "orange_concrete_powder", - "ocp": "orange_concrete_powder", - "orangeconcretesand": "orange_concrete_powder", - "orangecpowder": "orange_concrete_powder", - "orangecdust": "orange_concrete_powder", - "orangecp": "orange_concrete_powder", - "orange_dye": { - "material": "ORANGE_DYE" - }, - "orangedye": "orange_dye", - "orange_glazed_terracotta": { - "material": "ORANGE_GLAZED_TERRACOTTA" - }, - "orangeglazedterracotta": "orange_glazed_terracotta", - "oglazedtcota": "orange_glazed_terracotta", - "oglazedterra": "orange_glazed_terracotta", - "oglazedterracotta": "orange_glazed_terracotta", - "oglazedterracota": "orange_glazed_terracotta", - "orangeglazedtcota": "orange_glazed_terracotta", - "orangeglazedterra": "orange_glazed_terracotta", - "orangeglazedterracota": "orange_glazed_terracotta", - "orange_shulker_box": { - "material": "ORANGE_SHULKER_BOX" - }, - "orangeshulkerbox": "orange_shulker_box", - "oshulkerbox": "orange_shulker_box", - "ochest": "orange_shulker_box", - "orangechest": "orange_shulker_box", - "orange_stained_glass": { - "material": "ORANGE_STAINED_GLASS" - }, - "orangestainedglass": "orange_stained_glass", - "oglass": "orange_stained_glass", - "osglass": "orange_stained_glass", - "ostainedglass": "orange_stained_glass", - "orangeglass": "orange_stained_glass", - "orangesglass": "orange_stained_glass", - "orange_stained_glass_pane": { - "material": "ORANGE_STAINED_GLASS_PANE" - }, - "orangestainedglasspane": "orange_stained_glass_pane", - "oglasspane": "orange_stained_glass_pane", - "osglasspane": "orange_stained_glass_pane", - "ostainedglasspane": "orange_stained_glass_pane", - "ogpane": "orange_stained_glass_pane", - "orangeglasspane": "orange_stained_glass_pane", - "orangesglasspane": "orange_stained_glass_pane", - "orangegpane": "orange_stained_glass_pane", - "orange_terracotta": { - "material": "ORANGE_TERRACOTTA" - }, - "orangeterracotta": "orange_terracotta", - "oclay": "orange_terracotta", - "osclay": "orange_terracotta", - "ostainedclay": "orange_terracotta", - "oterra": "orange_terracotta", - "otcota": "orange_terracotta", - "oterracota": "orange_terracotta", - "oterracotta": "orange_terracotta", - "orangeclay": "orange_terracotta", - "orangesclay": "orange_terracotta", - "orangestainedclay": "orange_terracotta", - "orangeterra": "orange_terracotta", - "orangetcota": "orange_terracotta", - "orangeterracota": "orange_terracotta", - "orange_tulip": { - "material": "ORANGE_TULIP" - }, - "orangetulip": "orange_tulip", - "tuliporange": "orange_tulip", - "otulip": "orange_tulip", - "tulipo": "orange_tulip", - "orange_wall_banner": { - "material": "ORANGE_WALL_BANNER", - "unspawnable": true - }, - "orangewallbanner": "orange_wall_banner", - "orange_wool": { - "material": "ORANGE_WOOL" - }, - "orangewool": "orange_wool", - "owool": "orange_wool", - "ocloth": "orange_wool", - "ocotton": "orange_wool", - "orangecloth": "orange_wool", - "orangecotton": "orange_wool", - "oxeye_daisy": { - "material": "OXEYE_DAISY" - }, - "oxeyedaisy": "oxeye_daisy", - "oxeye": "oxeye_daisy", - "daisy": "oxeye_daisy", - "daisyoxeye": "oxeye_daisy", - "moondaisy": "oxeye_daisy", - "daisymoon": "oxeye_daisy", - "lightgrayoxeye": "oxeye_daisy", - "lgrayoxeye": "oxeye_daisy", - "lightgreyoxeye": "oxeye_daisy", - "lgreyoxeye": "oxeye_daisy", - "packed_ice": { - "material": "PACKED_ICE" - }, - "packedice": "packed_ice", - "painting": { - "material": "PAINTING" - }, - "paper": { - "material": "PAPER" - }, - "parrot_spawn_egg": { - "material": "PARROT_SPAWN_EGG" - }, - "parrotspawnegg": "parrot_spawn_egg", - "parrotegg": "parrot_spawn_egg", - "eggparrot": "parrot_spawn_egg", - "spawneggparrot": "parrot_spawn_egg", - "parrotspawn": "parrot_spawn_egg", - "spawnparrot": "parrot_spawn_egg", - "peony": { - "material": "PEONY" - }, - "petrified_oak_slab": { - "material": "PETRIFIED_OAK_SLAB" - }, - "petrifiedoakslab": "petrified_oak_slab", - "phantom_membrane": { - "material": "PHANTOM_MEMBRANE" - }, - "phantommembrane": "phantom_membrane", - "phantom_spawn_egg": { - "material": "PHANTOM_SPAWN_EGG" - }, - "phantomspawnegg": "phantom_spawn_egg", - "phantomegg": "phantom_spawn_egg", - "eggphantom": "phantom_spawn_egg", - "spawneggphantom": "phantom_spawn_egg", - "phantomspawn": "phantom_spawn_egg", - "spawnphantom": "phantom_spawn_egg", - "pig_spawn_egg": { - "material": "PIG_SPAWN_EGG" - }, - "pigspawnegg": "pig_spawn_egg", - "pigegg": "pig_spawn_egg", - "eggpig": "pig_spawn_egg", - "spawneggpig": "pig_spawn_egg", - "pigspawn": "pig_spawn_egg", - "spawnpig": "pig_spawn_egg", - "spawnegg": "pig_spawn_egg", - "spawn": "pig_spawn_egg", - "pink_banner": { - "material": "PINK_BANNER" - }, - "pinkbanner": "pink_banner", - "pistandingbanner": "pink_banner", - "pibanner": "pink_banner", - "pinkstandingbanner": "pink_banner", - "pink_bed": { - "material": "PINK_BED" - }, - "pinkbed": "pink_bed", - "pibed": "pink_bed", - "pink_carpet": { - "material": "PINK_CARPET" - }, - "pinkcarpet": "pink_carpet", - "picarpet": "pink_carpet", - "pifloor": "pink_carpet", - "pinkfloor": "pink_carpet", - "pink_concrete": { - "material": "PINK_CONCRETE" - }, - "pinkconcrete": "pink_concrete", - "piconcrete": "pink_concrete", - "pink_concrete_powder": { - "material": "PINK_CONCRETE_POWDER" - }, - "pinkconcretepowder": "pink_concrete_powder", - "piconcretepowder": "pink_concrete_powder", - "piconcretesand": "pink_concrete_powder", - "picpowder": "pink_concrete_powder", - "picdust": "pink_concrete_powder", - "picp": "pink_concrete_powder", - "pinkconcretesand": "pink_concrete_powder", - "pinkcpowder": "pink_concrete_powder", - "pinkcdust": "pink_concrete_powder", - "pinkcp": "pink_concrete_powder", - "pink_dye": { - "material": "PINK_DYE" - }, - "pinkdye": "pink_dye", - "pink_glazed_terracotta": { - "material": "PINK_GLAZED_TERRACOTTA" - }, - "pinkglazedterracotta": "pink_glazed_terracotta", - "piglazedtcota": "pink_glazed_terracotta", - "piglazedterra": "pink_glazed_terracotta", - "piglazedterracotta": "pink_glazed_terracotta", - "piglazedterracota": "pink_glazed_terracotta", - "pinkglazedtcota": "pink_glazed_terracotta", - "pinkglazedterra": "pink_glazed_terracotta", - "pinkglazedterracota": "pink_glazed_terracotta", - "pink_shulker_box": { - "material": "PINK_SHULKER_BOX" - }, - "pinkshulkerbox": "pink_shulker_box", - "pishulkerbox": "pink_shulker_box", - "pichest": "pink_shulker_box", - "pinkchest": "pink_shulker_box", - "pink_stained_glass": { - "material": "PINK_STAINED_GLASS" - }, - "pinkstainedglass": "pink_stained_glass", - "piglass": "pink_stained_glass", - "pisglass": "pink_stained_glass", - "pistainedglass": "pink_stained_glass", - "pinkglass": "pink_stained_glass", - "pinksglass": "pink_stained_glass", - "pink_stained_glass_pane": { - "material": "PINK_STAINED_GLASS_PANE" - }, - "pinkstainedglasspane": "pink_stained_glass_pane", - "piglasspane": "pink_stained_glass_pane", - "pisglasspane": "pink_stained_glass_pane", - "pistainedglasspane": "pink_stained_glass_pane", - "pigpane": "pink_stained_glass_pane", - "pinkglasspane": "pink_stained_glass_pane", - "pinksglasspane": "pink_stained_glass_pane", - "pinkgpane": "pink_stained_glass_pane", - "pink_terracotta": { - "material": "PINK_TERRACOTTA" - }, - "pinkterracotta": "pink_terracotta", - "piclay": "pink_terracotta", - "pisclay": "pink_terracotta", - "pistainedclay": "pink_terracotta", - "piterra": "pink_terracotta", - "pitcota": "pink_terracotta", - "piterracota": "pink_terracotta", - "piterracotta": "pink_terracotta", - "pinkclay": "pink_terracotta", - "pinksclay": "pink_terracotta", - "pinkstainedclay": "pink_terracotta", - "pinkterra": "pink_terracotta", - "pinktcota": "pink_terracotta", - "pinkterracota": "pink_terracotta", - "pink_tulip": { - "material": "PINK_TULIP" - }, - "pinktulip": "pink_tulip", - "tulippink": "pink_tulip", - "ptulip": "pink_tulip", - "tulipp": "pink_tulip", - "pink_wall_banner": { - "material": "PINK_WALL_BANNER", - "unspawnable": true - }, - "pinkwallbanner": "pink_wall_banner", - "pink_wool": { - "material": "PINK_WOOL" - }, - "pinkwool": "pink_wool", - "piwool": "pink_wool", - "picloth": "pink_wool", - "picotton": "pink_wool", - "pinkcloth": "pink_wool", - "pinkcotton": "pink_wool", - "piston": { - "material": "PISTON" - }, - "piston_head": { - "material": "PISTON_HEAD", - "unspawnable": true - }, - "pistonhead": "piston_head", - "player_head": { - "material": "PLAYER_HEAD" - }, - "playerhead": "player_head", - "head": "player_head", - "skull": "player_head", - "steve": "player_head", - "mask": "player_head", - "headmask": "player_head", - "playerskull": "player_head", - "headplayer": "player_head", - "steveplayer": "player_head", - "playermask": "player_head", - "playerheadmask": "player_head", - "phead": "player_head", - "pskull": "player_head", - "headp": "player_head", - "stevep": "player_head", - "pmask": "player_head", - "pheadmask": "player_head", - "stevehead": "player_head", - "steveskull": "player_head", - "headsteve": "player_head", - "stevesteve": "player_head", - "stevemask": "player_head", - "steveheadmask": "player_head", - "humanhead": "player_head", - "humanskull": "player_head", - "headhuman": "player_head", - "stevehuman": "player_head", - "humanmask": "player_head", - "humanheadmask": "player_head", - "player_wall_head": { - "material": "PLAYER_WALL_HEAD", - "unspawnable": true - }, - "playerwallhead": "player_wall_head", - "podzol": { - "material": "PODZOL" - }, - "poisonous_potato": { - "material": "POISONOUS_POTATO" - }, - "poisonouspotato": "poisonous_potato", - "polar_bear_spawn_egg": { - "material": "POLAR_BEAR_SPAWN_EGG" - }, - "polarbearspawnegg": "polar_bear_spawn_egg", - "polarbearegg": "polar_bear_spawn_egg", - "eggpolarbear": "polar_bear_spawn_egg", - "spawneggpolarbear": "polar_bear_spawn_egg", - "polarbearspawn": "polar_bear_spawn_egg", - "spawnpolarbear": "polar_bear_spawn_egg", - "polaregg": "polar_bear_spawn_egg", - "eggpolar": "polar_bear_spawn_egg", - "polarspawnegg": "polar_bear_spawn_egg", - "spawneggpolar": "polar_bear_spawn_egg", - "polarspawn": "polar_bear_spawn_egg", - "spawnpolar": "polar_bear_spawn_egg", - "bearegg": "polar_bear_spawn_egg", - "eggbear": "polar_bear_spawn_egg", - "bearspawnegg": "polar_bear_spawn_egg", - "spawneggbear": "polar_bear_spawn_egg", - "bearspawn": "polar_bear_spawn_egg", - "spawnbear": "polar_bear_spawn_egg", - "polished_andesite": { - "material": "POLISHED_ANDESITE" - }, - "polishedandesite": "polished_andesite", - "pandesite": "polished_andesite", - "pastone": "polished_andesite", - "polishedastone": "polished_andesite", - "polished_diorite": { - "material": "POLISHED_DIORITE" - }, - "polisheddiorite": "polished_diorite", - "pdiorite": "polished_diorite", - "pdstone": "polished_diorite", - "polisheddstone": "polished_diorite", - "polished_granite": { - "material": "POLISHED_GRANITE" - }, - "polishedgranite": "polished_granite", - "pgranite": "polished_granite", - "pgstone": "polished_granite", - "polishedgstone": "polished_granite", - "popped_chorus_fruit": { - "material": "POPPED_CHORUS_FRUIT" - }, - "poppedchorusfruit": "popped_chorus_fruit", - "pchorus": "popped_chorus_fruit", - "poppedchorus": "popped_chorus_fruit", - "popchorus": "popped_chorus_fruit", - "poppy": { - "material": "POPPY" - }, - "rose": "poppy", - "redrose": "poppy", - "rrose": "poppy", - "redflower": "poppy", - "rflower": "poppy", - "redpoppy": "poppy", - "porkchop": { - "material": "PORKCHOP" - }, - "rawpork": "porkchop", - "rawporkchop": "porkchop", - "rapork": "porkchop", - "raporkchop": "porkchop", - "uncookedpork": "porkchop", - "uncookedporkchop": "porkchop", - "plainpork": "porkchop", - "plainporkchop": "porkchop", - "pork": "porkchop", - "potato": { - "material": "POTATO" - }, - "potatoes": { - "material": "POTATOES", - "unspawnable": true - }, - "potion": { - "material": "POTION" - }, - "potted_acacia_sapling": { - "material": "POTTED_ACACIA_SAPLING", - "unspawnable": true - }, - "pottedacaciasapling": "potted_acacia_sapling", - "potted_allium": { - "material": "POTTED_ALLIUM", - "unspawnable": true - }, - "pottedallium": "potted_allium", - "potted_azure_bluet": { - "material": "POTTED_AZURE_BLUET", - "unspawnable": true - }, - "pottedazurebluet": "potted_azure_bluet", - "potted_birch_sapling": { - "material": "POTTED_BIRCH_SAPLING", - "unspawnable": true - }, - "pottedbirchsapling": "potted_birch_sapling", - "potted_blue_orchid": { - "material": "POTTED_BLUE_ORCHID", - "unspawnable": true - }, - "pottedblueorchid": "potted_blue_orchid", - "potted_brown_mushroom": { - "material": "POTTED_BROWN_MUSHROOM", - "unspawnable": true - }, - "pottedbrownmushroom": "potted_brown_mushroom", - "potted_cactus": { - "material": "POTTED_CACTUS", - "unspawnable": true - }, - "pottedcactus": "potted_cactus", - "potted_dandelion": { - "material": "POTTED_DANDELION", - "unspawnable": true - }, - "potteddandelion": "potted_dandelion", - "potted_dark_oak_sapling": { - "material": "POTTED_DARK_OAK_SAPLING", - "unspawnable": true - }, - "potteddarkoaksapling": "potted_dark_oak_sapling", - "potted_dead_bush": { - "material": "POTTED_DEAD_BUSH", - "unspawnable": true - }, - "potteddeadbush": "potted_dead_bush", - "potted_fern": { - "material": "POTTED_FERN", - "unspawnable": true - }, - "pottedfern": "potted_fern", - "potted_jungle_sapling": { - "material": "POTTED_JUNGLE_SAPLING", - "unspawnable": true - }, - "pottedjunglesapling": "potted_jungle_sapling", - "potted_oak_sapling": { - "material": "POTTED_OAK_SAPLING", - "unspawnable": true - }, - "pottedoaksapling": "potted_oak_sapling", - "potted_orange_tulip": { - "material": "POTTED_ORANGE_TULIP", - "unspawnable": true - }, - "pottedorangetulip": "potted_orange_tulip", - "potted_oxeye_daisy": { - "material": "POTTED_OXEYE_DAISY", - "unspawnable": true - }, - "pottedoxeyedaisy": "potted_oxeye_daisy", - "potted_pink_tulip": { - "material": "POTTED_PINK_TULIP", - "unspawnable": true - }, - "pottedpinktulip": "potted_pink_tulip", - "potted_poppy": { - "material": "POTTED_POPPY", - "unspawnable": true - }, - "pottedpoppy": "potted_poppy", - "potted_red_mushroom": { - "material": "POTTED_RED_MUSHROOM", - "unspawnable": true - }, - "pottedredmushroom": "potted_red_mushroom", - "potted_red_tulip": { - "material": "POTTED_RED_TULIP", - "unspawnable": true - }, - "pottedredtulip": "potted_red_tulip", - "potted_spruce_sapling": { - "material": "POTTED_SPRUCE_SAPLING", - "unspawnable": true - }, - "pottedsprucesapling": "potted_spruce_sapling", - "potted_white_tulip": { - "material": "POTTED_WHITE_TULIP", - "unspawnable": true - }, - "pottedwhitetulip": "potted_white_tulip", - "powered_rail": { - "material": "POWERED_RAIL" - }, - "poweredrail": "powered_rail", - "poweredrails": "powered_rail", - "poweredtrack": "powered_rail", - "boosterrails": "powered_rail", - "boosterrail": "powered_rail", - "boostertrack": "powered_rail", - "powerrails": "powered_rail", - "powerrail": "powered_rail", - "powertrack": "powered_rail", - "boostrails": "powered_rail", - "boostrail": "powered_rail", - "boosttrack": "powered_rail", - "prails": "powered_rail", - "prail": "powered_rail", - "ptrack": "powered_rail", - "brails": "powered_rail", - "brail": "powered_rail", - "btrack": "powered_rail", - "prismarine": { - "material": "PRISMARINE" - }, - "prismarine_bricks": { - "material": "PRISMARINE_BRICKS" - }, - "prismarinebricks": "prismarine_bricks", - "prismarinebrick": "prismarine_bricks", - "prismarinebr": "prismarine_bricks", - "prisbricks": "prismarine_bricks", - "prisbrick": "prismarine_bricks", - "prisbr": "prismarine_bricks", - "seabricks": "prismarine_bricks", - "seabrick": "prismarine_bricks", - "seabr": "prismarine_bricks", - "prismarine_brick_slab": { - "material": "PRISMARINE_BRICK_SLAB" - }, - "prismarinebrickslab": "prismarine_brick_slab", - "prismarinebricksslab": "prismarine_brick_slab", - "prismarinebrickssl": "prismarine_brick_slab", - "prismarinebricksl": "prismarine_brick_slab", - "prismarinebrslab": "prismarine_brick_slab", - "prismarinebrsl": "prismarine_brick_slab", - "prisbricksslab": "prismarine_brick_slab", - "prisbrickssl": "prismarine_brick_slab", - "prisbrickslab": "prismarine_brick_slab", - "prisbricksl": "prismarine_brick_slab", - "prisbrslab": "prismarine_brick_slab", - "prisbrsl": "prismarine_brick_slab", - "seabricksslab": "prismarine_brick_slab", - "seabrickssl": "prismarine_brick_slab", - "seabrickslab": "prismarine_brick_slab", - "seabricksl": "prismarine_brick_slab", - "seabrslab": "prismarine_brick_slab", - "seabrsl": "prismarine_brick_slab", - "prismarine_brick_stairs": { - "material": "PRISMARINE_BRICK_STAIRS" - }, - "prismarinebrickstairs": "prismarine_brick_stairs", - "prismarinebricksstairs": "prismarine_brick_stairs", - "prismarinebricksstair": "prismarine_brick_stairs", - "prismarinebricksst": "prismarine_brick_stairs", - "prismarinebrickstair": "prismarine_brick_stairs", - "prismarinebrickst": "prismarine_brick_stairs", - "prismarinebrstairs": "prismarine_brick_stairs", - "prismarinebrstair": "prismarine_brick_stairs", - "prismarinebrst": "prismarine_brick_stairs", - "prisbricksstairs": "prismarine_brick_stairs", - "prisbricksstair": "prismarine_brick_stairs", - "prisbricksst": "prismarine_brick_stairs", - "prisbrickstairs": "prismarine_brick_stairs", - "prisbrickstair": "prismarine_brick_stairs", - "prisbrickst": "prismarine_brick_stairs", - "prisbrstairs": "prismarine_brick_stairs", - "prisbrstair": "prismarine_brick_stairs", - "prisbrst": "prismarine_brick_stairs", - "seabricksstairs": "prismarine_brick_stairs", - "seabricksstair": "prismarine_brick_stairs", - "seabricksst": "prismarine_brick_stairs", - "seabrickstairs": "prismarine_brick_stairs", - "seabrickstair": "prismarine_brick_stairs", - "seabrickst": "prismarine_brick_stairs", - "seabrstairs": "prismarine_brick_stairs", - "seabrstair": "prismarine_brick_stairs", - "seabrst": "prismarine_brick_stairs", - "prismarine_crystals": { - "material": "PRISMARINE_CRYSTALS" - }, - "prismarinecrystals": "prismarine_crystals", - "prismarinecrystal": "prismarine_crystals", - "priscrystals": "prismarine_crystals", - "priscrystal": "prismarine_crystals", - "seacrystals": "prismarine_crystals", - "seacrystal": "prismarine_crystals", - "prismarine_shard": { - "material": "PRISMARINE_SHARD" - }, - "prismarineshard": "prismarine_shard", - "prismarinefragment": "prismarine_shard", - "prisshard": "prismarine_shard", - "prisfragment": "prismarine_shard", - "seashard": "prismarine_shard", - "seafragment": "prismarine_shard", - "prismarine_slab": { - "material": "PRISMARINE_SLAB" - }, - "prismarineslab": "prismarine_slab", - "prismarinesl": "prismarine_slab", - "prisslab": "prismarine_slab", - "prissl": "prismarine_slab", - "seaslab": "prismarine_slab", - "seasl": "prismarine_slab", - "prismarine_stairs": { - "material": "PRISMARINE_STAIRS" - }, - "prismarinestairs": "prismarine_stairs", - "prismarinestair": "prismarine_stairs", - "prismarinest": "prismarine_stairs", - "prisstairs": "prismarine_stairs", - "prisstair": "prismarine_stairs", - "prisst": "prismarine_stairs", - "seastairs": "prismarine_stairs", - "seastair": "prismarine_stairs", - "seast": "prismarine_stairs", - "pufferfish": { - "material": "PUFFERFISH" - }, - "rawpufferfish": "pufferfish", - "rawpufffish": "pufferfish", - "rawfishpuff": "pufferfish", - "rawpfish": "pufferfish", - "rawfishp": "pufferfish", - "rapufferfish": "pufferfish", - "rapufffish": "pufferfish", - "rafishpuff": "pufferfish", - "rapfish": "pufferfish", - "rafishp": "pufferfish", - "uncookedpufferfish": "pufferfish", - "uncookedpufffish": "pufferfish", - "uncookedfishpuff": "pufferfish", - "uncookedpfish": "pufferfish", - "uncookedfishp": "pufferfish", - "plainpufferfish": "pufferfish", - "plainpufffish": "pufferfish", - "plainfishpuff": "pufferfish", - "plainpfish": "pufferfish", - "plainfishp": "pufferfish", - "pufffish": "pufferfish", - "fishpuff": "pufferfish", - "pfish": "pufferfish", - "fishp": "pufferfish", - "pufferfish_bucket": { - "material": "PUFFERFISH_BUCKET" - }, - "pufferfishbucket": "pufferfish_bucket", - "pufferfishpail": "pufferfish_bucket", - "pufferbucket": "pufferfish_bucket", - "pufferpail": "pufferfish_bucket", - "pfishbucket": "pufferfish_bucket", - "pfishpail": "pufferfish_bucket", - "pufferfish_spawn_egg": { - "material": "PUFFERFISH_SPAWN_EGG" - }, - "pufferfishspawnegg": "pufferfish_spawn_egg", - "pufferfishegg": "pufferfish_spawn_egg", - "eggpufferfish": "pufferfish_spawn_egg", - "spawneggpufferfish": "pufferfish_spawn_egg", - "pufferfishspawn": "pufferfish_spawn_egg", - "spawnpufferfish": "pufferfish_spawn_egg", - "pufferegg": "pufferfish_spawn_egg", - "eggpuffer": "pufferfish_spawn_egg", - "pufferspawnegg": "pufferfish_spawn_egg", - "spawneggpuffer": "pufferfish_spawn_egg", - "pufferspawn": "pufferfish_spawn_egg", - "spawnpuffer": "pufferfish_spawn_egg", - "pfishegg": "pufferfish_spawn_egg", - "eggpfish": "pufferfish_spawn_egg", - "pfishspawnegg": "pufferfish_spawn_egg", - "spawneggpfish": "pufferfish_spawn_egg", - "pfishspawn": "pufferfish_spawn_egg", - "spawnpfish": "pufferfish_spawn_egg", - "pumpkin": { - "material": "PUMPKIN" - }, - "pumpkin_pie": { - "material": "PUMPKIN_PIE" - }, - "pumpkinpie": "pumpkin_pie", - "pumpkin_seeds": { - "material": "PUMPKIN_SEEDS" - }, - "pumpkinseeds": "pumpkin_seeds", - "pumpkin_stem": { - "material": "PUMPKIN_STEM", - "unspawnable": true - }, - "pumpkinstem": "pumpkin_stem", - "purple_banner": { - "material": "PURPLE_BANNER" - }, - "purplebanner": "purple_banner", - "pustandingbanner": "purple_banner", - "pubanner": "purple_banner", - "purplestandingbanner": "purple_banner", - "purple_bed": { - "material": "PURPLE_BED" - }, - "purplebed": "purple_bed", - "pubed": "purple_bed", - "purple_carpet": { - "material": "PURPLE_CARPET" - }, - "purplecarpet": "purple_carpet", - "pucarpet": "purple_carpet", - "pufloor": "purple_carpet", - "purplefloor": "purple_carpet", - "purple_concrete": { - "material": "PURPLE_CONCRETE" - }, - "purpleconcrete": "purple_concrete", - "puconcrete": "purple_concrete", - "purple_concrete_powder": { - "material": "PURPLE_CONCRETE_POWDER" - }, - "purpleconcretepowder": "purple_concrete_powder", - "puconcretepowder": "purple_concrete_powder", - "puconcretesand": "purple_concrete_powder", - "pucpowder": "purple_concrete_powder", - "pucdust": "purple_concrete_powder", - "pucp": "purple_concrete_powder", - "purpleconcretesand": "purple_concrete_powder", - "purplecpowder": "purple_concrete_powder", - "purplecdust": "purple_concrete_powder", - "purplecp": "purple_concrete_powder", - "purple_dye": { - "material": "PURPLE_DYE" - }, - "purpledye": "purple_dye", - "purple_glazed_terracotta": { - "material": "PURPLE_GLAZED_TERRACOTTA" - }, - "purpleglazedterracotta": "purple_glazed_terracotta", - "puglazedtcota": "purple_glazed_terracotta", - "puglazedterra": "purple_glazed_terracotta", - "puglazedterracotta": "purple_glazed_terracotta", - "puglazedterracota": "purple_glazed_terracotta", - "purpleglazedtcota": "purple_glazed_terracotta", - "purpleglazedterra": "purple_glazed_terracotta", - "purpleglazedterracota": "purple_glazed_terracotta", - "purple_shulker_box": { - "material": "PURPLE_SHULKER_BOX" - }, - "purpleshulkerbox": "purple_shulker_box", - "pushulkerbox": "purple_shulker_box", - "puchest": "purple_shulker_box", - "purplechest": "purple_shulker_box", - "purple_stained_glass": { - "material": "PURPLE_STAINED_GLASS" - }, - "purplestainedglass": "purple_stained_glass", - "puglass": "purple_stained_glass", - "pusglass": "purple_stained_glass", - "pustainedglass": "purple_stained_glass", - "purpleglass": "purple_stained_glass", - "purplesglass": "purple_stained_glass", - "purple_stained_glass_pane": { - "material": "PURPLE_STAINED_GLASS_PANE" - }, - "purplestainedglasspane": "purple_stained_glass_pane", - "puglasspane": "purple_stained_glass_pane", - "pusglasspane": "purple_stained_glass_pane", - "pustainedglasspane": "purple_stained_glass_pane", - "pugpane": "purple_stained_glass_pane", - "purpleglasspane": "purple_stained_glass_pane", - "purplesglasspane": "purple_stained_glass_pane", - "purplegpane": "purple_stained_glass_pane", - "purple_terracotta": { - "material": "PURPLE_TERRACOTTA" - }, - "purpleterracotta": "purple_terracotta", - "puclay": "purple_terracotta", - "pusclay": "purple_terracotta", - "pustainedclay": "purple_terracotta", - "puterra": "purple_terracotta", - "putcota": "purple_terracotta", - "puterracota": "purple_terracotta", - "puterracotta": "purple_terracotta", - "purpleclay": "purple_terracotta", - "purplesclay": "purple_terracotta", - "purplestainedclay": "purple_terracotta", - "purpleterra": "purple_terracotta", - "purpletcota": "purple_terracotta", - "purpleterracota": "purple_terracotta", - "purple_wall_banner": { - "material": "PURPLE_WALL_BANNER", - "unspawnable": true - }, - "purplewallbanner": "purple_wall_banner", - "purple_wool": { - "material": "PURPLE_WOOL" - }, - "purplewool": "purple_wool", - "puwool": "purple_wool", - "pucloth": "purple_wool", - "pucotton": "purple_wool", - "purplecloth": "purple_wool", - "purplecotton": "purple_wool", - "purpur_block": { - "material": "PURPUR_BLOCK" - }, - "purpurblock": "purpur_block", - "purpur_pillar": { - "material": "PURPUR_PILLAR" - }, - "purpurpillar": "purpur_pillar", - "purpur_slab": { - "material": "PURPUR_SLAB" - }, - "purpurslab": "purpur_slab", - "purpur_stairs": { - "material": "PURPUR_STAIRS" - }, - "purpurstairs": "purpur_stairs", - "quartz": { - "material": "QUARTZ" - }, - "quartz_block": { - "material": "QUARTZ_BLOCK" - }, - "quartzblock": "quartz_block", - "netherquartzblock": "quartz_block", - "nqblock": "quartz_block", - "qblock": "quartz_block", - "quartz_pillar": { - "material": "QUARTZ_PILLAR" - }, - "quartzpillar": "quartz_pillar", - "quartz_slab": { - "material": "QUARTZ_SLAB" - }, - "quartzslab": "quartz_slab", - "quartz_stairs": { - "material": "QUARTZ_STAIRS" - }, - "quartzstairs": "quartz_stairs", - "rabbit": { - "material": "RABBIT" - }, - "rawrabbit": "rabbit", - "rawhare": "rabbit", - "rawhasenpfeffer": "rabbit", - "rarabbit": "rabbit", - "rahare": "rabbit", - "rahasenpfeffer": "rabbit", - "uncookedrabbit": "rabbit", - "uncookedhare": "rabbit", - "uncookedhasenpfeffer": "rabbit", - "plainrabbit": "rabbit", - "plainhare": "rabbit", - "plainhasenpfeffer": "rabbit", - "hare": "rabbit", - "hasenpfeffer": "rabbit", - "rabbit_foot": { - "material": "RABBIT_FOOT" - }, - "rabbitfoot": "rabbit_foot", - "rabbit_hide": { - "material": "RABBIT_HIDE" - }, - "rabbithide": "rabbit_hide", - "rabbit_spawn_egg": { - "material": "RABBIT_SPAWN_EGG" - }, - "rabbitspawnegg": "rabbit_spawn_egg", - "rabbitegg": "rabbit_spawn_egg", - "eggrabbit": "rabbit_spawn_egg", - "spawneggrabbit": "rabbit_spawn_egg", - "rabbitspawn": "rabbit_spawn_egg", - "spawnrabbit": "rabbit_spawn_egg", - "rabbit_stew": { - "material": "RABBIT_STEW" - }, - "rabbitstew": "rabbit_stew", - "rail": { - "material": "RAIL" - }, - "rails": "rail", - "track": "rail", - "minecartrails": "rail", - "minecartrail": "rail", - "minecarttrack": "rail", - "mcartrails": "rail", - "mcartrail": "rail", - "mcarttrack": "rail", - "mcrails": "rail", - "mcrail": "rail", - "mctrack": "rail", - "redstone": { - "material": "REDSTONE" - }, - "redstone_block": { - "material": "REDSTONE_BLOCK" - }, - "redstoneblock": "redstone_block", - "blockredstone": "redstone_block", - "redsblock": "redstone_block", - "blockreds": "redstone_block", - "redblock": "redstone_block", - "blockred": "redstone_block", - "rstoneblock": "redstone_block", - "blockrstone": "redstone_block", - "rsblock": "redstone_block", - "blockrs": "redstone_block", - "rblock": "redstone_block", - "blockr": "redstone_block", - "redstone_lamp": { - "material": "REDSTONE_LAMP" - }, - "redstonelamp": "redstone_lamp", - "redstone_ore": { - "material": "REDSTONE_ORE" - }, - "redstoneore": "redstone_ore", - "redstoneo": "redstone_ore", - "oreredstone": "redstone_ore", - "oredstone": "redstone_ore", - "redsore": "redstone_ore", - "redso": "redstone_ore", - "orereds": "redstone_ore", - "oreds": "redstone_ore", - "redore": "redstone_ore", - "redo": "redstone_ore", - "orered": "redstone_ore", - "rstoneore": "redstone_ore", - "rstoneo": "redstone_ore", - "orerstone": "redstone_ore", - "orstone": "redstone_ore", - "rsore": "redstone_ore", - "rso": "redstone_ore", - "orers": "redstone_ore", - "ors": "redstone_ore", - "rore": "redstone_ore", - "ro": "redstone_ore", - "orer": "redstone_ore", - "or": "redstone_ore", - "redstone_torch": { - "material": "REDSTONE_TORCH" - }, - "redstonetorch": "redstone_torch", - "rstonetorch": "redstone_torch", - "redstorch": "redstone_torch", - "redtorch": "redstone_torch", - "rstorch": "redstone_torch", - "redstone_wall_torch": { - "material": "REDSTONE_WALL_TORCH", - "unspawnable": true - }, - "redstonewalltorch": "redstone_wall_torch", - "redstone_wire": { - "material": "REDSTONE_WIRE", - "unspawnable": true - }, - "redstonewire": "redstone_wire", - "red_banner": { - "material": "RED_BANNER" - }, - "redbanner": "red_banner", - "rstandingbanner": "red_banner", - "rbanner": "red_banner", - "redstandingbanner": "red_banner", - "red_bed": { - "material": "RED_BED" - }, - "redbed": "red_bed", - "rbed": "red_bed", - "red_carpet": { - "material": "RED_CARPET" - }, - "redcarpet": "red_carpet", - "rcarpet": "red_carpet", - "rfloor": "red_carpet", - "redfloor": "red_carpet", - "red_concrete": { - "material": "RED_CONCRETE" - }, - "redconcrete": "red_concrete", - "rconcrete": "red_concrete", - "red_concrete_powder": { - "material": "RED_CONCRETE_POWDER" - }, - "redconcretepowder": "red_concrete_powder", - "rconcretepowder": "red_concrete_powder", - "rconcretesand": "red_concrete_powder", - "rcpowder": "red_concrete_powder", - "rcdust": "red_concrete_powder", - "rcp": "red_concrete_powder", - "redconcretesand": "red_concrete_powder", - "redcpowder": "red_concrete_powder", - "redcdust": "red_concrete_powder", - "redcp": "red_concrete_powder", - "red_glazed_terracotta": { - "material": "RED_GLAZED_TERRACOTTA" - }, - "redglazedterracotta": "red_glazed_terracotta", - "rglazedtcota": "red_glazed_terracotta", - "rglazedterra": "red_glazed_terracotta", - "rglazedterracotta": "red_glazed_terracotta", - "rglazedterracota": "red_glazed_terracotta", - "redglazedtcota": "red_glazed_terracotta", - "redglazedterra": "red_glazed_terracotta", - "redglazedterracota": "red_glazed_terracotta", - "red_mushroom": { - "material": "RED_MUSHROOM" - }, - "redmushroom": "red_mushroom", - "redmush": "red_mushroom", - "redshroom": "red_mushroom", - "rmushroom": "red_mushroom", - "rmush": "red_mushroom", - "rshroom": "red_mushroom", - "red_mushroom_block": { - "material": "RED_MUSHROOM_BLOCK" - }, - "redmushroomblock": "red_mushroom_block", - "giantredmushroom": "red_mushroom_block", - "giantredmush": "red_mushroom_block", - "gredmushroom": "red_mushroom_block", - "gredmush": "red_mushroom_block", - "hugeredmushroom": "red_mushroom_block", - "hugeredmush": "red_mushroom_block", - "hredmushroom": "red_mushroom_block", - "hredmush": "red_mushroom_block", - "bigredmushroom": "red_mushroom_block", - "bigredmush": "red_mushroom_block", - "bredmushroom": "red_mushroom_block", - "bredmush": "red_mushroom_block", - "giantrmushroom": "red_mushroom_block", - "giantrmush": "red_mushroom_block", - "grmushroom": "red_mushroom_block", - "grmush": "red_mushroom_block", - "hugermushroom": "red_mushroom_block", - "hugermush": "red_mushroom_block", - "hrmushroom": "red_mushroom_block", - "hrmush": "red_mushroom_block", - "bigrmushroom": "red_mushroom_block", - "bigrmush": "red_mushroom_block", - "brmushroom": "red_mushroom_block", - "brmush": "red_mushroom_block", - "red_nether_bricks": { - "material": "RED_NETHER_BRICKS" - }, - "rednetherbricks": "red_nether_bricks", - "red_sand": { - "material": "RED_SAND" - }, - "redsand": "red_sand", - "rsand": "red_sand", - "red_sandstone": { - "material": "RED_SANDSTONE" - }, - "redsandstone": "red_sandstone", - "rsstone": "red_sandstone", - "rsandstone": "red_sandstone", - "rsandst": "red_sandstone", - "rsastone": "red_sandstone", - "red_sandstone_slab": { - "material": "RED_SANDSTONE_SLAB" - }, - "redsandstoneslab": "red_sandstone_slab", - "redsandstonesl": "red_sandstone_slab", - "rsandstoneslab": "red_sandstone_slab", - "rsandstonesl": "red_sandstone_slab", - "rsandstslab": "red_sandstone_slab", - "rsandstsl": "red_sandstone_slab", - "rsastoneslab": "red_sandstone_slab", - "rsastonesl": "red_sandstone_slab", - "red_sandstone_stairs": { - "material": "RED_SANDSTONE_STAIRS" - }, - "redsandstonestairs": "red_sandstone_stairs", - "redsandstonestair": "red_sandstone_stairs", - "redsandstonest": "red_sandstone_stairs", - "rsandstonestair": "red_sandstone_stairs", - "rsandstonestairs": "red_sandstone_stairs", - "rsandstonest": "red_sandstone_stairs", - "rsandststair": "red_sandstone_stairs", - "rsandststairs": "red_sandstone_stairs", - "rsandstst": "red_sandstone_stairs", - "rsastonestair": "red_sandstone_stairs", - "rsastonestairs": "red_sandstone_stairs", - "rsastonest": "red_sandstone_stairs", - "red_shulker_box": { - "material": "RED_SHULKER_BOX" - }, - "redshulkerbox": "red_shulker_box", - "rshulkerbox": "red_shulker_box", - "rchest": "red_shulker_box", - "redchest": "red_shulker_box", - "red_stained_glass": { - "material": "RED_STAINED_GLASS" - }, - "redstainedglass": "red_stained_glass", - "rglass": "red_stained_glass", - "rsglass": "red_stained_glass", - "rstainedglass": "red_stained_glass", - "redglass": "red_stained_glass", - "redsglass": "red_stained_glass", - "red_stained_glass_pane": { - "material": "RED_STAINED_GLASS_PANE" - }, - "redstainedglasspane": "red_stained_glass_pane", - "rglasspane": "red_stained_glass_pane", - "rsglasspane": "red_stained_glass_pane", - "rstainedglasspane": "red_stained_glass_pane", - "rgpane": "red_stained_glass_pane", - "redglasspane": "red_stained_glass_pane", - "redsglasspane": "red_stained_glass_pane", - "redgpane": "red_stained_glass_pane", - "red_terracotta": { - "material": "RED_TERRACOTTA" - }, - "redterracotta": "red_terracotta", - "rclay": "red_terracotta", - "rsclay": "red_terracotta", - "rstainedclay": "red_terracotta", - "rterra": "red_terracotta", - "rtcota": "red_terracotta", - "rterracota": "red_terracotta", - "rterracotta": "red_terracotta", - "redclay": "red_terracotta", - "redsclay": "red_terracotta", - "redstainedclay": "red_terracotta", - "redterra": "red_terracotta", - "redtcota": "red_terracotta", - "redterracota": "red_terracotta", - "red_tulip": { - "material": "RED_TULIP" - }, - "redtulip": "red_tulip", - "tulipred": "red_tulip", - "rtulip": "red_tulip", - "tulipr": "red_tulip", - "red_wall_banner": { - "material": "RED_WALL_BANNER", - "unspawnable": true - }, - "redwallbanner": "red_wall_banner", - "red_wool": { - "material": "RED_WOOL" - }, - "redwool": "red_wool", - "rwool": "red_wool", - "rcloth": "red_wool", - "rcotton": "red_wool", - "redcloth": "red_wool", - "redcotton": "red_wool", - "repeater": { - "material": "REPEATER" - }, - "repeating_command_block": { - "material": "REPEATING_COMMAND_BLOCK" - }, - "repeatingcommandblock": "repeating_command_block", - "rose_bush": { - "material": "ROSE_BUSH" - }, - "rosebush": "rose_bush", - "rose_red": { - "material": "ROSE_RED" - }, - "rosered": "rose_red", - "rotten_flesh": { - "material": "ROTTEN_FLESH" - }, - "rottenflesh": "rotten_flesh", - "saddle": { - "material": "SADDLE" - }, - "salmon": { - "material": "SALMON" - }, - "rawsalmon": "salmon", - "rawsalmonfish": "salmon", - "rawsfish": "salmon", - "rawfishs": "salmon", - "rasalmon": "salmon", - "rasalmonfish": "salmon", - "rasfish": "salmon", - "rafishs": "salmon", - "uncookedsalmon": "salmon", - "uncookedsalmonfish": "salmon", - "uncookedsfish": "salmon", - "uncookedfishs": "salmon", - "plainsalmon": "salmon", - "plainsalmonfish": "salmon", - "plainsfish": "salmon", - "plainfishs": "salmon", - "salmonfish": "salmon", - "sfish": "salmon", - "fishs": "salmon", - "salmon_bucket": { - "material": "SALMON_BUCKET" - }, - "salmonbucket": "salmon_bucket", - "salmonpail": "salmon_bucket", - "salmon_spawn_egg": { - "material": "SALMON_SPAWN_EGG" - }, - "salmonspawnegg": "salmon_spawn_egg", - "salmonegg": "salmon_spawn_egg", - "eggsalmon": "salmon_spawn_egg", - "spawneggsalmon": "salmon_spawn_egg", - "salmonspawn": "salmon_spawn_egg", - "spawnsalmon": "salmon_spawn_egg", - "sand": { - "material": "SAND" - }, - "sandstone": { - "material": "SANDSTONE" - }, - "sastone": "sandstone", - "sandst": "sandstone", - "sandstone_slab": { - "material": "SANDSTONE_SLAB" - }, - "sandstoneslab": "sandstone_slab", - "sandstonesl": "sandstone_slab", - "sandstslab": "sandstone_slab", - "sandstsl": "sandstone_slab", - "sastoneslab": "sandstone_slab", - "sastonesl": "sandstone_slab", - "sandstone_stairs": { - "material": "SANDSTONE_STAIRS" - }, - "sandstonestairs": "sandstone_stairs", - "sandstonestair": "sandstone_stairs", - "sandstonest": "sandstone_stairs", - "sandststair": "sandstone_stairs", - "sandststairs": "sandstone_stairs", - "sandstst": "sandstone_stairs", - "sastonestair": "sandstone_stairs", - "sastonestairs": "sandstone_stairs", - "sastonest": "sandstone_stairs", - "scute": { - "material": "SCUTE" - }, - "seagrass": { - "material": "SEAGRASS" - }, - "sea_lantern": { - "material": "SEA_LANTERN" - }, - "sealantern": "sea_lantern", - "sea_pickle": { - "material": "SEA_PICKLE" - }, - "seapickle": "sea_pickle", - "shears": { - "material": "SHEARS" - }, - "sheep_spawn_egg": { - "material": "SHEEP_SPAWN_EGG" - }, - "sheepspawnegg": "sheep_spawn_egg", - "sheepegg": "sheep_spawn_egg", - "eggsheep": "sheep_spawn_egg", - "spawneggsheep": "sheep_spawn_egg", - "sheepspawn": "sheep_spawn_egg", - "spawnsheep": "sheep_spawn_egg", - "shield": { - "material": "SHIELD" - }, - "handshield": "shield", - "woodshield": "shield", - "woodenshield": "shield", - "shulker_box": { - "material": "SHULKER_BOX" - }, - "shulkerbox": "white_shulker_box", - "shulker_shell": { - "material": "SHULKER_SHELL" - }, - "shulkershell": "shulker_shell", - "shulker_spawn_egg": { - "material": "SHULKER_SPAWN_EGG" - }, - "shulkerspawnegg": "shulker_spawn_egg", - "shulkeregg": "shulker_spawn_egg", - "eggshulker": "shulker_spawn_egg", - "spawneggshulker": "shulker_spawn_egg", - "shulkerspawn": "shulker_spawn_egg", - "spawnshulker": "shulker_spawn_egg", - "shulkegg": "shulker_spawn_egg", - "eggshulk": "shulker_spawn_egg", - "shulkspawnegg": "shulker_spawn_egg", - "spawneggshulk": "shulker_spawn_egg", - "shulkspawn": "shulker_spawn_egg", - "spawnshulk": "shulker_spawn_egg", - "sign": { - "material": "SIGN" - }, - "silverfish_spawn_egg": { - "material": "SILVERFISH_SPAWN_EGG" - }, - "silverfishspawnegg": "silverfish_spawn_egg", - "silverfishegg": "silverfish_spawn_egg", - "eggsilverfish": "silverfish_spawn_egg", - "spawneggsilverfish": "silverfish_spawn_egg", - "silverfishspawn": "silverfish_spawn_egg", - "spawnsilverfish": "silverfish_spawn_egg", - "skeleton_horse_spawn_egg": { - "material": "SKELETON_HORSE_SPAWN_EGG" - }, - "skeletonhorsespawnegg": "skeleton_horse_spawn_egg", - "skeletonhorseegg": "skeleton_horse_spawn_egg", - "eggskeletonhorse": "skeleton_horse_spawn_egg", - "spawneggskeletonhorse": "skeleton_horse_spawn_egg", - "skeletonhorsespawn": "skeleton_horse_spawn_egg", - "spawnskeletonhorse": "skeleton_horse_spawn_egg", - "shorseegg": "skeleton_horse_spawn_egg", - "eggshorse": "skeleton_horse_spawn_egg", - "shorsespawnegg": "skeleton_horse_spawn_egg", - "spawneggshorse": "skeleton_horse_spawn_egg", - "shorsespawn": "skeleton_horse_spawn_egg", - "spawnshorse": "skeleton_horse_spawn_egg", - "bonehorseegg": "skeleton_horse_spawn_egg", - "eggbonehorse": "skeleton_horse_spawn_egg", - "bonehorsespawnegg": "skeleton_horse_spawn_egg", - "spawneggbonehorse": "skeleton_horse_spawn_egg", - "bonehorsespawn": "skeleton_horse_spawn_egg", - "spawnbonehorse": "skeleton_horse_spawn_egg", - "skeleton_skull": { - "material": "SKELETON_SKULL" - }, - "skeletonskull": "skeleton_skull", - "skeletonhead": "skeleton_skull", - "headskeleton": "skeleton_skull", - "steveskeleton": "skeleton_skull", - "skeletonmask": "skeleton_skull", - "skeletonheadmask": "skeleton_skull", - "skhead": "skeleton_skull", - "skskull": "skeleton_skull", - "headsk": "skeleton_skull", - "stevesk": "skeleton_skull", - "skmask": "skeleton_skull", - "skheadmask": "skeleton_skull", - "skeleton_spawn_egg": { - "material": "SKELETON_SPAWN_EGG" - }, - "skeletonspawnegg": "skeleton_spawn_egg", - "skeletonegg": "skeleton_spawn_egg", - "eggskeleton": "skeleton_spawn_egg", - "spawneggskeleton": "skeleton_spawn_egg", - "skeletonspawn": "skeleton_spawn_egg", - "spawnskeleton": "skeleton_spawn_egg", - "skegg": "skeleton_spawn_egg", - "eggsk": "skeleton_spawn_egg", - "skspawnegg": "skeleton_spawn_egg", - "spawneggsk": "skeleton_spawn_egg", - "skspawn": "skeleton_spawn_egg", - "spawnsk": "skeleton_spawn_egg", - "skeleton_wall_skull": { - "material": "SKELETON_WALL_SKULL", - "unspawnable": true - }, - "skeletonwallskull": "skeleton_wall_skull", - "slime_ball": { - "material": "SLIME_BALL" - }, - "slimeball": "slime_ball", - "slime_block": { - "material": "SLIME_BLOCK" - }, - "slimeblock": "slime_block", - "slime_spawn_egg": { - "material": "SLIME_SPAWN_EGG" - }, - "slimespawnegg": "slime_spawn_egg", - "slimeegg": "slime_spawn_egg", - "eggslime": "slime_spawn_egg", - "spawneggslime": "slime_spawn_egg", - "slimespawn": "slime_spawn_egg", - "spawnslime": "slime_spawn_egg", - "smooth_quartz": { - "material": "SMOOTH_QUARTZ" - }, - "smoothquartz": "smooth_quartz", - "smooth_red_sandstone": { - "material": "SMOOTH_RED_SANDSTONE" - }, - "smredsandstone": "smooth_red_sandstone", - "smoothrsandstone": "smooth_red_sandstone", - "smrsandstone": "smooth_red_sandstone", - "smoothrsandst": "smooth_red_sandstone", - "smrsandst": "smooth_red_sandstone", - "smoothrsastone": "smooth_red_sandstone", - "smrsastone": "smooth_red_sandstone", - "smooth_sandstone": { - "material": "SMOOTH_SANDSTONE" - }, - "smoothsandstone": "smooth_sandstone", - "smsandstone": "smooth_sandstone", - "smoothsandst": "smooth_sandstone", - "smsandst": "smooth_sandstone", - "smooth_stone": { - "material": "SMOOTH_STONE" - }, - "smoothstone": "stone", - "smoothsmoothstone": "smooth_stone", - "smsmoothstone": "smooth_stone", - "smoothsstone": "smooth_stone", - "smsstone": "smooth_stone", - "snow": { - "material": "SNOW" - }, - "snowball": { - "material": "SNOWBALL" - }, - "snow_block": { - "material": "SNOW_BLOCK" - }, - "snowblock": "snow_block", - "soul_sand": { - "material": "SOUL_SAND" - }, - "soulsand": "soul_sand", - "spawner": { - "material": "SPAWNER" - }, - "spectral_arrow": { - "material": "SPECTRAL_ARROW" - }, - "spectralarrow": "spectral_arrow", - "spider_eye": { - "material": "SPIDER_EYE" - }, - "spidereye": "spider_eye", - "spider_spawn_egg": { - "material": "SPIDER_SPAWN_EGG" - }, - "spiderspawnegg": "spider_spawn_egg", - "spideregg": "spider_spawn_egg", - "eggspider": "spider_spawn_egg", - "spawneggspider": "spider_spawn_egg", - "spiderspawn": "spider_spawn_egg", - "spawnspider": "spider_spawn_egg", - "splash_potion": { - "material": "SPLASH_POTION" - }, - "splashpotion": "splash_potion", - "sponge": { - "material": "SPONGE" - }, - "spruce_boat": { - "material": "SPRUCE_BOAT" - }, - "spruceboat": "spruce_boat", - "pineboat": "spruce_boat", - "pboat": "spruce_boat", - "darkboat": "spruce_boat", - "dboat": "spruce_boat", - "sboat": "spruce_boat", - "spruce_button": { - "material": "SPRUCE_BUTTON" - }, - "sprucebutton": "spruce_button", - "spruce_door": { - "material": "SPRUCE_DOOR" - }, - "sprucedoor": "spruce_door", - "spruce_fence": { - "material": "SPRUCE_FENCE" - }, - "sprucefence": "spruce_fence", - "pinefence": "spruce_fence", - "pfence": "spruce_fence", - "darkfence": "spruce_fence", - "dfence": "spruce_fence", - "sfence": "spruce_fence", - "spruce_fence_gate": { - "material": "SPRUCE_FENCE_GATE" - }, - "sprucefencegate": "spruce_fence_gate", - "pinefencegate": "spruce_fence_gate", - "pinegate": "spruce_fence_gate", - "pfencegate": "spruce_fence_gate", - "pgate": "spruce_fence_gate", - "darkfencegate": "spruce_fence_gate", - "darkgate": "spruce_fence_gate", - "dfencegate": "spruce_fence_gate", - "dgate": "spruce_fence_gate", - "sprucegate": "spruce_fence_gate", - "sfencegate": "spruce_fence_gate", - "sgate": "spruce_fence_gate", - "spruce_leaves": { - "material": "SPRUCE_LEAVES" - }, - "spruceleaves": "spruce_leaves", - "pinetreeleaves": "spruce_leaves", - "pinelogleaves": "spruce_leaves", - "pinetrunkleaves": "spruce_leaves", - "pinewoodleaves": "spruce_leaves", - "pineleaves": "spruce_leaves", - "pinetreeleaf": "spruce_leaves", - "pinelogleaf": "spruce_leaves", - "pinetrunkleaf": "spruce_leaves", - "pinewoodleaf": "spruce_leaves", - "pineleaf": "spruce_leaves", - "pinetreeleave": "spruce_leaves", - "pinelogleave": "spruce_leaves", - "pinetrunkleave": "spruce_leaves", - "pinewoodleave": "spruce_leaves", - "pineleave": "spruce_leaves", - "ptreeleaves": "spruce_leaves", - "plogleaves": "spruce_leaves", - "ptrunkleaves": "spruce_leaves", - "pwoodleaves": "spruce_leaves", - "pleaves": "spruce_leaves", - "ptreeleaf": "spruce_leaves", - "plogleaf": "spruce_leaves", - "ptrunkleaf": "spruce_leaves", - "pwoodleaf": "spruce_leaves", - "pleaf": "spruce_leaves", - "ptreeleave": "spruce_leaves", - "plogleave": "spruce_leaves", - "ptrunkleave": "spruce_leaves", - "pwoodleave": "spruce_leaves", - "pleave": "spruce_leaves", - "darktreeleaves": "spruce_leaves", - "darklogleaves": "spruce_leaves", - "darktrunkleaves": "spruce_leaves", - "darkwoodleaves": "spruce_leaves", - "darkleaves": "spruce_leaves", - "darktreeleaf": "spruce_leaves", - "darklogleaf": "spruce_leaves", - "darktrunkleaf": "spruce_leaves", - "darkwoodleaf": "spruce_leaves", - "darkleaf": "spruce_leaves", - "darktreeleave": "spruce_leaves", - "darklogleave": "spruce_leaves", - "darktrunkleave": "spruce_leaves", - "darkwoodleave": "spruce_leaves", - "darkleave": "spruce_leaves", - "dtreeleaves": "spruce_leaves", - "dlogleaves": "spruce_leaves", - "dtrunkleaves": "spruce_leaves", - "dwoodleaves": "spruce_leaves", - "dleaves": "spruce_leaves", - "dtreeleaf": "spruce_leaves", - "dlogleaf": "spruce_leaves", - "dtrunkleaf": "spruce_leaves", - "dwoodleaf": "spruce_leaves", - "dleaf": "spruce_leaves", - "dtreeleave": "spruce_leaves", - "dlogleave": "spruce_leaves", - "dtrunkleave": "spruce_leaves", - "dwoodleave": "spruce_leaves", - "dleave": "spruce_leaves", - "sprucetreeleaves": "spruce_leaves", - "sprucelogleaves": "spruce_leaves", - "sprucetrunkleaves": "spruce_leaves", - "sprucewoodleaves": "spruce_leaves", - "sprucetreeleaf": "spruce_leaves", - "sprucelogleaf": "spruce_leaves", - "sprucetrunkleaf": "spruce_leaves", - "sprucewoodleaf": "spruce_leaves", - "spruceleaf": "spruce_leaves", - "sprucetreeleave": "spruce_leaves", - "sprucelogleave": "spruce_leaves", - "sprucetrunkleave": "spruce_leaves", - "sprucewoodleave": "spruce_leaves", - "spruceleave": "spruce_leaves", - "streeleaves": "spruce_leaves", - "slogleaves": "spruce_leaves", - "strunkleaves": "spruce_leaves", - "swoodleaves": "spruce_leaves", - "sleaves": "spruce_leaves", - "streeleaf": "spruce_leaves", - "slogleaf": "spruce_leaves", - "strunkleaf": "spruce_leaves", - "swoodleaf": "spruce_leaves", - "sleaf": "spruce_leaves", - "streeleave": "spruce_leaves", - "slogleave": "spruce_leaves", - "strunkleave": "spruce_leaves", - "swoodleave": "spruce_leaves", - "sleave": "spruce_leaves", - "spruce_log": { - "material": "SPRUCE_LOG" - }, - "sprucelog": "spruce_log", - "pine": "spruce_log", - "logpine": "spruce_log", - "pinetrunk": "spruce_log", - "pinelog": "spruce_log", - "pinetree": "spruce_log", - "p": "spruce_log", - "logp": "spruce_log", - "ptrunk": "spruce_log", - "plog": "spruce_log", - "ptree": "spruce_log", - "dark": "spruce_log", - "logdark": "spruce_log", - "darktrunk": "spruce_log", - "darklog": "spruce_log", - "darktree": "spruce_log", - "d": "spruce_log", - "logd": "spruce_log", - "dtrunk": "spruce_log", - "dlog": "spruce_log", - "dtree": "spruce_log", - "spruce": "spruce_log", - "logspruce": "spruce_log", - "sprucetrunk": "spruce_log", - "sprucetree": "spruce_log", - "s": "spruce_log", - "logs": "spruce_log", - "strunk": "spruce_log", - "slog": "spruce_log", - "stree": "spruce_log", - "spruce_planks": { - "material": "SPRUCE_PLANKS" - }, - "spruceplanks": "spruce_planks", - "pinewoodenplank": "spruce_planks", - "pinewoodplank": "spruce_planks", - "pinewplank": "spruce_planks", - "pineplankwooden": "spruce_planks", - "pineplankwood": "spruce_planks", - "pineplankw": "spruce_planks", - "pineplank": "spruce_planks", - "pwoodenplank": "spruce_planks", - "pwoodplank": "spruce_planks", - "pwplank": "spruce_planks", - "pplankwooden": "spruce_planks", - "pplankwood": "spruce_planks", - "pplankw": "spruce_planks", - "pplank": "spruce_planks", - "darkwoodenplank": "spruce_planks", - "darkwoodplank": "spruce_planks", - "darkwplank": "spruce_planks", - "darkplankwooden": "spruce_planks", - "darkplankwood": "spruce_planks", - "darkplankw": "spruce_planks", - "darkplank": "spruce_planks", - "dwoodenplank": "spruce_planks", - "dwoodplank": "spruce_planks", - "dwplank": "spruce_planks", - "dplankwooden": "spruce_planks", - "dplankwood": "spruce_planks", - "dplankw": "spruce_planks", - "dplank": "spruce_planks", - "sprucewoodenplank": "spruce_planks", - "sprucewoodplank": "spruce_planks", - "sprucewplank": "spruce_planks", - "spruceplankwooden": "spruce_planks", - "spruceplankwood": "spruce_planks", - "spruceplankw": "spruce_planks", - "spruceplank": "spruce_planks", - "swoodenplank": "spruce_planks", - "swoodplank": "spruce_planks", - "swplank": "spruce_planks", - "splankwooden": "spruce_planks", - "splankwood": "spruce_planks", - "splankw": "spruce_planks", - "splank": "spruce_planks", - "spruce_pressure_plate": { - "material": "SPRUCE_PRESSURE_PLATE" - }, - "sprucepressureplate": "spruce_pressure_plate", - "pinepressureplate": "spruce_pressure_plate", - "pinepressplate": "spruce_pressure_plate", - "pinepplate": "spruce_pressure_plate", - "pineplate": "spruce_pressure_plate", - "ppressureplate": "spruce_pressure_plate", - "ppressplate": "spruce_pressure_plate", - "ppplate": "spruce_pressure_plate", - "darkpressureplate": "spruce_pressure_plate", - "darkpressplate": "spruce_pressure_plate", - "darkpplate": "spruce_pressure_plate", - "darkplate": "spruce_pressure_plate", - "dpressureplate": "spruce_pressure_plate", - "dpressplate": "spruce_pressure_plate", - "dpplate": "spruce_pressure_plate", - "sprucepressplate": "spruce_pressure_plate", - "sprucepplate": "spruce_pressure_plate", - "spruceplate": "spruce_pressure_plate", - "spruce_sapling": { - "material": "SPRUCE_SAPLING" - }, - "sprucesapling": "spruce_sapling", - "pinesapling": "spruce_sapling", - "pinetreesapling": "spruce_sapling", - "pinelogsapling": "spruce_sapling", - "pinetrunksapling": "spruce_sapling", - "pinewoodsapling": "spruce_sapling", - "psapling": "spruce_sapling", - "ptreesapling": "spruce_sapling", - "plogsapling": "spruce_sapling", - "ptrunksapling": "spruce_sapling", - "pwoodsapling": "spruce_sapling", - "darksapling": "spruce_sapling", - "darktreesapling": "spruce_sapling", - "darklogsapling": "spruce_sapling", - "darktrunksapling": "spruce_sapling", - "darkwoodsapling": "spruce_sapling", - "dsapling": "spruce_sapling", - "dtreesapling": "spruce_sapling", - "dlogsapling": "spruce_sapling", - "dtrunksapling": "spruce_sapling", - "dwoodsapling": "spruce_sapling", - "sprucetreesapling": "spruce_sapling", - "sprucelogsapling": "spruce_sapling", - "sprucetrunksapling": "spruce_sapling", - "sprucewoodsapling": "spruce_sapling", - "ssapling": "spruce_sapling", - "streesapling": "spruce_sapling", - "slogsapling": "spruce_sapling", - "strunksapling": "spruce_sapling", - "swoodsapling": "spruce_sapling", - "spruce_slab": { - "material": "SPRUCE_SLAB" - }, - "spruceslab": "spruce_slab", - "pinewoodenstep": "spruce_slab", - "pinewoodstep": "spruce_slab", - "pinewstep": "spruce_slab", - "pinestep": "spruce_slab", - "pinewoodenslab": "spruce_slab", - "pinewoodslab": "spruce_slab", - "pinewslab": "spruce_slab", - "pinewoodenhalfblock": "spruce_slab", - "pinewoodhalfblock": "spruce_slab", - "pinewhalfblock": "spruce_slab", - "pinehalfblock": "spruce_slab", - "pwoodenstep": "spruce_slab", - "pwoodstep": "spruce_slab", - "pwstep": "spruce_slab", - "pstep": "spruce_slab", - "pwoodenslab": "spruce_slab", - "pwoodslab": "spruce_slab", - "pwslab": "spruce_slab", - "pwoodenhalfblock": "spruce_slab", - "pwoodhalfblock": "spruce_slab", - "pwhalfblock": "spruce_slab", - "phalfblock": "spruce_slab", - "darkwoodenstep": "spruce_slab", - "darkwoodstep": "spruce_slab", - "darkwstep": "spruce_slab", - "darkstep": "spruce_slab", - "darkwoodenslab": "spruce_slab", - "darkwoodslab": "spruce_slab", - "darkwslab": "spruce_slab", - "darkwoodenhalfblock": "spruce_slab", - "darkwoodhalfblock": "spruce_slab", - "darkwhalfblock": "spruce_slab", - "darkhalfblock": "spruce_slab", - "dwoodenstep": "spruce_slab", - "dwoodstep": "spruce_slab", - "dwstep": "spruce_slab", - "dstep": "spruce_slab", - "dwoodenslab": "spruce_slab", - "dwoodslab": "spruce_slab", - "dwslab": "spruce_slab", - "dwoodenhalfblock": "spruce_slab", - "dwoodhalfblock": "spruce_slab", - "dwhalfblock": "spruce_slab", - "dhalfblock": "spruce_slab", - "sprucewoodenstep": "spruce_slab", - "sprucewoodstep": "spruce_slab", - "sprucewstep": "spruce_slab", - "sprucestep": "spruce_slab", - "sprucewoodenslab": "spruce_slab", - "sprucewoodslab": "spruce_slab", - "sprucewslab": "spruce_slab", - "sprucewoodenhalfblock": "spruce_slab", - "sprucewoodhalfblock": "spruce_slab", - "sprucewhalfblock": "spruce_slab", - "sprucehalfblock": "spruce_slab", - "swoodenstep": "spruce_slab", - "swoodstep": "spruce_slab", - "swstep": "spruce_slab", - "sstep": "spruce_slab", - "swoodenslab": "spruce_slab", - "swoodslab": "spruce_slab", - "swslab": "spruce_slab", - "swoodenhalfblock": "spruce_slab", - "swoodhalfblock": "spruce_slab", - "swhalfblock": "spruce_slab", - "shalfblock": "spruce_slab", - "spruce_stairs": { - "material": "SPRUCE_STAIRS" - }, - "sprucestairs": "spruce_stairs", - "pinewoodenstairs": "spruce_stairs", - "pinewoodstairs": "spruce_stairs", - "pinewstairs": "spruce_stairs", - "pinewoodenstair": "spruce_stairs", - "pinewoodstair": "spruce_stairs", - "pinewstair": "spruce_stairs", - "pinestair": "spruce_stairs", - "pwoodenstairs": "spruce_stairs", - "pwoodstairs": "spruce_stairs", - "pwstairs": "spruce_stairs", - "pwoodenstair": "spruce_stairs", - "pwoodstair": "spruce_stairs", - "pwstair": "spruce_stairs", - "pstair": "spruce_stairs", - "darkwoodenstairs": "spruce_stairs", - "darkwoodstairs": "spruce_stairs", - "darkwstairs": "spruce_stairs", - "darkwoodenstair": "spruce_stairs", - "darkwoodstair": "spruce_stairs", - "darkwstair": "spruce_stairs", - "darkstair": "spruce_stairs", - "dwoodenstairs": "spruce_stairs", - "dwoodstairs": "spruce_stairs", - "dwstairs": "spruce_stairs", - "dwoodenstair": "spruce_stairs", - "dwoodstair": "spruce_stairs", - "dwstair": "spruce_stairs", - "dstair": "spruce_stairs", - "sprucewoodenstairs": "spruce_stairs", - "sprucewoodstairs": "spruce_stairs", - "sprucewstairs": "spruce_stairs", - "sprucewoodenstair": "spruce_stairs", - "sprucewoodstair": "spruce_stairs", - "sprucewstair": "spruce_stairs", - "sprucestair": "spruce_stairs", - "swoodenstairs": "spruce_stairs", - "swoodstairs": "spruce_stairs", - "swstairs": "spruce_stairs", - "swoodenstair": "spruce_stairs", - "swoodstair": "spruce_stairs", - "swstair": "spruce_stairs", - "sstair": "spruce_stairs", - "spruce_trapdoor": { - "material": "SPRUCE_TRAPDOOR" - }, - "sprucetrapdoor": "spruce_trapdoor", - "pinetrapdoor": "spruce_trapdoor", - "pinedoortrap": "spruce_trapdoor", - "pinehatch": "spruce_trapdoor", - "pinetdoor": "spruce_trapdoor", - "pinedoort": "spruce_trapdoor", - "pinetrapd": "spruce_trapdoor", - "pinedtrap": "spruce_trapdoor", - "ptrapdoor": "spruce_trapdoor", - "pdoortrap": "spruce_trapdoor", - "phatch": "spruce_trapdoor", - "ptdoor": "spruce_trapdoor", - "pdoort": "spruce_trapdoor", - "ptrapd": "spruce_trapdoor", - "pdtrap": "spruce_trapdoor", - "darktrapdoor": "spruce_trapdoor", - "darkdoortrap": "spruce_trapdoor", - "darkhatch": "spruce_trapdoor", - "darktdoor": "spruce_trapdoor", - "darkdoort": "spruce_trapdoor", - "darktrapd": "spruce_trapdoor", - "darkdtrap": "spruce_trapdoor", - "dtrapdoor": "spruce_trapdoor", - "ddoortrap": "spruce_trapdoor", - "dhatch": "spruce_trapdoor", - "dtdoor": "spruce_trapdoor", - "ddoort": "spruce_trapdoor", - "dtrapd": "spruce_trapdoor", - "ddtrap": "spruce_trapdoor", - "sprucedoortrap": "spruce_trapdoor", - "sprucehatch": "spruce_trapdoor", - "sprucetdoor": "spruce_trapdoor", - "sprucedoort": "spruce_trapdoor", - "sprucetrapd": "spruce_trapdoor", - "sprucedtrap": "spruce_trapdoor", - "strapdoor": "spruce_trapdoor", - "sdoortrap": "spruce_trapdoor", - "shatch": "spruce_trapdoor", - "sdoort": "spruce_trapdoor", - "strapd": "spruce_trapdoor", - "sdtrap": "spruce_trapdoor", - "spruce_wood": { - "material": "SPRUCE_WOOD" - }, - "sprucewood": "spruce_wood", - "pinewood": "spruce_wood", - "pinelogall": "spruce_wood", - "pinetrunkall": "spruce_wood", - "pinetreeall": "spruce_wood", - "pwood": "spruce_wood", - "plogall": "spruce_wood", - "ptrunkall": "spruce_wood", - "ptreeall": "spruce_wood", - "darkwood": "spruce_wood", - "darklogall": "spruce_wood", - "darktrunkall": "spruce_wood", - "darktreeall": "spruce_wood", - "dwood": "spruce_wood", - "dlogall": "spruce_wood", - "dtrunkall": "spruce_wood", - "dtreeall": "spruce_wood", - "sprucelogall": "spruce_wood", - "sprucetrunkall": "spruce_wood", - "sprucetreeall": "spruce_wood", - "swood": "spruce_wood", - "slogall": "spruce_wood", - "strunkall": "spruce_wood", - "streeall": "spruce_wood", - "squid_spawn_egg": { - "material": "SQUID_SPAWN_EGG" - }, - "squidspawnegg": "squid_spawn_egg", - "squidegg": "squid_spawn_egg", - "eggsquid": "squid_spawn_egg", - "spawneggsquid": "squid_spawn_egg", - "squidspawn": "squid_spawn_egg", - "spawnsquid": "squid_spawn_egg", - "stick": { - "material": "STICK" - }, - "sticky_piston": { - "material": "STICKY_PISTON" - }, - "stickypiston": "sticky_piston", - "pistonsticky": "sticky_piston", - "stickyp": "sticky_piston", - "psticky": "sticky_piston", - "pistonstickybase": "sticky_piston", - "stickypistonbase": "sticky_piston", - "stickpiston": "sticky_piston", - "pistonstick": "sticky_piston", - "stickp": "sticky_piston", - "pstick": "sticky_piston", - "pistonstickbase": "sticky_piston", - "stickpistonbase": "sticky_piston", - "spiston": "sticky_piston", - "pistons": "sticky_piston", - "pistonsbase": "sticky_piston", - "spistonbase": "sticky_piston", - "stone": { - "material": "STONE" - }, - "sstone": "stone", - "rock": "stone", - "stone_axe": { - "material": "STONE_AXE" - }, - "stoneaxe": "stone_axe", - "cobblestoneaxe": "stone_axe", - "cstoneaxe": "stone_axe", - "csaxe": "stone_axe", - "stone_bricks": { - "material": "STONE_BRICKS" - }, - "stonebricks": "stone_bricks", - "stonebrick": "stone_bricks", - "stonebrickblock": "stone_bricks", - "stonebb": "stone_bricks", - "sbrick": "stone_bricks", - "sbricks": "stone_bricks", - "sbrickblock": "stone_bricks", - "sbb": "stone_bricks", - "stone_brick_slab": { - "material": "STONE_BRICK_SLAB" - }, - "stonebrickslab": "stone_brick_slab", - "stoneslab": "stone_slab", - "stonesl": "stone_slab", - "smoothstoneslab": "stone_slab", - "smoothstonesl": "stone_slab", - "sstoneslab": "stone_slab", - "sstonesl": "stone_slab", - "stone_brick_stairs": { - "material": "STONE_BRICK_STAIRS" - }, - "stonebrickstairs": "stone_brick_stairs", - "stonestair": "stone_brick_stairs", - "stonestairs": "stone_brick_stairs", - "stonest": "stone_brick_stairs", - "smoothstonestair": "stone_brick_stairs", - "smoothstonestairs": "stone_brick_stairs", - "smoothstonest": "stone_brick_stairs", - "sstonestair": "stone_brick_stairs", - "sstonestairs": "stone_brick_stairs", - "sstonest": "stone_brick_stairs", - "stone_button": { - "material": "STONE_BUTTON" - }, - "stonebutton": "stone_button", - "smoothstonebutton": "stone_button", - "sstonebutton": "stone_button", - "sbutton": "stone_button", - "button": "stone_button", - "stone_hoe": { - "material": "STONE_HOE" - }, - "stonehoe": "stone_hoe", - "cobblestonehoe": "stone_hoe", - "cstonehoe": "stone_hoe", - "cshoe": "stone_hoe", - "stone_pickaxe": { - "material": "STONE_PICKAXE" - }, - "stonepickaxe": "stone_pickaxe", - "cobblestonepickaxe": "stone_pickaxe", - "cobblestonepick": "stone_pickaxe", - "cstonepickaxe": "stone_pickaxe", - "cstonepick": "stone_pickaxe", - "cspickaxe": "stone_pickaxe", - "cspick": "stone_pickaxe", - "stonepick": "stone_pickaxe", - "stone_pressure_plate": { - "material": "STONE_PRESSURE_PLATE" - }, - "stonepressureplate": "stone_pressure_plate", - "stonepressplate": "stone_pressure_plate", - "stonepplate": "stone_pressure_plate", - "stoneplate": "stone_pressure_plate", - "spressureplate": "stone_pressure_plate", - "spressplate": "stone_pressure_plate", - "spplate": "stone_pressure_plate", - "splate": "stone_pressure_plate", - "smoothstonepressueplate": "stone_pressure_plate", - "smoothstonepressplate": "stone_pressure_plate", - "smoothstonepplate": "stone_pressure_plate", - "smoothstoneplate": "stone_pressure_plate", - "sstonepressureplate": "stone_pressure_plate", - "sstonepressplate": "stone_pressure_plate", - "sstonepplate": "stone_pressure_plate", - "sstoneplate": "stone_pressure_plate", - "stone_shovel": { - "material": "STONE_SHOVEL" - }, - "stoneshovel": "stone_shovel", - "cobblestoneshovel": "stone_shovel", - "cobblestonespade": "stone_shovel", - "cstoneshovel": "stone_shovel", - "cstonespade": "stone_shovel", - "csshovel": "stone_shovel", - "csspade": "stone_shovel", - "stonespade": "stone_shovel", - "stone_slab": { - "material": "STONE_SLAB" - }, - "stone_sword": { - "material": "STONE_SWORD" - }, - "stonesword": "stone_sword", - "cobblestonesword": "stone_sword", - "cstonesword": "stone_sword", - "cssword": "stone_sword", - "stray_spawn_egg": { - "material": "STRAY_SPAWN_EGG" - }, - "strayspawnegg": "stray_spawn_egg", - "strayegg": "stray_spawn_egg", - "eggstray": "stray_spawn_egg", - "spawneggstray": "stray_spawn_egg", - "strayspawn": "stray_spawn_egg", - "spawnstray": "stray_spawn_egg", - "string": { - "material": "STRING" - }, - "stripped_acacia_log": { - "material": "STRIPPED_ACACIA_LOG" - }, - "strippedacacialog": "stripped_acacia_log", - "acaciastrippedlog": "stripped_acacia_log", - "astrippedlog": "stripped_acacia_log", - "acaciabarelog": "stripped_acacia_log", - "abarelog": "stripped_acacia_log", - "strippedacaciatree": "stripped_acacia_log", - "strippedatree": "stripped_acacia_log", - "bareacaciatree": "stripped_acacia_log", - "bareatree": "stripped_acacia_log", - "strippedacaciatrunk": "stripped_acacia_log", - "strippedatrunk": "stripped_acacia_log", - "bareacaciatrunk": "stripped_acacia_log", - "bareatrunk": "stripped_acacia_log", - "stripped_acacia_wood": { - "material": "STRIPPED_ACACIA_WOOD" - }, - "strippedacaciawood": "stripped_acacia_wood", - "acaciastrippedwood": "stripped_acacia_wood", - "astrippedwood": "stripped_acacia_wood", - "acaciabarewood": "stripped_acacia_wood", - "abarewood": "stripped_acacia_wood", - "strippedacacialogall": "stripped_acacia_wood", - "strippedalogall": "stripped_acacia_wood", - "bareacacialogall": "stripped_acacia_wood", - "barealogall": "stripped_acacia_wood", - "strippedacaciatrunkall": "stripped_acacia_wood", - "strippedatrunkall": "stripped_acacia_wood", - "bareacaciatrunkall": "stripped_acacia_wood", - "bareatrunkall": "stripped_acacia_wood", - "strippedacaciatreeall": "stripped_acacia_wood", - "strippedatreeall": "stripped_acacia_wood", - "bareacaciatreeall": "stripped_acacia_wood", - "bareatreeall": "stripped_acacia_wood", - "stripped_birch_log": { - "material": "STRIPPED_BIRCH_LOG" - }, - "strippedbirchlog": "stripped_birch_log", - "birchstrippedlog": "stripped_birch_log", - "bstrippedlog": "stripped_birch_log", - "lightstrippedlog": "stripped_birch_log", - "lstrippedlog": "stripped_birch_log", - "whitestrippedlog": "stripped_birch_log", - "wstrippedlog": "stripped_birch_log", - "birchbarelog": "stripped_birch_log", - "bbarelog": "stripped_birch_log", - "lightbarelog": "stripped_birch_log", - "lbarelog": "stripped_birch_log", - "whitebarelog": "stripped_birch_log", - "wbarelog": "stripped_birch_log", - "strippedbirchtree": "stripped_birch_log", - "strippedbtree": "stripped_birch_log", - "strippedlighttree": "stripped_birch_log", - "strippedltree": "stripped_birch_log", - "strippedwhitetree": "stripped_birch_log", - "strippedwtree": "stripped_birch_log", - "barebirchtree": "stripped_birch_log", - "barebtree": "stripped_birch_log", - "barelighttree": "stripped_birch_log", - "bareltree": "stripped_birch_log", - "barewhitetree": "stripped_birch_log", - "barewtree": "stripped_birch_log", - "strippedbirchtrunk": "stripped_birch_log", - "strippedbtrunk": "stripped_birch_log", - "strippedlighttrunk": "stripped_birch_log", - "strippedltrunk": "stripped_birch_log", - "strippedwhitetrunk": "stripped_birch_log", - "strippedwtrunk": "stripped_birch_log", - "barebirchtrunk": "stripped_birch_log", - "barebtrunk": "stripped_birch_log", - "barelighttrunk": "stripped_birch_log", - "bareltrunk": "stripped_birch_log", - "barewhitetrunk": "stripped_birch_log", - "barewtrunk": "stripped_birch_log", - "stripped_birch_wood": { - "material": "STRIPPED_BIRCH_WOOD" - }, - "strippedbirchwood": "stripped_birch_wood", - "birchstrippedwood": "stripped_birch_wood", - "bstrippedwood": "stripped_birch_wood", - "lightstrippedwood": "stripped_birch_wood", - "lstrippedwood": "stripped_birch_wood", - "whitestrippedwood": "stripped_birch_wood", - "wstrippedwood": "stripped_birch_wood", - "birchbarewood": "stripped_birch_wood", - "bbarewood": "stripped_birch_wood", - "lightbarewood": "stripped_birch_wood", - "lbarewood": "stripped_birch_wood", - "whitebarewood": "stripped_birch_wood", - "wbarewood": "stripped_birch_wood", - "strippedbirchlogall": "stripped_birch_wood", - "strippedblogall": "stripped_birch_wood", - "strippedlightlogall": "stripped_birch_wood", - "strippedllogall": "stripped_birch_wood", - "strippedwhitelogall": "stripped_birch_wood", - "strippedwlogall": "stripped_birch_wood", - "barebirchlogall": "stripped_birch_wood", - "bareblogall": "stripped_birch_wood", - "barelightlogall": "stripped_birch_wood", - "barellogall": "stripped_birch_wood", - "barewhitelogall": "stripped_birch_wood", - "barewlogall": "stripped_birch_wood", - "strippedbirchtrunkall": "stripped_birch_wood", - "strippedbtrunkall": "stripped_birch_wood", - "strippedlighttrunkall": "stripped_birch_wood", - "strippedltrunkall": "stripped_birch_wood", - "strippedwhitetrunkall": "stripped_birch_wood", - "strippedwtrunkall": "stripped_birch_wood", - "barebirchtrunkall": "stripped_birch_wood", - "barebtrunkall": "stripped_birch_wood", - "barelighttrunkall": "stripped_birch_wood", - "bareltrunkall": "stripped_birch_wood", - "barewhitetrunkall": "stripped_birch_wood", - "barewtrunkall": "stripped_birch_wood", - "strippedbirchtreeall": "stripped_birch_wood", - "strippedbtreeall": "stripped_birch_wood", - "strippedlighttreeall": "stripped_birch_wood", - "strippedltreeall": "stripped_birch_wood", - "strippedwhitetreeall": "stripped_birch_wood", - "strippedwtreeall": "stripped_birch_wood", - "barebirchtreeall": "stripped_birch_wood", - "barebtreeall": "stripped_birch_wood", - "barelighttreeall": "stripped_birch_wood", - "bareltreeall": "stripped_birch_wood", - "barewhitetreeall": "stripped_birch_wood", - "barewtreeall": "stripped_birch_wood", - "stripped_dark_oak_log": { - "material": "STRIPPED_DARK_OAK_LOG" - }, - "strippeddarkoaklog": "stripped_dark_oak_log", - "darkoakstrippedlog": "stripped_dark_oak_log", - "doakstrippedlog": "stripped_dark_oak_log", - "dostrippedlog": "stripped_dark_oak_log", - "darkoakbarelog": "stripped_dark_oak_log", - "doakbarelog": "stripped_dark_oak_log", - "dobarelog": "stripped_dark_oak_log", - "strippeddarkoaktree": "stripped_dark_oak_log", - "strippeddoaktree": "stripped_dark_oak_log", - "strippeddotree": "stripped_dark_oak_log", - "baredarkoaktree": "stripped_dark_oak_log", - "baredoaktree": "stripped_dark_oak_log", - "baredotree": "stripped_dark_oak_log", - "strippeddarkoaktrunk": "stripped_dark_oak_log", - "strippeddoaktrunk": "stripped_dark_oak_log", - "strippeddotrunk": "stripped_dark_oak_log", - "baredarkoaktrunk": "stripped_dark_oak_log", - "baredoaktrunk": "stripped_dark_oak_log", - "baredotrunk": "stripped_dark_oak_log", - "stripped_dark_oak_wood": { - "material": "STRIPPED_DARK_OAK_WOOD" - }, - "strippeddarkoakwood": "stripped_dark_oak_wood", - "darkoakstrippedwood": "stripped_dark_oak_wood", - "doakstrippedwood": "stripped_dark_oak_wood", - "dostrippedwood": "stripped_dark_oak_wood", - "darkoakbarewood": "stripped_dark_oak_wood", - "doakbarewood": "stripped_dark_oak_wood", - "dobarewood": "stripped_dark_oak_wood", - "strippeddarkoaklogall": "stripped_dark_oak_wood", - "strippeddoaklogall": "stripped_dark_oak_wood", - "strippeddologall": "stripped_dark_oak_wood", - "baredarkoaklogall": "stripped_dark_oak_wood", - "baredoaklogall": "stripped_dark_oak_wood", - "baredologall": "stripped_dark_oak_wood", - "strippeddarkoaktrunkall": "stripped_dark_oak_wood", - "strippeddoaktrunkall": "stripped_dark_oak_wood", - "strippeddotrunkall": "stripped_dark_oak_wood", - "baredarkoaktrunkall": "stripped_dark_oak_wood", - "baredoaktrunkall": "stripped_dark_oak_wood", - "baredotrunkall": "stripped_dark_oak_wood", - "strippeddarkoaktreeall": "stripped_dark_oak_wood", - "strippeddoaktreeall": "stripped_dark_oak_wood", - "strippeddotreeall": "stripped_dark_oak_wood", - "baredarkoaktreeall": "stripped_dark_oak_wood", - "baredoaktreeall": "stripped_dark_oak_wood", - "baredotreeall": "stripped_dark_oak_wood", - "stripped_jungle_log": { - "material": "STRIPPED_JUNGLE_LOG" - }, - "strippedjunglelog": "stripped_jungle_log", - "junglestrippedlog": "stripped_jungle_log", - "jstrippedlog": "stripped_jungle_log", - "foreststrippedlog": "stripped_jungle_log", - "fstrippedlog": "stripped_jungle_log", - "junglebarelog": "stripped_jungle_log", - "jbarelog": "stripped_jungle_log", - "forestbarelog": "stripped_jungle_log", - "fbarelog": "stripped_jungle_log", - "strippedjungletree": "stripped_jungle_log", - "strippedjtree": "stripped_jungle_log", - "strippedforesttree": "stripped_jungle_log", - "strippedftree": "stripped_jungle_log", - "barejungletree": "stripped_jungle_log", - "barejtree": "stripped_jungle_log", - "bareforesttree": "stripped_jungle_log", - "bareftree": "stripped_jungle_log", - "strippedjungletrunk": "stripped_jungle_log", - "strippedjtrunk": "stripped_jungle_log", - "strippedforesttrunk": "stripped_jungle_log", - "strippedftrunk": "stripped_jungle_log", - "barejungletrunk": "stripped_jungle_log", - "barejtrunk": "stripped_jungle_log", - "bareforesttrunk": "stripped_jungle_log", - "bareftrunk": "stripped_jungle_log", - "stripped_jungle_wood": { - "material": "STRIPPED_JUNGLE_WOOD" - }, - "strippedjunglewood": "stripped_jungle_wood", - "junglestrippedwood": "stripped_jungle_wood", - "jstrippedwood": "stripped_jungle_wood", - "foreststrippedwood": "stripped_jungle_wood", - "fstrippedwood": "stripped_jungle_wood", - "junglebarewood": "stripped_jungle_wood", - "jbarewood": "stripped_jungle_wood", - "forestbarewood": "stripped_jungle_wood", - "fbarewood": "stripped_jungle_wood", - "strippedjunglelogall": "stripped_jungle_wood", - "strippedjlogall": "stripped_jungle_wood", - "strippedforestlogall": "stripped_jungle_wood", - "strippedflogall": "stripped_jungle_wood", - "barejunglelogall": "stripped_jungle_wood", - "barejlogall": "stripped_jungle_wood", - "bareforestlogall": "stripped_jungle_wood", - "bareflogall": "stripped_jungle_wood", - "strippedjungletrunkall": "stripped_jungle_wood", - "strippedjtrunkall": "stripped_jungle_wood", - "strippedforesttrunkall": "stripped_jungle_wood", - "strippedftrunkall": "stripped_jungle_wood", - "barejungletrunkall": "stripped_jungle_wood", - "barejtrunkall": "stripped_jungle_wood", - "bareforesttrunkall": "stripped_jungle_wood", - "bareftrunkall": "stripped_jungle_wood", - "strippedjungletreeall": "stripped_jungle_wood", - "strippedjtreeall": "stripped_jungle_wood", - "strippedforesttreeall": "stripped_jungle_wood", - "strippedftreeall": "stripped_jungle_wood", - "barejungletreeall": "stripped_jungle_wood", - "barejtreeall": "stripped_jungle_wood", - "bareforesttreeall": "stripped_jungle_wood", - "bareftreeall": "stripped_jungle_wood", - "stripped_oak_log": { - "material": "STRIPPED_OAK_LOG" - }, - "strippedoaklog": "stripped_oak_log", - "strippedlog": "stripped_oak_log", - "oakstrippedlog": "stripped_oak_log", - "ostrippedlog": "stripped_oak_log", - "barelog": "stripped_oak_log", - "oakbarelog": "stripped_oak_log", - "obarelog": "stripped_oak_log", - "strippedtree": "stripped_oak_log", - "strippedoaktree": "stripped_oak_log", - "strippedotree": "stripped_oak_log", - "baretree": "stripped_oak_log", - "bareoaktree": "stripped_oak_log", - "bareotree": "stripped_oak_log", - "strippedtrunk": "stripped_oak_log", - "strippedoaktrunk": "stripped_oak_log", - "strippedotrunk": "stripped_oak_log", - "baretrunk": "stripped_oak_log", - "bareoaktrunk": "stripped_oak_log", - "bareotrunk": "stripped_oak_log", - "stripped_oak_wood": { - "material": "STRIPPED_OAK_WOOD" - }, - "strippedoakwood": "stripped_oak_wood", - "strippedwood": "stripped_oak_wood", - "oakstrippedwood": "stripped_oak_wood", - "ostrippedwood": "stripped_oak_wood", - "barewood": "stripped_oak_wood", - "oakbarewood": "stripped_oak_wood", - "obarewood": "stripped_oak_wood", - "strippedlogall": "stripped_oak_wood", - "strippedoaklogall": "stripped_oak_wood", - "strippedologall": "stripped_oak_wood", - "barelogall": "stripped_oak_wood", - "bareoaklogall": "stripped_oak_wood", - "bareologall": "stripped_oak_wood", - "strippedtrunkall": "stripped_oak_wood", - "strippedoaktrunkall": "stripped_oak_wood", - "strippedotrunkall": "stripped_oak_wood", - "baretrunkall": "stripped_oak_wood", - "bareoaktrunkall": "stripped_oak_wood", - "bareotrunkall": "stripped_oak_wood", - "strippedtreeall": "stripped_oak_wood", - "strippedoaktreeall": "stripped_oak_wood", - "strippedotreeall": "stripped_oak_wood", - "baretreeall": "stripped_oak_wood", - "bareoaktreeall": "stripped_oak_wood", - "bareotreeall": "stripped_oak_wood", - "stripped_spruce_log": { - "material": "STRIPPED_SPRUCE_LOG" - }, - "strippedsprucelog": "stripped_spruce_log", - "pinestrippedlog": "stripped_spruce_log", - "pstrippedlog": "stripped_spruce_log", - "darkstrippedlog": "stripped_spruce_log", - "dstrippedlog": "stripped_spruce_log", - "sprucestrippedlog": "stripped_spruce_log", - "sstrippedlog": "stripped_spruce_log", - "pinebarelog": "stripped_spruce_log", - "pbarelog": "stripped_spruce_log", - "darkbarelog": "stripped_spruce_log", - "dbarelog": "stripped_spruce_log", - "sprucebarelog": "stripped_spruce_log", - "sbarelog": "stripped_spruce_log", - "strippedpinetree": "stripped_spruce_log", - "strippedptree": "stripped_spruce_log", - "strippeddarktree": "stripped_spruce_log", - "strippeddtree": "stripped_spruce_log", - "strippedsprucetree": "stripped_spruce_log", - "strippedstree": "stripped_spruce_log", - "barepinetree": "stripped_spruce_log", - "bareptree": "stripped_spruce_log", - "baredarktree": "stripped_spruce_log", - "baredtree": "stripped_spruce_log", - "baresprucetree": "stripped_spruce_log", - "barestree": "stripped_spruce_log", - "strippedpinetrunk": "stripped_spruce_log", - "strippedptrunk": "stripped_spruce_log", - "strippeddarktrunk": "stripped_spruce_log", - "strippeddtrunk": "stripped_spruce_log", - "strippedsprucetrunk": "stripped_spruce_log", - "strippedstrunk": "stripped_spruce_log", - "barepinetrunk": "stripped_spruce_log", - "bareptrunk": "stripped_spruce_log", - "baredarktrunk": "stripped_spruce_log", - "baredtrunk": "stripped_spruce_log", - "baresprucetrunk": "stripped_spruce_log", - "barestrunk": "stripped_spruce_log", - "stripped_spruce_wood": { - "material": "STRIPPED_SPRUCE_WOOD" - }, - "strippedsprucewood": "stripped_spruce_wood", - "pinestrippedwood": "stripped_spruce_wood", - "pstrippedwood": "stripped_spruce_wood", - "darkstrippedwood": "stripped_spruce_wood", - "dstrippedwood": "stripped_spruce_wood", - "sprucestrippedwood": "stripped_spruce_wood", - "sstrippedwood": "stripped_spruce_wood", - "pinebarewood": "stripped_spruce_wood", - "pbarewood": "stripped_spruce_wood", - "darkbarewood": "stripped_spruce_wood", - "dbarewood": "stripped_spruce_wood", - "sprucebarewood": "stripped_spruce_wood", - "sbarewood": "stripped_spruce_wood", - "strippedpinelogall": "stripped_spruce_wood", - "strippedplogall": "stripped_spruce_wood", - "strippeddarklogall": "stripped_spruce_wood", - "strippeddlogall": "stripped_spruce_wood", - "strippedsprucelogall": "stripped_spruce_wood", - "strippedslogall": "stripped_spruce_wood", - "barepinelogall": "stripped_spruce_wood", - "bareplogall": "stripped_spruce_wood", - "baredarklogall": "stripped_spruce_wood", - "baredlogall": "stripped_spruce_wood", - "baresprucelogall": "stripped_spruce_wood", - "bareslogall": "stripped_spruce_wood", - "strippedpinetrunkall": "stripped_spruce_wood", - "strippedptrunkall": "stripped_spruce_wood", - "strippeddarktrunkall": "stripped_spruce_wood", - "strippeddtrunkall": "stripped_spruce_wood", - "strippedsprucetrunkall": "stripped_spruce_wood", - "strippedstrunkall": "stripped_spruce_wood", - "barepinetrunkall": "stripped_spruce_wood", - "bareptrunkall": "stripped_spruce_wood", - "baredarktrunkall": "stripped_spruce_wood", - "baredtrunkall": "stripped_spruce_wood", - "baresprucetrunkall": "stripped_spruce_wood", - "barestrunkall": "stripped_spruce_wood", - "strippedpinetreeall": "stripped_spruce_wood", - "strippedptreeall": "stripped_spruce_wood", - "strippeddarktreeall": "stripped_spruce_wood", - "strippeddtreeall": "stripped_spruce_wood", - "strippedsprucetreeall": "stripped_spruce_wood", - "strippedstreeall": "stripped_spruce_wood", - "barepinetreeall": "stripped_spruce_wood", - "bareptreeall": "stripped_spruce_wood", - "baredarktreeall": "stripped_spruce_wood", - "baredtreeall": "stripped_spruce_wood", - "baresprucetreeall": "stripped_spruce_wood", - "barestreeall": "stripped_spruce_wood", - "structure_block": { - "material": "STRUCTURE_BLOCK" - }, - "structureblock": "structure_block", - "structure_void": { - "material": "STRUCTURE_VOID" - }, - "structurevoid": "structure_void", - "sugar": { - "material": "SUGAR" - }, - "sugar_cane": { - "material": "SUGAR_CANE" - }, - "sugarcane": "sugar_cane", - "sunflower": { - "material": "SUNFLOWER" - }, - "tall_grass": { - "material": "TALL_GRASS" - }, - "tallgrass": "tall_grass", - "longgrass": "tall_grass", - "wildgrass": "tall_grass", - "grasslong": "tall_grass", - "grasstall": "tall_grass", - "grasswild": "tall_grass", - "lgrass": "tall_grass", - "tgrass": "tall_grass", - "wgrass": "tall_grass", - "tall_seagrass": { - "material": "TALL_SEAGRASS", - "unspawnable": true - }, - "tallseagrass": "tall_seagrass", - "terracotta": { - "material": "TERRACOTTA" - }, - "tipped_arrow": { - "material": "TIPPED_ARROW" - }, - "tippedarrow": "tipped_arrow", - "tnt": { - "material": "TNT" - }, - "tntblock": "tnt", - "blocktnt": "tnt", - "bombblock": "tnt", - "blockbomb": "tnt", - "dynamiteblock": "tnt", - "blockdynamite": "tnt", - "bomb": "tnt", - "dynamite": "tnt", - "tnt_minecart": { - "material": "TNT_MINECART" - }, - "tntminecart": "tnt_minecart", - "tntmcart": "tnt_minecart", - "tntmc": "tnt_minecart", - "tntcart": "tnt_minecart", - "dynamiteminecart": "tnt_minecart", - "dynamitemcart": "tnt_minecart", - "dynamitemc": "tnt_minecart", - "dynamitecart": "tnt_minecart", - "bombminecart": "tnt_minecart", - "bombmcart": "tnt_minecart", - "bombmc": "tnt_minecart", - "bombcart": "tnt_minecart", - "tminecart": "tnt_minecart", - "tmcart": "tnt_minecart", - "tmc": "tnt_minecart", - "tcart": "tnt_minecart", - "dminecart": "tnt_minecart", - "dmcart": "tnt_minecart", - "dmc": "tnt_minecart", - "dcart": "tnt_minecart", - "bminecart": "tnt_minecart", - "bmcart": "tnt_minecart", - "bmc": "tnt_minecart", - "bcart": "tnt_minecart", - "torch": { - "material": "TORCH" - }, - "burningstick": "torch", - "burnstick": "torch", - "totem_of_undying": { - "material": "TOTEM_OF_UNDYING" - }, - "totemofundying": "totem_of_undying", - "totem": "totem_of_undying", - "trapped_chest": { - "material": "TRAPPED_CHEST" - }, - "trappedchest": "trapped_chest", - "trapchest": "trapped_chest", - "chesttrapped": "trapped_chest", - "chesttrap": "trapped_chest", - "trident": { - "material": "TRIDENT" - }, - "tripwire": { - "material": "TRIPWIRE", - "unspawnable": true - }, - "tripwire_hook": { - "material": "TRIPWIRE_HOOK" - }, - "tripwirehook": "tripwire_hook", - "trip": "tripwire_hook", - "tripwirelever": "tripwire_hook", - "triphook": "tripwire_hook", - "tropical_fish": { - "material": "TROPICAL_FISH" - }, - "tropicalfish": "tropical_fish", - "rawclownfish": "tropical_fish", - "rawnemo": "tropical_fish", - "rawclfish": "tropical_fish", - "rawfishcl": "tropical_fish", - "rawnfish": "tropical_fish", - "rawfishn": "tropical_fish", - "raclownfish": "tropical_fish", - "ranemo": "tropical_fish", - "raclfish": "tropical_fish", - "rafishcl": "tropical_fish", - "ranfish": "tropical_fish", - "rafishn": "tropical_fish", - "uncookedclownfish": "tropical_fish", - "uncookednemo": "tropical_fish", - "uncookedclfish": "tropical_fish", - "uncookedfishcl": "tropical_fish", - "uncookednfish": "tropical_fish", - "uncookedfishn": "tropical_fish", - "plainclownfish": "tropical_fish", - "plainnemo": "tropical_fish", - "plainclfish": "tropical_fish", - "plainfishcl": "tropical_fish", - "plainnfish": "tropical_fish", - "plainfishn": "tropical_fish", - "clownfish": "tropical_fish", - "nemo": "tropical_fish", - "clfish": "tropical_fish", - "fishcl": "tropical_fish", - "nfish": "tropical_fish", - "fishn": "tropical_fish", - "tropical_fish_bucket": { - "material": "TROPICAL_FISH_BUCKET" - }, - "tropicalfishbucket": "tropical_fish_bucket", - "tropicalfishpail": "tropical_fish_bucket", - "tropicfishbucket": "tropical_fish_bucket", - "tropicfishpail": "tropical_fish_bucket", - "tfishbucket": "tropical_fish_bucket", - "tfishpail": "tropical_fish_bucket", - "tropicalfbucket": "tropical_fish_bucket", - "tropicalfpail": "tropical_fish_bucket", - "tropicfbucket": "tropical_fish_bucket", - "tropicfpail": "tropical_fish_bucket", - "tropical_fish_spawn_egg": { - "material": "TROPICAL_FISH_SPAWN_EGG" - }, - "tropicalfishspawnegg": "tropical_fish_spawn_egg", - "tropicalfishegg": "tropical_fish_spawn_egg", - "eggtropicalfish": "tropical_fish_spawn_egg", - "spawneggtropicalfish": "tropical_fish_spawn_egg", - "tropicalfishspawn": "tropical_fish_spawn_egg", - "spawntropicalfish": "tropical_fish_spawn_egg", - "tropicfishegg": "tropical_fish_spawn_egg", - "eggtropicfish": "tropical_fish_spawn_egg", - "tropicfishspawnegg": "tropical_fish_spawn_egg", - "spawneggtropicfish": "tropical_fish_spawn_egg", - "tropicfishspawn": "tropical_fish_spawn_egg", - "spawntropicfish": "tropical_fish_spawn_egg", - "tfishegg": "tropical_fish_spawn_egg", - "eggtfish": "tropical_fish_spawn_egg", - "tfishspawnegg": "tropical_fish_spawn_egg", - "spawneggtfish": "tropical_fish_spawn_egg", - "tfishspawn": "tropical_fish_spawn_egg", - "spawntfish": "tropical_fish_spawn_egg", - "tropicalfegg": "tropical_fish_spawn_egg", - "eggtropicalf": "tropical_fish_spawn_egg", - "tropicalfspawnegg": "tropical_fish_spawn_egg", - "spawneggtropicalf": "tropical_fish_spawn_egg", - "tropicalfspawn": "tropical_fish_spawn_egg", - "spawntropicalf": "tropical_fish_spawn_egg", - "tropicfegg": "tropical_fish_spawn_egg", - "eggtropicf": "tropical_fish_spawn_egg", - "tropicfspawnegg": "tropical_fish_spawn_egg", - "spawneggtropicf": "tropical_fish_spawn_egg", - "tropicfspawn": "tropical_fish_spawn_egg", - "spawntropicf": "tropical_fish_spawn_egg", - "tube_coral": { - "material": "TUBE_CORAL" - }, - "tubecoral": "tube_coral", - "tube_coral_block": { - "material": "TUBE_CORAL_BLOCK" - }, - "tubecoralblock": "tube_coral_block", - "tube_coral_fan": { - "material": "TUBE_CORAL_FAN" - }, - "tubecoralfan": "tube_coral_fan", - "tube_coral_wall_fan": { - "material": "TUBE_CORAL_WALL_FAN", - "unspawnable": true - }, - "tubecoralwallfan": "tube_coral_wall_fan", - "turtle_egg": { - "material": "TURTLE_EGG" - }, - "turtleegg": "turtle_spawn_egg", - "turtle_helmet": { - "material": "TURTLE_HELMET" - }, - "turtlehelmet": "turtle_helmet", - "turtle_spawn_egg": { - "material": "TURTLE_SPAWN_EGG" - }, - "turtlespawnegg": "turtle_spawn_egg", - "eggturtle": "turtle_spawn_egg", - "spawneggturtle": "turtle_spawn_egg", - "turtlespawn": "turtle_spawn_egg", - "spawnturtle": "turtle_spawn_egg", - "vex_spawn_egg": { - "material": "VEX_SPAWN_EGG" - }, - "vexspawnegg": "vex_spawn_egg", - "vexegg": "vex_spawn_egg", - "eggvex": "vex_spawn_egg", - "spawneggvex": "vex_spawn_egg", - "vexspawn": "vex_spawn_egg", - "spawnvex": "vex_spawn_egg", - "villager_spawn_egg": { - "material": "VILLAGER_SPAWN_EGG" - }, - "villagerspawnegg": "villager_spawn_egg", - "villageregg": "villager_spawn_egg", - "eggvillager": "villager_spawn_egg", - "spawneggvillager": "villager_spawn_egg", - "villagerspawn": "villager_spawn_egg", - "spawnvillager": "villager_spawn_egg", - "vindicator_spawn_egg": { - "material": "VINDICATOR_SPAWN_EGG" - }, - "vindicatorspawnegg": "vindicator_spawn_egg", - "vindicatoregg": "vindicator_spawn_egg", - "eggvindicator": "vindicator_spawn_egg", - "spawneggvindicator": "vindicator_spawn_egg", - "vindicatorspawn": "vindicator_spawn_egg", - "spawnvindicator": "vindicator_spawn_egg", - "vinegg": "vindicator_spawn_egg", - "eggvin": "vindicator_spawn_egg", - "vinspawnegg": "vindicator_spawn_egg", - "spawneggvin": "vindicator_spawn_egg", - "vinspawn": "vindicator_spawn_egg", - "spawnvin": "vindicator_spawn_egg", - "vine": { - "material": "VINE" - }, - "vines": "vine", - "greenvines": "vine", - "greenvine": "vine", - "gardenvines": "vine", - "gardenvine": "vine", - "vinesgreen": "vine", - "vinegreen": "vine", - "vinesgarden": "vine", - "vinegarden": "vine", - "vinesg": "vine", - "vineg": "vine", - "gvines": "vine", - "gvine": "vine", - "void_air": { - "material": "VOID_AIR", - "unspawnable": true - }, - "voidair": "void_air", - "wall_sign": { - "material": "WALL_SIGN", - "unspawnable": true - }, - "wallsign": "wall_sign", - "wall_torch": { - "material": "WALL_TORCH", - "unspawnable": true - }, - "walltorch": "wall_torch", - "water": { - "material": "WATER", - "unspawnable": true - }, - "stationarywater": "water", - "stillwater": "water", - "swater": "water", - "water_bucket": { - "material": "WATER_BUCKET" - }, - "waterbucket": "water_bucket", - "wet_sponge": { - "material": "WET_SPONGE" - }, - "wetsponge": "wet_sponge", - "wheat": { - "material": "WHEAT" - }, - "wheat_seeds": { - "material": "WHEAT_SEEDS" - }, - "wheatseeds": "wheat_seeds", - "white_banner": { - "material": "WHITE_BANNER" - }, - "whitebanner": "white_banner", - "standingbanner": "white_banner", - "banner": "white_banner", - "wstandingbanner": "white_banner", - "wbanner": "white_banner", - "whitestandingbanner": "white_banner", - "white_bed": { - "material": "WHITE_BED" - }, - "whitebed": "white_bed", - "bed": "white_bed", - "wbed": "white_bed", - "white_carpet": { - "material": "WHITE_CARPET" - }, - "whitecarpet": "white_carpet", - "carpet": "white_carpet", - "floor": "white_carpet", - "wcarpet": "white_carpet", - "wfloor": "white_carpet", - "whitefloor": "white_carpet", - "white_concrete": { - "material": "WHITE_CONCRETE" - }, - "whiteconcrete": "white_concrete", - "concrete": "white_concrete", - "wconcrete": "white_concrete", - "white_concrete_powder": { - "material": "WHITE_CONCRETE_POWDER" - }, - "whiteconcretepowder": "white_concrete_powder", - "concretepowder": "white_concrete_powder", - "concretesand": "white_concrete_powder", - "cpowder": "white_concrete_powder", - "cdust": "white_concrete_powder", - "cp": "white_concrete_powder", - "wconcretepowder": "white_concrete_powder", - "wconcretesand": "white_concrete_powder", - "wcpowder": "white_concrete_powder", - "wcdust": "white_concrete_powder", - "wcp": "white_concrete_powder", - "whiteconcretesand": "white_concrete_powder", - "whitecpowder": "white_concrete_powder", - "whitecdust": "white_concrete_powder", - "whitecp": "white_concrete_powder", - "white_glazed_terracotta": { - "material": "WHITE_GLAZED_TERRACOTTA" - }, - "whiteglazedterracotta": "white_glazed_terracotta", - "glazedtcota": "white_glazed_terracotta", - "glazedterra": "white_glazed_terracotta", - "glazedterracotta": "white_glazed_terracotta", - "glazedterracota": "white_glazed_terracotta", - "wglazedtcota": "white_glazed_terracotta", - "wglazedterra": "white_glazed_terracotta", - "wglazedterracotta": "white_glazed_terracotta", - "wglazedterracota": "white_glazed_terracotta", - "whiteglazedtcota": "white_glazed_terracotta", - "whiteglazedterra": "white_glazed_terracotta", - "whiteglazedterracota": "white_glazed_terracotta", - "white_shulker_box": { - "material": "WHITE_SHULKER_BOX" - }, - "whiteshulkerbox": "white_shulker_box", - "wshulkerbox": "white_shulker_box", - "wchest": "white_shulker_box", - "whitechest": "white_shulker_box", - "white_stained_glass": { - "material": "WHITE_STAINED_GLASS" - }, - "whitestainedglass": "white_stained_glass", - "sglass": "white_stained_glass", - "stainedglass": "white_stained_glass", - "wglass": "white_stained_glass", - "wsglass": "white_stained_glass", - "wstainedglass": "white_stained_glass", - "whiteglass": "white_stained_glass", - "whitesglass": "white_stained_glass", - "white_stained_glass_pane": { - "material": "WHITE_STAINED_GLASS_PANE" - }, - "whitestainedglasspane": "white_stained_glass_pane", - "sglasspane": "white_stained_glass_pane", - "stainedglasspane": "white_stained_glass_pane", - "gpane": "white_stained_glass_pane", - "wglasspane": "white_stained_glass_pane", - "wsglasspane": "white_stained_glass_pane", - "wstainedglasspane": "white_stained_glass_pane", - "wgpane": "white_stained_glass_pane", - "whiteglasspane": "white_stained_glass_pane", - "whitesglasspane": "white_stained_glass_pane", - "whitegpane": "white_stained_glass_pane", - "white_terracotta": { - "material": "WHITE_TERRACOTTA" - }, - "whiteterracotta": "white_terracotta", - "sclay": "white_terracotta", - "stainedclay": "white_terracotta", - "terra": "white_terracotta", - "tcota": "white_terracotta", - "terracota": "white_terracotta", - "wclay": "white_terracotta", - "wsclay": "white_terracotta", - "wstainedclay": "white_terracotta", - "wterra": "white_terracotta", - "wtcota": "white_terracotta", - "wterracota": "white_terracotta", - "wterracotta": "white_terracotta", - "whiteclay": "white_terracotta", - "whitesclay": "white_terracotta", - "whitestainedclay": "white_terracotta", - "whiteterra": "white_terracotta", - "whitetcota": "white_terracotta", - "whiteterracota": "white_terracotta", - "white_tulip": { - "material": "WHITE_TULIP" - }, - "whitetulip": "white_tulip", - "tulipwhite": "white_tulip", - "wtulip": "white_tulip", - "tulipw": "white_tulip", - "white_wall_banner": { - "material": "WHITE_WALL_BANNER", - "unspawnable": true - }, - "whitewallbanner": "white_wall_banner", - "white_wool": { - "material": "WHITE_WOOL" - }, - "whitewool": "white_wool", - "wool": "white_wool", - "cloth": "white_wool", - "cotton": "white_wool", - "wwool": "white_wool", - "wcloth": "white_wool", - "wcotton": "white_wool", - "whitecloth": "white_wool", - "whitecotton": "white_wool", - "witch_spawn_egg": { - "material": "WITCH_SPAWN_EGG" - }, - "witchspawnegg": "witch_spawn_egg", - "witchegg": "witch_spawn_egg", - "eggwitch": "witch_spawn_egg", - "spawneggwitch": "witch_spawn_egg", - "witchspawn": "witch_spawn_egg", - "spawnwitch": "witch_spawn_egg", - "wither_skeleton_skull": { - "material": "WITHER_SKELETON_SKULL" - }, - "witherskeletonskull": "wither_skeleton_skull", - "witherskeletonhead": "wither_skeleton_skull", - "headwitherskeleton": "wither_skeleton_skull", - "stevewitherskeleton": "wither_skeleton_skull", - "witherskeletonmask": "wither_skeleton_skull", - "witherskeletonheadmask": "wither_skeleton_skull", - "wskeletonhead": "wither_skeleton_skull", - "wskeletonskull": "wither_skeleton_skull", - "headwskeleton": "wither_skeleton_skull", - "stevewskeleton": "wither_skeleton_skull", - "wskeletonmask": "wither_skeleton_skull", - "wskeletonheadmask": "wither_skeleton_skull", - "witherskhead": "wither_skeleton_skull", - "witherskskull": "wither_skeleton_skull", - "headwithersk": "wither_skeleton_skull", - "stevewithersk": "wither_skeleton_skull", - "witherskmask": "wither_skeleton_skull", - "witherskheadmask": "wither_skeleton_skull", - "wskhead": "wither_skeleton_skull", - "wskskull": "wither_skeleton_skull", - "headwsk": "wither_skeleton_skull", - "stevewsk": "wither_skeleton_skull", - "wskmask": "wither_skeleton_skull", - "wskheadmask": "wither_skeleton_skull", - "witherhead": "wither_skeleton_skull", - "witherskull": "wither_skeleton_skull", - "headwither": "wither_skeleton_skull", - "stevewither": "wither_skeleton_skull", - "withermask": "wither_skeleton_skull", - "witherheadmask": "wither_skeleton_skull", - "wither_skeleton_spawn_egg": { - "material": "WITHER_SKELETON_SPAWN_EGG" - }, - "witherskeletonspawnegg": "wither_skeleton_spawn_egg", - "witherskeletonegg": "wither_skeleton_spawn_egg", - "eggwitherskeleton": "wither_skeleton_spawn_egg", - "spawneggwitherskeleton": "wither_skeleton_spawn_egg", - "witherskeletonspawn": "wither_skeleton_spawn_egg", - "spawnwitherskeleton": "wither_skeleton_spawn_egg", - "wskeletonegg": "wither_skeleton_spawn_egg", - "eggwskeleton": "wither_skeleton_spawn_egg", - "wskeletonspawnegg": "wither_skeleton_spawn_egg", - "spawneggwskeleton": "wither_skeleton_spawn_egg", - "wskeletonspawn": "wither_skeleton_spawn_egg", - "spawnwskeleton": "wither_skeleton_spawn_egg", - "witherskegg": "wither_skeleton_spawn_egg", - "eggwithersk": "wither_skeleton_spawn_egg", - "witherskspawnegg": "wither_skeleton_spawn_egg", - "spawneggwithersk": "wither_skeleton_spawn_egg", - "witherskspawn": "wither_skeleton_spawn_egg", - "spawnwithersk": "wither_skeleton_spawn_egg", - "wskegg": "wither_skeleton_spawn_egg", - "eggwsk": "wither_skeleton_spawn_egg", - "wskspawnegg": "wither_skeleton_spawn_egg", - "spawneggwsk": "wither_skeleton_spawn_egg", - "wskspawn": "wither_skeleton_spawn_egg", - "spawnwsk": "wither_skeleton_spawn_egg", - "witheregg": "wither_skeleton_spawn_egg", - "eggwither": "wither_skeleton_spawn_egg", - "witherspawnegg": "wither_skeleton_spawn_egg", - "spawneggwither": "wither_skeleton_spawn_egg", - "witherspawn": "wither_skeleton_spawn_egg", - "spawnwither": "wither_skeleton_spawn_egg", - "wither_skeleton_wall_skull": { - "material": "WITHER_SKELETON_WALL_SKULL", - "unspawnable": true - }, - "witherskeletonwallskull": "wither_skeleton_wall_skull", - "wolf_spawn_egg": { - "material": "WOLF_SPAWN_EGG" - }, - "wolfspawnegg": "wolf_spawn_egg", - "wolfegg": "wolf_spawn_egg", - "eggwolf": "wolf_spawn_egg", - "spawneggwolf": "wolf_spawn_egg", - "wolfspawn": "wolf_spawn_egg", - "spawnwolf": "wolf_spawn_egg", - "wooden_axe": { - "material": "WOODEN_AXE" - }, - "woodenaxe": "wooden_axe", - "woodaxe": "wooden_axe", - "waxe": "wooden_axe", - "wooden_hoe": { - "material": "WOODEN_HOE" - }, - "woodenhoe": "wooden_hoe", - "woodhoe": "wooden_hoe", - "whoe": "wooden_hoe", - "wooden_pickaxe": { - "material": "WOODEN_PICKAXE" - }, - "woodenpickaxe": "wooden_pickaxe", - "woodenpick": "wooden_pickaxe", - "woodpickaxe": "wooden_pickaxe", - "woodpick": "wooden_pickaxe", - "wpickaxe": "wooden_pickaxe", - "wpick": "wooden_pickaxe", - "wooden_shovel": { - "material": "WOODEN_SHOVEL" - }, - "woodenshovel": "wooden_shovel", - "woodenspade": "wooden_shovel", - "woodshovel": "wooden_shovel", - "woodspade": "wooden_shovel", - "wshovel": "wooden_shovel", - "wspade": "wooden_shovel", - "wooden_sword": { - "material": "WOODEN_SWORD" - }, - "woodensword": "wooden_sword", - "woodsword": "wooden_sword", - "wsword": "wooden_sword", - "writable_book": { - "material": "WRITABLE_BOOK" - }, - "writablebook": "writable_book", - "written_book": { - "material": "WRITTEN_BOOK" - }, - "writtenbook": "written_book", - "yellow_banner": { - "material": "YELLOW_BANNER" - }, - "yellowbanner": "yellow_banner", - "ystandingbanner": "yellow_banner", - "ybanner": "yellow_banner", - "yellowstandingbanner": "yellow_banner", - "yellow_bed": { - "material": "YELLOW_BED" - }, - "yellowbed": "yellow_bed", - "ybed": "yellow_bed", - "yellow_carpet": { - "material": "YELLOW_CARPET" - }, - "yellowcarpet": "yellow_carpet", - "ycarpet": "yellow_carpet", - "yfloor": "yellow_carpet", - "yellowfloor": "yellow_carpet", - "yellow_concrete": { - "material": "YELLOW_CONCRETE" - }, - "yellowconcrete": "yellow_concrete", - "yconcrete": "yellow_concrete", - "yellow_concrete_powder": { - "material": "YELLOW_CONCRETE_POWDER" - }, - "yellowconcretepowder": "yellow_concrete_powder", - "yconcretepowder": "yellow_concrete_powder", - "yconcretesand": "yellow_concrete_powder", - "ycpowder": "yellow_concrete_powder", - "ycdust": "yellow_concrete_powder", - "ycp": "yellow_concrete_powder", - "yellowconcretesand": "yellow_concrete_powder", - "yellowcpowder": "yellow_concrete_powder", - "yellowcdust": "yellow_concrete_powder", - "yellowcp": "yellow_concrete_powder", - "yellow_glazed_terracotta": { - "material": "YELLOW_GLAZED_TERRACOTTA" - }, - "yellowglazedterracotta": "yellow_glazed_terracotta", - "yglazedtcota": "yellow_glazed_terracotta", - "yglazedterra": "yellow_glazed_terracotta", - "yglazedterracotta": "yellow_glazed_terracotta", - "yglazedterracota": "yellow_glazed_terracotta", - "yellowglazedtcota": "yellow_glazed_terracotta", - "yellowglazedterra": "yellow_glazed_terracotta", - "yellowglazedterracota": "yellow_glazed_terracotta", - "yellow_shulker_box": { - "material": "YELLOW_SHULKER_BOX" - }, - "yellowshulkerbox": "yellow_shulker_box", - "yshulkerbox": "yellow_shulker_box", - "ychest": "yellow_shulker_box", - "yellowchest": "yellow_shulker_box", - "yellow_stained_glass": { - "material": "YELLOW_STAINED_GLASS" - }, - "yellowstainedglass": "yellow_stained_glass", - "yglass": "yellow_stained_glass", - "ysglass": "yellow_stained_glass", - "ystainedglass": "yellow_stained_glass", - "yellowglass": "yellow_stained_glass", - "yellowsglass": "yellow_stained_glass", - "yellow_stained_glass_pane": { - "material": "YELLOW_STAINED_GLASS_PANE" - }, - "yellowstainedglasspane": "yellow_stained_glass_pane", - "yglasspane": "yellow_stained_glass_pane", - "ysglasspane": "yellow_stained_glass_pane", - "ystainedglasspane": "yellow_stained_glass_pane", - "ygpane": "yellow_stained_glass_pane", - "yellowglasspane": "yellow_stained_glass_pane", - "yellowsglasspane": "yellow_stained_glass_pane", - "yellowgpane": "yellow_stained_glass_pane", - "yellow_terracotta": { - "material": "YELLOW_TERRACOTTA" - }, - "yellowterracotta": "yellow_terracotta", - "yclay": "yellow_terracotta", - "ysclay": "yellow_terracotta", - "ystainedclay": "yellow_terracotta", - "yterra": "yellow_terracotta", - "ytcota": "yellow_terracotta", - "yterracota": "yellow_terracotta", - "yterracotta": "yellow_terracotta", - "yellowclay": "yellow_terracotta", - "yellowsclay": "yellow_terracotta", - "yellowstainedclay": "yellow_terracotta", - "yellowterra": "yellow_terracotta", - "yellowtcota": "yellow_terracotta", - "yellowterracota": "yellow_terracotta", - "yellow_wall_banner": { - "material": "YELLOW_WALL_BANNER", - "unspawnable": true - }, - "yellowwallbanner": "yellow_wall_banner", - "yellow_wool": { - "material": "YELLOW_WOOL" - }, - "yellowwool": "yellow_wool", - "ywool": "yellow_wool", - "ycloth": "yellow_wool", - "ycotton": "yellow_wool", - "yellowcloth": "yellow_wool", - "yellowcotton": "yellow_wool", - "zombie_head": { - "material": "ZOMBIE_HEAD" - }, - "zombiehead": "zombie_head", - "zombieskull": "zombie_head", - "headzombie": "zombie_head", - "stevezombie": "zombie_head", - "zombiemask": "zombie_head", - "zombieheadmask": "zombie_head", - "zombie_horse_spawn_egg": { - "material": "ZOMBIE_HORSE_SPAWN_EGG" - }, - "zombiehorsespawnegg": "zombie_horse_spawn_egg", - "zombiehorseegg": "zombie_horse_spawn_egg", - "eggzombiehorse": "zombie_horse_spawn_egg", - "spawneggzombiehorse": "zombie_horse_spawn_egg", - "zombiehorsespawn": "zombie_horse_spawn_egg", - "spawnzombiehorse": "zombie_horse_spawn_egg", - "zhorseegg": "zombie_horse_spawn_egg", - "eggzhorse": "zombie_horse_spawn_egg", - "zhorsespawnegg": "zombie_horse_spawn_egg", - "spawneggzhorse": "zombie_horse_spawn_egg", - "zhorsespawn": "zombie_horse_spawn_egg", - "spawnzhorse": "zombie_horse_spawn_egg", - "zombie_pigman_spawn_egg": { - "material": "ZOMBIE_PIGMAN_SPAWN_EGG" - }, - "zombiepigmanspawnegg": "zombie_pigman_spawn_egg", - "zombiepigmanegg": "zombie_pigman_spawn_egg", - "eggzombiepigman": "zombie_pigman_spawn_egg", - "spawneggzombiepigman": "zombie_pigman_spawn_egg", - "zombiepigmanspawn": "zombie_pigman_spawn_egg", - "spawnzombiepigman": "zombie_pigman_spawn_egg", - "zpigmanegg": "zombie_pigman_spawn_egg", - "eggzpigman": "zombie_pigman_spawn_egg", - "zpigmanspawnegg": "zombie_pigman_spawn_egg", - "spawneggzpigman": "zombie_pigman_spawn_egg", - "zpigmanspawn": "zombie_pigman_spawn_egg", - "spawnzpigman": "zombie_pigman_spawn_egg", - "pigmanegg": "zombie_pigman_spawn_egg", - "eggpigman": "zombie_pigman_spawn_egg", - "pigmanspawnegg": "zombie_pigman_spawn_egg", - "spawneggpigman": "zombie_pigman_spawn_egg", - "pigmanspawn": "zombie_pigman_spawn_egg", - "spawnpigman": "zombie_pigman_spawn_egg", - "zombiepmanegg": "zombie_pigman_spawn_egg", - "eggzombiepman": "zombie_pigman_spawn_egg", - "zombiepmanspawnegg": "zombie_pigman_spawn_egg", - "spawneggzombiepman": "zombie_pigman_spawn_egg", - "zombiepmanspawn": "zombie_pigman_spawn_egg", - "spawnzombiepman": "zombie_pigman_spawn_egg", - "zpmanegg": "zombie_pigman_spawn_egg", - "eggzpman": "zombie_pigman_spawn_egg", - "zpmanspawnegg": "zombie_pigman_spawn_egg", - "spawneggzpman": "zombie_pigman_spawn_egg", - "zpmanspawn": "zombie_pigman_spawn_egg", - "spawnzpman": "zombie_pigman_spawn_egg", - "zombiepigmegg": "zombie_pigman_spawn_egg", - "eggzombiepigm": "zombie_pigman_spawn_egg", - "zombiepigmspawnegg": "zombie_pigman_spawn_egg", - "spawneggzombiepigm": "zombie_pigman_spawn_egg", - "zombiepigmspawn": "zombie_pigman_spawn_egg", - "spawnzombiepigm": "zombie_pigman_spawn_egg", - "zpigmegg": "zombie_pigman_spawn_egg", - "eggzpigm": "zombie_pigman_spawn_egg", - "zpigmspawnegg": "zombie_pigman_spawn_egg", - "spawneggzpigm": "zombie_pigman_spawn_egg", - "zpigmspawn": "zombie_pigman_spawn_egg", - "spawnzpigm": "zombie_pigman_spawn_egg", - "zombiepigegg": "zombie_pigman_spawn_egg", - "eggzombiepig": "zombie_pigman_spawn_egg", - "zombiepigspawnegg": "zombie_pigman_spawn_egg", - "spawneggzombiepig": "zombie_pigman_spawn_egg", - "zombiepigspawn": "zombie_pigman_spawn_egg", - "spawnzombiepig": "zombie_pigman_spawn_egg", - "zpigegg": "zombie_pigman_spawn_egg", - "eggzpig": "zombie_pigman_spawn_egg", - "zpigspawnegg": "zombie_pigman_spawn_egg", - "spawneggzpig": "zombie_pigman_spawn_egg", - "zpigspawn": "zombie_pigman_spawn_egg", - "spawnzpig": "zombie_pigman_spawn_egg", - "zombiepmegg": "zombie_pigman_spawn_egg", - "eggzombiepm": "zombie_pigman_spawn_egg", - "zombiepmspawnegg": "zombie_pigman_spawn_egg", - "spawneggzombiepm": "zombie_pigman_spawn_egg", - "zombiepmspawn": "zombie_pigman_spawn_egg", - "spawnzombiepm": "zombie_pigman_spawn_egg", - "zombiepegg": "zombie_pigman_spawn_egg", - "eggzombiep": "zombie_pigman_spawn_egg", - "zombiepspawnegg": "zombie_pigman_spawn_egg", - "spawneggzombiep": "zombie_pigman_spawn_egg", - "zombiepspawn": "zombie_pigman_spawn_egg", - "spawnzombiep": "zombie_pigman_spawn_egg", - "zombiepigmenegg": "zombie_pigman_spawn_egg", - "eggzombiepigmen": "zombie_pigman_spawn_egg", - "zombiepigmenspawnegg": "zombie_pigman_spawn_egg", - "spawneggzombiepigmen": "zombie_pigman_spawn_egg", - "zombiepigmenspawn": "zombie_pigman_spawn_egg", - "spawnzombiepigmen": "zombie_pigman_spawn_egg", - "zpigmenegg": "zombie_pigman_spawn_egg", - "eggzpigmen": "zombie_pigman_spawn_egg", - "zpigmenspawnegg": "zombie_pigman_spawn_egg", - "spawneggzpigmen": "zombie_pigman_spawn_egg", - "zpigmenspawn": "zombie_pigman_spawn_egg", - "spawnzpigmen": "zombie_pigman_spawn_egg", - "pigmenegg": "zombie_pigman_spawn_egg", - "eggpigmen": "zombie_pigman_spawn_egg", - "pigmenspawnegg": "zombie_pigman_spawn_egg", - "spawneggpigmen": "zombie_pigman_spawn_egg", - "pigmenspawn": "zombie_pigman_spawn_egg", - "spawnpigmen": "zombie_pigman_spawn_egg", - "zombie_spawn_egg": { - "material": "ZOMBIE_SPAWN_EGG" - }, - "zombiespawnegg": "zombie_spawn_egg", - "zombieegg": "zombie_spawn_egg", - "eggzombie": "zombie_spawn_egg", - "spawneggzombie": "zombie_spawn_egg", - "zombiespawn": "zombie_spawn_egg", - "spawnzombie": "zombie_spawn_egg", - "zombie_villager_spawn_egg": { - "material": "ZOMBIE_VILLAGER_SPAWN_EGG" - }, - "zombievillagerspawnegg": "zombie_villager_spawn_egg", - "zombievillageregg": "zombie_villager_spawn_egg", - "eggzombievillager": "zombie_villager_spawn_egg", - "spawneggzombievillager": "zombie_villager_spawn_egg", - "zombievillagerspawn": "zombie_villager_spawn_egg", - "spawnzombievillager": "zombie_villager_spawn_egg", - "zvillageregg": "zombie_villager_spawn_egg", - "eggzvillager": "zombie_villager_spawn_egg", - "zvillagerspawnegg": "zombie_villager_spawn_egg", - "spawneggzvillager": "zombie_villager_spawn_egg", - "zvillagerspawn": "zombie_villager_spawn_egg", - "spawnzvillager": "zombie_villager_spawn_egg", - "deadvillageregg": "zombie_villager_spawn_egg", - "eggdeadvillager": "zombie_villager_spawn_egg", - "deadvillagerspawnegg": "zombie_villager_spawn_egg", - "spawneggdeadvillager": "zombie_villager_spawn_egg", - "deadvillagerspawn": "zombie_villager_spawn_egg", - "spawndeadvillager": "zombie_villager_spawn_egg", - "dvillageregg": "zombie_villager_spawn_egg", - "eggdvillager": "zombie_villager_spawn_egg", - "dvillagerspawnegg": "zombie_villager_spawn_egg", - "spawneggdvillager": "zombie_villager_spawn_egg", - "dvillagerspawn": "zombie_villager_spawn_egg", - "spawndvillager": "zombie_villager_spawn_egg", - "zvillegg": "zombie_villager_spawn_egg", - "eggzvill": "zombie_villager_spawn_egg", - "zvillspawnegg": "zombie_villager_spawn_egg", - "spawneggzvill": "zombie_villager_spawn_egg", - "zvillspawn": "zombie_villager_spawn_egg", - "spawnzvill": "zombie_villager_spawn_egg", - "dvillegg": "zombie_villager_spawn_egg", - "eggdvill": "zombie_villager_spawn_egg", - "dvillspawnegg": "zombie_villager_spawn_egg", - "spawneggdvill": "zombie_villager_spawn_egg", - "dvillspawn": "zombie_villager_spawn_egg", - "spawndvill": "zombie_villager_spawn_egg", - "zombie_wall_head": { - "material": "ZOMBIE_WALL_HEAD", - "unspawnable": true - }, - "zombiewallhead": "zombie_wall_head", - "emptypotion": { - "material": "POTION", - "potionData": { - "vanillaType": "empty", - "type": "UNCRAFTABLE", - "upgraded": false, - "extended": false - } - }, - "emptypot": "emptypotion", - "potionofempty": "emptypotion", - "potofempty": "emptypotion", - "splashemptypotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "empty", - "type": "UNCRAFTABLE", - "upgraded": false, - "extended": false - } - }, - "splemptypotion": "splashemptypotion", - "emptysplashpotion": "splashemptypotion", - "splashemptypot": "splashemptypotion", - "splemptypot": "splashemptypotion", - "emptysplashpot": "splashemptypotion", - "lingerpotempty": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "empty", - "type": "UNCRAFTABLE", - "upgraded": false, - "extended": false - } - }, - "emptylingerpot": "lingerpotempty", - "aoepotionempty": "lingerpotempty", - "emptyaoepoiont": "lingerpotempty", - "aoepotempty": "lingerpotempty", - "emptyaoepot": "lingerpotempty", - "areapotionempty": "lingerpotempty", - "emptyareapotion": "lingerpotempty", - "areapotempty": "lingerpotempty", - "emptyareapot": "lingerpotempty", - "cloudpotionempty": "lingerpotempty", - "emptycloudpotion": "lingerpotempty", - "cloudpotempty": "lingerpotempty", - "emptycloudpot": "lingerpotempty", - "arrowempty": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "empty", - "type": "UNCRAFTABLE", - "upgraded": false, - "extended": false - } - }, - "emptyarrow": "arrowempty", - "waterpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "water", - "type": "WATER", - "upgraded": false, - "extended": false - } - }, - "waterpot": "waterpotion", - "potionofwater": "waterpotion", - "potofwater": "waterpotion", - "splashwaterpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "water", - "type": "WATER", - "upgraded": false, - "extended": false - } - }, - "splwaterpotion": "splashwaterpotion", - "watersplashpotion": "splashwaterpotion", - "splashwaterpot": "splashwaterpotion", - "splwaterpot": "splashwaterpotion", - "watersplashpot": "splashwaterpotion", - "lingerpotwater": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "water", - "type": "WATER", - "upgraded": false, - "extended": false - } - }, - "waterlingerpot": "lingerpotwater", - "aoepotionwater": "lingerpotwater", - "wateraoepoiont": "lingerpotwater", - "aoepotwater": "lingerpotwater", - "wateraoepot": "lingerpotwater", - "areapotionwater": "lingerpotwater", - "waterareapotion": "lingerpotwater", - "areapotwater": "lingerpotwater", - "waterareapot": "lingerpotwater", - "cloudpotionwater": "lingerpotwater", - "watercloudpotion": "lingerpotwater", - "cloudpotwater": "lingerpotwater", - "watercloudpot": "lingerpotwater", - "arrowwater": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "water", - "type": "WATER", - "upgraded": false, - "extended": false - } - }, - "waterarrow": "arrowwater", - "mundanepotion": { - "material": "POTION", - "potionData": { - "vanillaType": "mundane", - "type": "MUNDANE", - "upgraded": false, - "extended": false - } - }, - "mundanepot": "mundanepotion", - "potionofmundane": "mundanepotion", - "potofmundane": "mundanepotion", - "splashmundanepotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "mundane", - "type": "MUNDANE", - "upgraded": false, - "extended": false - } - }, - "splmundanepotion": "splashmundanepotion", - "mundanesplashpotion": "splashmundanepotion", - "splashmundanepot": "splashmundanepotion", - "splmundanepot": "splashmundanepotion", - "mundanesplashpot": "splashmundanepotion", - "lingerpotmundane": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "mundane", - "type": "MUNDANE", - "upgraded": false, - "extended": false - } - }, - "mundanelingerpot": "lingerpotmundane", - "aoepotionmundane": "lingerpotmundane", - "mundaneaoepoiont": "lingerpotmundane", - "aoepotmundane": "lingerpotmundane", - "mundaneaoepot": "lingerpotmundane", - "areapotionmundane": "lingerpotmundane", - "mundaneareapotion": "lingerpotmundane", - "areapotmundane": "lingerpotmundane", - "mundaneareapot": "lingerpotmundane", - "cloudpotionmundane": "lingerpotmundane", - "mundanecloudpotion": "lingerpotmundane", - "cloudpotmundane": "lingerpotmundane", - "mundanecloudpot": "lingerpotmundane", - "arrowmundane": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "mundane", - "type": "MUNDANE", - "upgraded": false, - "extended": false - } - }, - "mundanearrow": "arrowmundane", - "thickpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "thick", - "type": "THICK", - "upgraded": false, - "extended": false - } - }, - "thickpot": "thickpotion", - "potionofthick": "thickpotion", - "potofthick": "thickpotion", - "splashthickpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "thick", - "type": "THICK", - "upgraded": false, - "extended": false - } - }, - "splthickpotion": "splashthickpotion", - "thicksplashpotion": "splashthickpotion", - "splashthickpot": "splashthickpotion", - "splthickpot": "splashthickpotion", - "thicksplashpot": "splashthickpotion", - "lingerpotthick": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "thick", - "type": "THICK", - "upgraded": false, - "extended": false - } - }, - "thicklingerpot": "lingerpotthick", - "aoepotionthick": "lingerpotthick", - "thickaoepoiont": "lingerpotthick", - "aoepotthick": "lingerpotthick", - "thickaoepot": "lingerpotthick", - "areapotionthick": "lingerpotthick", - "thickareapotion": "lingerpotthick", - "areapotthick": "lingerpotthick", - "thickareapot": "lingerpotthick", - "cloudpotionthick": "lingerpotthick", - "thickcloudpotion": "lingerpotthick", - "cloudpotthick": "lingerpotthick", - "thickcloudpot": "lingerpotthick", - "arrowthick": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "thick", - "type": "THICK", - "upgraded": false, - "extended": false - } - }, - "thickarrow": "arrowthick", - "awkwardpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "awkward", - "type": "AWKWARD", - "upgraded": false, - "extended": false - } - }, - "awkwardpot": "awkwardpotion", - "potionofawkward": "awkwardpotion", - "potofawkward": "awkwardpotion", - "splashawkwardpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "awkward", - "type": "AWKWARD", - "upgraded": false, - "extended": false - } - }, - "splawkwardpotion": "splashawkwardpotion", - "awkwardsplashpotion": "splashawkwardpotion", - "splashawkwardpot": "splashawkwardpotion", - "splawkwardpot": "splashawkwardpotion", - "awkwardsplashpot": "splashawkwardpotion", - "lingerpotawkward": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "awkward", - "type": "AWKWARD", - "upgraded": false, - "extended": false - } - }, - "awkwardlingerpot": "lingerpotawkward", - "aoepotionawkward": "lingerpotawkward", - "awkwardaoepoiont": "lingerpotawkward", - "aoepotawkward": "lingerpotawkward", - "awkwardaoepot": "lingerpotawkward", - "areapotionawkward": "lingerpotawkward", - "awkwardareapotion": "lingerpotawkward", - "areapotawkward": "lingerpotawkward", - "awkwardareapot": "lingerpotawkward", - "cloudpotionawkward": "lingerpotawkward", - "awkwardcloudpotion": "lingerpotawkward", - "cloudpotawkward": "lingerpotawkward", - "awkwardcloudpot": "lingerpotawkward", - "arrowawkward": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "awkward", - "type": "AWKWARD", - "upgraded": false, - "extended": false - } - }, - "awkwardarrow": "arrowawkward", - "nightvisionpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": false - } - }, - "nvpotion": "nightvisionpotion", - "nvisionpotion": "nightvisionpotion", - "nightvpotion": "nightvisionpotion", - "darkvispotion": "nightvisionpotion", - "dvisionpotion": "nightvisionpotion", - "darkvpotion": "nightvisionpotion", - "nightvisionpot": "nightvisionpotion", - "nvpot": "nightvisionpotion", - "nvisionpot": "nightvisionpotion", - "nightvpot": "nightvisionpotion", - "darkvispot": "nightvisionpotion", - "dvisionpot": "nightvisionpotion", - "darkvpot": "nightvisionpotion", - "potionofnightvision": "nightvisionpotion", - "potionofnv": "nightvisionpotion", - "potionofnvision": "nightvisionpotion", - "potionofnightv": "nightvisionpotion", - "potionofdarkvis": "nightvisionpotion", - "potionofdvision": "nightvisionpotion", - "potionofdarkv": "nightvisionpotion", - "potofnightvision": "nightvisionpotion", - "potofnv": "nightvisionpotion", - "potofnvision": "nightvisionpotion", - "potofnightv": "nightvisionpotion", - "potofdarkvis": "nightvisionpotion", - "potofdvision": "nightvisionpotion", - "potofdarkv": "nightvisionpotion", - "splashnightvisionpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": false - } - }, - "splashnvpotion": "splashnightvisionpotion", - "splashnvisionpotion": "splashnightvisionpotion", - "splashnightvpotion": "splashnightvisionpotion", - "splashdarkvispotion": "splashnightvisionpotion", - "splashdvisionpotion": "splashnightvisionpotion", - "splashdarkvpotion": "splashnightvisionpotion", - "splnightvisionpotion": "splashnightvisionpotion", - "splnvpotion": "splashnightvisionpotion", - "splnvisionpotion": "splashnightvisionpotion", - "splnightvpotion": "splashnightvisionpotion", - "spldarkvispotion": "splashnightvisionpotion", - "spldvisionpotion": "splashnightvisionpotion", - "spldarkvpotion": "splashnightvisionpotion", - "nightvisionsplashpotion": "splashnightvisionpotion", - "nvsplashpotion": "splashnightvisionpotion", - "nvisionsplashpotion": "splashnightvisionpotion", - "nightvsplashpotion": "splashnightvisionpotion", - "darkvissplashpotion": "splashnightvisionpotion", - "dvisionsplashpotion": "splashnightvisionpotion", - "darkvsplashpotion": "splashnightvisionpotion", - "splashnightvisionpot": "splashnightvisionpotion", - "splashnvpot": "splashnightvisionpotion", - "splashnvisionpot": "splashnightvisionpotion", - "splashnightvpot": "splashnightvisionpotion", - "splashdarkvispot": "splashnightvisionpotion", - "splashdvisionpot": "splashnightvisionpotion", - "splashdarkvpot": "splashnightvisionpotion", - "splnightvisionpot": "splashnightvisionpotion", - "splnvpot": "splashnightvisionpotion", - "splnvisionpot": "splashnightvisionpotion", - "splnightvpot": "splashnightvisionpotion", - "spldarkvispot": "splashnightvisionpotion", - "spldvisionpot": "splashnightvisionpotion", - "spldarkvpot": "splashnightvisionpotion", - "nightvisionsplashpot": "splashnightvisionpotion", - "nvsplashpot": "splashnightvisionpotion", - "nvisionsplashpot": "splashnightvisionpotion", - "nightvsplashpot": "splashnightvisionpotion", - "darkvissplashpot": "splashnightvisionpotion", - "dvisionsplashpot": "splashnightvisionpotion", - "darkvsplashpot": "splashnightvisionpotion", - "lingerpotnightvision": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": false - } - }, - "lingerpotnv": "lingerpotnightvision", - "lingerpotnvision": "lingerpotnightvision", - "lingerpotnightv": "lingerpotnightvision", - "lingerpotdarkvis": "lingerpotnightvision", - "lingerpotdvision": "lingerpotnightvision", - "lingerpotdarkv": "lingerpotnightvision", - "nightvisionlingerpot": "lingerpotnightvision", - "nvlingerpot": "lingerpotnightvision", - "nvisionlingerpot": "lingerpotnightvision", - "nightvlingerpot": "lingerpotnightvision", - "darkvislingerpot": "lingerpotnightvision", - "dvisionlingerpot": "lingerpotnightvision", - "darkvlingerpot": "lingerpotnightvision", - "aoepotionnightvision": "lingerpotnightvision", - "aoepotionnv": "lingerpotnightvision", - "aoepotionnvision": "lingerpotnightvision", - "aoepotionnightv": "lingerpotnightvision", - "aoepotiondarkvis": "lingerpotnightvision", - "aoepotiondvision": "lingerpotnightvision", - "aoepotiondarkv": "lingerpotnightvision", - "nightvisionaoepoiont": "lingerpotnightvision", - "nvaoepoiont": "lingerpotnightvision", - "nvisionaoepoiont": "lingerpotnightvision", - "nightvaoepoiont": "lingerpotnightvision", - "darkvisaoepoiont": "lingerpotnightvision", - "dvisionaoepoiont": "lingerpotnightvision", - "darkvaoepoiont": "lingerpotnightvision", - "aoepotnightvision": "lingerpotnightvision", - "aoepotnv": "lingerpotnightvision", - "aoepotnvision": "lingerpotnightvision", - "aoepotnightv": "lingerpotnightvision", - "aoepotdarkvis": "lingerpotnightvision", - "aoepotdvision": "lingerpotnightvision", - "aoepotdarkv": "lingerpotnightvision", - "nightvisionaoepot": "lingerpotnightvision", - "nvaoepot": "lingerpotnightvision", - "nvisionaoepot": "lingerpotnightvision", - "nightvaoepot": "lingerpotnightvision", - "darkvisaoepot": "lingerpotnightvision", - "dvisionaoepot": "lingerpotnightvision", - "darkvaoepot": "lingerpotnightvision", - "areapotionnightvision": "lingerpotnightvision", - "areapotionnv": "lingerpotnightvision", - "areapotionnvision": "lingerpotnightvision", - "areapotionnightv": "lingerpotnightvision", - "areapotiondarkvis": "lingerpotnightvision", - "areapotiondvision": "lingerpotnightvision", - "areapotiondarkv": "lingerpotnightvision", - "nightvisionareapotion": "lingerpotnightvision", - "nvareapotion": "lingerpotnightvision", - "nvisionareapotion": "lingerpotnightvision", - "nightvareapotion": "lingerpotnightvision", - "darkvisareapotion": "lingerpotnightvision", - "dvisionareapotion": "lingerpotnightvision", - "darkvareapotion": "lingerpotnightvision", - "areapotnightvision": "lingerpotnightvision", - "areapotnv": "lingerpotnightvision", - "areapotnvision": "lingerpotnightvision", - "areapotnightv": "lingerpotnightvision", - "areapotdarkvis": "lingerpotnightvision", - "areapotdvision": "lingerpotnightvision", - "areapotdarkv": "lingerpotnightvision", - "nightvisionareapot": "lingerpotnightvision", - "nvareapot": "lingerpotnightvision", - "nvisionareapot": "lingerpotnightvision", - "nightvareapot": "lingerpotnightvision", - "darkvisareapot": "lingerpotnightvision", - "dvisionareapot": "lingerpotnightvision", - "darkvareapot": "lingerpotnightvision", - "cloudpotionnightvision": "lingerpotnightvision", - "cloudpotionnv": "lingerpotnightvision", - "cloudpotionnvision": "lingerpotnightvision", - "cloudpotionnightv": "lingerpotnightvision", - "cloudpotiondarkvis": "lingerpotnightvision", - "cloudpotiondvision": "lingerpotnightvision", - "cloudpotiondarkv": "lingerpotnightvision", - "nightvisioncloudpotion": "lingerpotnightvision", - "nvcloudpotion": "lingerpotnightvision", - "nvisioncloudpotion": "lingerpotnightvision", - "nightvcloudpotion": "lingerpotnightvision", - "darkviscloudpotion": "lingerpotnightvision", - "dvisioncloudpotion": "lingerpotnightvision", - "darkvcloudpotion": "lingerpotnightvision", - "cloudpotnightvision": "lingerpotnightvision", - "cloudpotnv": "lingerpotnightvision", - "cloudpotnvision": "lingerpotnightvision", - "cloudpotnightv": "lingerpotnightvision", - "cloudpotdarkvis": "lingerpotnightvision", - "cloudpotdvision": "lingerpotnightvision", - "cloudpotdarkv": "lingerpotnightvision", - "nightvisioncloudpot": "lingerpotnightvision", - "nvcloudpot": "lingerpotnightvision", - "nvisioncloudpot": "lingerpotnightvision", - "nightvcloudpot": "lingerpotnightvision", - "darkviscloudpot": "lingerpotnightvision", - "dvisioncloudpot": "lingerpotnightvision", - "darkvcloudpot": "lingerpotnightvision", - "arrownightvision": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": false - } - }, - "arrownv": "arrownightvision", - "arrownvision": "arrownightvision", - "arrownightv": "arrownightvision", - "arrowdarkvis": "arrownightvision", - "arrowdvision": "arrownightvision", - "arrowdarkv": "arrownightvision", - "nightvisionarrow": "arrownightvision", - "nvarrow": "arrownightvision", - "nvisionarrow": "arrownightvision", - "nightvarrow": "arrownightvision", - "darkvisarrow": "arrownightvision", - "dvisionarrow": "arrownightvision", - "darkvarrow": "arrownightvision", - "nightvision2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": true - } - }, - "nightvisionlongpotion": "nightvision2potion", - "nightvisionextendedpotion": "nightvision2potion", - "nightvisionexpotion": "nightvision2potion", - "nightvisionlevel2potion": "nightvision2potion", - "nv2potion": "nightvision2potion", - "nvlongpotion": "nightvision2potion", - "nvextendedpotion": "nightvision2potion", - "nvexpotion": "nightvision2potion", - "nvlevel2potion": "nightvision2potion", - "nvision2potion": "nightvision2potion", - "nvisionlongpotion": "nightvision2potion", - "nvisionextendedpotion": "nightvision2potion", - "nvisionexpotion": "nightvision2potion", - "nvisionlevel2potion": "nightvision2potion", - "nightv2potion": "nightvision2potion", - "nightvlongpotion": "nightvision2potion", - "nightvextendedpotion": "nightvision2potion", - "nightvexpotion": "nightvision2potion", - "nightvlevel2potion": "nightvision2potion", - "darkvis2potion": "nightvision2potion", - "darkvislongpotion": "nightvision2potion", - "darkvisextendedpotion": "nightvision2potion", - "darkvisexpotion": "nightvision2potion", - "darkvislevel2potion": "nightvision2potion", - "dvision2potion": "nightvision2potion", - "dvisionlongpotion": "nightvision2potion", - "dvisionextendedpotion": "nightvision2potion", - "dvisionexpotion": "nightvision2potion", - "dvisionlevel2potion": "nightvision2potion", - "darkv2potion": "nightvision2potion", - "darkvlongpotion": "nightvision2potion", - "darkvextendedpotion": "nightvision2potion", - "darkvexpotion": "nightvision2potion", - "darkvlevel2potion": "nightvision2potion", - "nightvision2pot": "nightvision2potion", - "nightvisionlongpot": "nightvision2potion", - "nightvisionextendedpot": "nightvision2potion", - "nightvisionexpot": "nightvision2potion", - "nightvisionlevel2pot": "nightvision2potion", - "nv2pot": "nightvision2potion", - "nvlongpot": "nightvision2potion", - "nvextendedpot": "nightvision2potion", - "nvexpot": "nightvision2potion", - "nvlevel2pot": "nightvision2potion", - "nvision2pot": "nightvision2potion", - "nvisionlongpot": "nightvision2potion", - "nvisionextendedpot": "nightvision2potion", - "nvisionexpot": "nightvision2potion", - "nvisionlevel2pot": "nightvision2potion", - "nightv2pot": "nightvision2potion", - "nightvlongpot": "nightvision2potion", - "nightvextendedpot": "nightvision2potion", - "nightvexpot": "nightvision2potion", - "nightvlevel2pot": "nightvision2potion", - "darkvis2pot": "nightvision2potion", - "darkvislongpot": "nightvision2potion", - "darkvisextendedpot": "nightvision2potion", - "darkvisexpot": "nightvision2potion", - "darkvislevel2pot": "nightvision2potion", - "dvision2pot": "nightvision2potion", - "dvisionlongpot": "nightvision2potion", - "dvisionextendedpot": "nightvision2potion", - "dvisionexpot": "nightvision2potion", - "dvisionlevel2pot": "nightvision2potion", - "darkv2pot": "nightvision2potion", - "darkvlongpot": "nightvision2potion", - "darkvextendedpot": "nightvision2potion", - "darkvexpot": "nightvision2potion", - "darkvlevel2pot": "nightvision2potion", - "potionofnightvision2": "nightvision2potion", - "potionofnightvisionlong": "nightvision2potion", - "potionofnightvisionextended": "nightvision2potion", - "potionofnightvisionex": "nightvision2potion", - "potionofnightvisionlevel2": "nightvision2potion", - "potionofnv2": "nightvision2potion", - "potionofnvlong": "nightvision2potion", - "potionofnvextended": "nightvision2potion", - "potionofnvex": "nightvision2potion", - "potionofnvlevel2": "nightvision2potion", - "potionofnvision2": "nightvision2potion", - "potionofnvisionlong": "nightvision2potion", - "potionofnvisionextended": "nightvision2potion", - "potionofnvisionex": "nightvision2potion", - "potionofnvisionlevel2": "nightvision2potion", - "potionofnightv2": "nightvision2potion", - "potionofnightvlong": "nightvision2potion", - "potionofnightvextended": "nightvision2potion", - "potionofnightvex": "nightvision2potion", - "potionofnightvlevel2": "nightvision2potion", - "potionofdarkvis2": "nightvision2potion", - "potionofdarkvislong": "nightvision2potion", - "potionofdarkvisextended": "nightvision2potion", - "potionofdarkvisex": "nightvision2potion", - "potionofdarkvislevel2": "nightvision2potion", - "potionofdvision2": "nightvision2potion", - "potionofdvisionlong": "nightvision2potion", - "potionofdvisionextended": "nightvision2potion", - "potionofdvisionex": "nightvision2potion", - "potionofdvisionlevel2": "nightvision2potion", - "potionofdarkv2": "nightvision2potion", - "potionofdarkvlong": "nightvision2potion", - "potionofdarkvextended": "nightvision2potion", - "potionofdarkvex": "nightvision2potion", - "potionofdarkvlevel2": "nightvision2potion", - "potofnightvision2": "nightvision2potion", - "potofnightvisionlong": "nightvision2potion", - "potofnightvisionextended": "nightvision2potion", - "potofnightvisionex": "nightvision2potion", - "potofnightvisionlevel2": "nightvision2potion", - "potofnv2": "nightvision2potion", - "potofnvlong": "nightvision2potion", - "potofnvextended": "nightvision2potion", - "potofnvex": "nightvision2potion", - "potofnvlevel2": "nightvision2potion", - "potofnvision2": "nightvision2potion", - "potofnvisionlong": "nightvision2potion", - "potofnvisionextended": "nightvision2potion", - "potofnvisionex": "nightvision2potion", - "potofnvisionlevel2": "nightvision2potion", - "potofnightv2": "nightvision2potion", - "potofnightvlong": "nightvision2potion", - "potofnightvextended": "nightvision2potion", - "potofnightvex": "nightvision2potion", - "potofnightvlevel2": "nightvision2potion", - "potofdarkvis2": "nightvision2potion", - "potofdarkvislong": "nightvision2potion", - "potofdarkvisextended": "nightvision2potion", - "potofdarkvisex": "nightvision2potion", - "potofdarkvislevel2": "nightvision2potion", - "potofdvision2": "nightvision2potion", - "potofdvisionlong": "nightvision2potion", - "potofdvisionextended": "nightvision2potion", - "potofdvisionex": "nightvision2potion", - "potofdvisionlevel2": "nightvision2potion", - "potofdarkv2": "nightvision2potion", - "potofdarkvlong": "nightvision2potion", - "potofdarkvextended": "nightvision2potion", - "potofdarkvex": "nightvision2potion", - "potofdarkvlevel2": "nightvision2potion", - "splashnightvision2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": true - } - }, - "splashnightvisionlongpotion": "splashnightvision2potion", - "splashnightvisionextendedpotion": "splashnightvision2potion", - "splashnightvisionexpotion": "splashnightvision2potion", - "splashnightvisionlevel2potion": "splashnightvision2potion", - "splashnv2potion": "splashnightvision2potion", - "splashnvlongpotion": "splashnightvision2potion", - "splashnvextendedpotion": "splashnightvision2potion", - "splashnvexpotion": "splashnightvision2potion", - "splashnvlevel2potion": "splashnightvision2potion", - "splashnvision2potion": "splashnightvision2potion", - "splashnvisionlongpotion": "splashnightvision2potion", - "splashnvisionextendedpotion": "splashnightvision2potion", - "splashnvisionexpotion": "splashnightvision2potion", - "splashnvisionlevel2potion": "splashnightvision2potion", - "splashnightv2potion": "splashnightvision2potion", - "splashnightvlongpotion": "splashnightvision2potion", - "splashnightvextendedpotion": "splashnightvision2potion", - "splashnightvexpotion": "splashnightvision2potion", - "splashnightvlevel2potion": "splashnightvision2potion", - "splashdarkvis2potion": "splashnightvision2potion", - "splashdarkvislongpotion": "splashnightvision2potion", - "splashdarkvisextendedpotion": "splashnightvision2potion", - "splashdarkvisexpotion": "splashnightvision2potion", - "splashdarkvislevel2potion": "splashnightvision2potion", - "splashdvision2potion": "splashnightvision2potion", - "splashdvisionlongpotion": "splashnightvision2potion", - "splashdvisionextendedpotion": "splashnightvision2potion", - "splashdvisionexpotion": "splashnightvision2potion", - "splashdvisionlevel2potion": "splashnightvision2potion", - "splashdarkv2potion": "splashnightvision2potion", - "splashdarkvlongpotion": "splashnightvision2potion", - "splashdarkvextendedpotion": "splashnightvision2potion", - "splashdarkvexpotion": "splashnightvision2potion", - "splashdarkvlevel2potion": "splashnightvision2potion", - "splnightvision2potion": "splashnightvision2potion", - "splnightvisionlongpotion": "splashnightvision2potion", - "splnightvisionextendedpotion": "splashnightvision2potion", - "splnightvisionexpotion": "splashnightvision2potion", - "splnightvisionlevel2potion": "splashnightvision2potion", - "splnv2potion": "splashnightvision2potion", - "splnvlongpotion": "splashnightvision2potion", - "splnvextendedpotion": "splashnightvision2potion", - "splnvexpotion": "splashnightvision2potion", - "splnvlevel2potion": "splashnightvision2potion", - "splnvision2potion": "splashnightvision2potion", - "splnvisionlongpotion": "splashnightvision2potion", - "splnvisionextendedpotion": "splashnightvision2potion", - "splnvisionexpotion": "splashnightvision2potion", - "splnvisionlevel2potion": "splashnightvision2potion", - "splnightv2potion": "splashnightvision2potion", - "splnightvlongpotion": "splashnightvision2potion", - "splnightvextendedpotion": "splashnightvision2potion", - "splnightvexpotion": "splashnightvision2potion", - "splnightvlevel2potion": "splashnightvision2potion", - "spldarkvis2potion": "splashnightvision2potion", - "spldarkvislongpotion": "splashnightvision2potion", - "spldarkvisextendedpotion": "splashnightvision2potion", - "spldarkvisexpotion": "splashnightvision2potion", - "spldarkvislevel2potion": "splashnightvision2potion", - "spldvision2potion": "splashnightvision2potion", - "spldvisionlongpotion": "splashnightvision2potion", - "spldvisionextendedpotion": "splashnightvision2potion", - "spldvisionexpotion": "splashnightvision2potion", - "spldvisionlevel2potion": "splashnightvision2potion", - "spldarkv2potion": "splashnightvision2potion", - "spldarkvlongpotion": "splashnightvision2potion", - "spldarkvextendedpotion": "splashnightvision2potion", - "spldarkvexpotion": "splashnightvision2potion", - "spldarkvlevel2potion": "splashnightvision2potion", - "nightvision2splashpotion": "splashnightvision2potion", - "nightvisionlongsplashpotion": "splashnightvision2potion", - "nightvisionextendedsplashpotion": "splashnightvision2potion", - "nightvisionexsplashpotion": "splashnightvision2potion", - "nightvisionlevel2splashpotion": "splashnightvision2potion", - "nv2splashpotion": "splashnightvision2potion", - "nvlongsplashpotion": "splashnightvision2potion", - "nvextendedsplashpotion": "splashnightvision2potion", - "nvexsplashpotion": "splashnightvision2potion", - "nvlevel2splashpotion": "splashnightvision2potion", - "nvision2splashpotion": "splashnightvision2potion", - "nvisionlongsplashpotion": "splashnightvision2potion", - "nvisionextendedsplashpotion": "splashnightvision2potion", - "nvisionexsplashpotion": "splashnightvision2potion", - "nvisionlevel2splashpotion": "splashnightvision2potion", - "nightv2splashpotion": "splashnightvision2potion", - "nightvlongsplashpotion": "splashnightvision2potion", - "nightvextendedsplashpotion": "splashnightvision2potion", - "nightvexsplashpotion": "splashnightvision2potion", - "nightvlevel2splashpotion": "splashnightvision2potion", - "darkvis2splashpotion": "splashnightvision2potion", - "darkvislongsplashpotion": "splashnightvision2potion", - "darkvisextendedsplashpotion": "splashnightvision2potion", - "darkvisexsplashpotion": "splashnightvision2potion", - "darkvislevel2splashpotion": "splashnightvision2potion", - "dvision2splashpotion": "splashnightvision2potion", - "dvisionlongsplashpotion": "splashnightvision2potion", - "dvisionextendedsplashpotion": "splashnightvision2potion", - "dvisionexsplashpotion": "splashnightvision2potion", - "dvisionlevel2splashpotion": "splashnightvision2potion", - "darkv2splashpotion": "splashnightvision2potion", - "darkvlongsplashpotion": "splashnightvision2potion", - "darkvextendedsplashpotion": "splashnightvision2potion", - "darkvexsplashpotion": "splashnightvision2potion", - "darkvlevel2splashpotion": "splashnightvision2potion", - "splashnightvision2pot": "splashnightvision2potion", - "splashnightvisionlongpot": "splashnightvision2potion", - "splashnightvisionextendedpot": "splashnightvision2potion", - "splashnightvisionexpot": "splashnightvision2potion", - "splashnightvisionlevel2pot": "splashnightvision2potion", - "splashnv2pot": "splashnightvision2potion", - "splashnvlongpot": "splashnightvision2potion", - "splashnvextendedpot": "splashnightvision2potion", - "splashnvexpot": "splashnightvision2potion", - "splashnvlevel2pot": "splashnightvision2potion", - "splashnvision2pot": "splashnightvision2potion", - "splashnvisionlongpot": "splashnightvision2potion", - "splashnvisionextendedpot": "splashnightvision2potion", - "splashnvisionexpot": "splashnightvision2potion", - "splashnvisionlevel2pot": "splashnightvision2potion", - "splashnightv2pot": "splashnightvision2potion", - "splashnightvlongpot": "splashnightvision2potion", - "splashnightvextendedpot": "splashnightvision2potion", - "splashnightvexpot": "splashnightvision2potion", - "splashnightvlevel2pot": "splashnightvision2potion", - "splashdarkvis2pot": "splashnightvision2potion", - "splashdarkvislongpot": "splashnightvision2potion", - "splashdarkvisextendedpot": "splashnightvision2potion", - "splashdarkvisexpot": "splashnightvision2potion", - "splashdarkvislevel2pot": "splashnightvision2potion", - "splashdvision2pot": "splashnightvision2potion", - "splashdvisionlongpot": "splashnightvision2potion", - "splashdvisionextendedpot": "splashnightvision2potion", - "splashdvisionexpot": "splashnightvision2potion", - "splashdvisionlevel2pot": "splashnightvision2potion", - "splashdarkv2pot": "splashnightvision2potion", - "splashdarkvlongpot": "splashnightvision2potion", - "splashdarkvextendedpot": "splashnightvision2potion", - "splashdarkvexpot": "splashnightvision2potion", - "splashdarkvlevel2pot": "splashnightvision2potion", - "splnightvision2pot": "splashnightvision2potion", - "splnightvisionlongpot": "splashnightvision2potion", - "splnightvisionextendedpot": "splashnightvision2potion", - "splnightvisionexpot": "splashnightvision2potion", - "splnightvisionlevel2pot": "splashnightvision2potion", - "splnv2pot": "splashnightvision2potion", - "splnvlongpot": "splashnightvision2potion", - "splnvextendedpot": "splashnightvision2potion", - "splnvexpot": "splashnightvision2potion", - "splnvlevel2pot": "splashnightvision2potion", - "splnvision2pot": "splashnightvision2potion", - "splnvisionlongpot": "splashnightvision2potion", - "splnvisionextendedpot": "splashnightvision2potion", - "splnvisionexpot": "splashnightvision2potion", - "splnvisionlevel2pot": "splashnightvision2potion", - "splnightv2pot": "splashnightvision2potion", - "splnightvlongpot": "splashnightvision2potion", - "splnightvextendedpot": "splashnightvision2potion", - "splnightvexpot": "splashnightvision2potion", - "splnightvlevel2pot": "splashnightvision2potion", - "spldarkvis2pot": "splashnightvision2potion", - "spldarkvislongpot": "splashnightvision2potion", - "spldarkvisextendedpot": "splashnightvision2potion", - "spldarkvisexpot": "splashnightvision2potion", - "spldarkvislevel2pot": "splashnightvision2potion", - "spldvision2pot": "splashnightvision2potion", - "spldvisionlongpot": "splashnightvision2potion", - "spldvisionextendedpot": "splashnightvision2potion", - "spldvisionexpot": "splashnightvision2potion", - "spldvisionlevel2pot": "splashnightvision2potion", - "spldarkv2pot": "splashnightvision2potion", - "spldarkvlongpot": "splashnightvision2potion", - "spldarkvextendedpot": "splashnightvision2potion", - "spldarkvexpot": "splashnightvision2potion", - "spldarkvlevel2pot": "splashnightvision2potion", - "nightvision2splashpot": "splashnightvision2potion", - "nightvisionlongsplashpot": "splashnightvision2potion", - "nightvisionextendedsplashpot": "splashnightvision2potion", - "nightvisionexsplashpot": "splashnightvision2potion", - "nightvisionlevel2splashpot": "splashnightvision2potion", - "nv2splashpot": "splashnightvision2potion", - "nvlongsplashpot": "splashnightvision2potion", - "nvextendedsplashpot": "splashnightvision2potion", - "nvexsplashpot": "splashnightvision2potion", - "nvlevel2splashpot": "splashnightvision2potion", - "nvision2splashpot": "splashnightvision2potion", - "nvisionlongsplashpot": "splashnightvision2potion", - "nvisionextendedsplashpot": "splashnightvision2potion", - "nvisionexsplashpot": "splashnightvision2potion", - "nvisionlevel2splashpot": "splashnightvision2potion", - "nightv2splashpot": "splashnightvision2potion", - "nightvlongsplashpot": "splashnightvision2potion", - "nightvextendedsplashpot": "splashnightvision2potion", - "nightvexsplashpot": "splashnightvision2potion", - "nightvlevel2splashpot": "splashnightvision2potion", - "darkvis2splashpot": "splashnightvision2potion", - "darkvislongsplashpot": "splashnightvision2potion", - "darkvisextendedsplashpot": "splashnightvision2potion", - "darkvisexsplashpot": "splashnightvision2potion", - "darkvislevel2splashpot": "splashnightvision2potion", - "dvision2splashpot": "splashnightvision2potion", - "dvisionlongsplashpot": "splashnightvision2potion", - "dvisionextendedsplashpot": "splashnightvision2potion", - "dvisionexsplashpot": "splashnightvision2potion", - "dvisionlevel2splashpot": "splashnightvision2potion", - "darkv2splashpot": "splashnightvision2potion", - "darkvlongsplashpot": "splashnightvision2potion", - "darkvextendedsplashpot": "splashnightvision2potion", - "darkvexsplashpot": "splashnightvision2potion", - "darkvlevel2splashpot": "splashnightvision2potion", - "lingerpotnightvision2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": true - } - }, - "lingerpotnightvisionlong": "lingerpotnightvision2", - "lingerpotnightvisionextended": "lingerpotnightvision2", - "lingerpotnightvisionex": "lingerpotnightvision2", - "lingerpotnightvisionlevel2": "lingerpotnightvision2", - "lingerpotnv2": "lingerpotnightvision2", - "lingerpotnvlong": "lingerpotnightvision2", - "lingerpotnvextended": "lingerpotnightvision2", - "lingerpotnvex": "lingerpotnightvision2", - "lingerpotnvlevel2": "lingerpotnightvision2", - "lingerpotnvision2": "lingerpotnightvision2", - "lingerpotnvisionlong": "lingerpotnightvision2", - "lingerpotnvisionextended": "lingerpotnightvision2", - "lingerpotnvisionex": "lingerpotnightvision2", - "lingerpotnvisionlevel2": "lingerpotnightvision2", - "lingerpotnightv2": "lingerpotnightvision2", - "lingerpotnightvlong": "lingerpotnightvision2", - "lingerpotnightvextended": "lingerpotnightvision2", - "lingerpotnightvex": "lingerpotnightvision2", - "lingerpotnightvlevel2": "lingerpotnightvision2", - "lingerpotdarkvis2": "lingerpotnightvision2", - "lingerpotdarkvislong": "lingerpotnightvision2", - "lingerpotdarkvisextended": "lingerpotnightvision2", - "lingerpotdarkvisex": "lingerpotnightvision2", - "lingerpotdarkvislevel2": "lingerpotnightvision2", - "lingerpotdvision2": "lingerpotnightvision2", - "lingerpotdvisionlong": "lingerpotnightvision2", - "lingerpotdvisionextended": "lingerpotnightvision2", - "lingerpotdvisionex": "lingerpotnightvision2", - "lingerpotdvisionlevel2": "lingerpotnightvision2", - "lingerpotdarkv2": "lingerpotnightvision2", - "lingerpotdarkvlong": "lingerpotnightvision2", - "lingerpotdarkvextended": "lingerpotnightvision2", - "lingerpotdarkvex": "lingerpotnightvision2", - "lingerpotdarkvlevel2": "lingerpotnightvision2", - "nightvisionlingerpot2": "lingerpotnightvision2", - "nightvisionlingerpotlong": "lingerpotnightvision2", - "nightvisionlingerpotextended": "lingerpotnightvision2", - "nightvisionlingerpotex": "lingerpotnightvision2", - "nightvisionlingerpotlevel2": "lingerpotnightvision2", - "nvlingerpot2": "lingerpotnightvision2", - "nvlingerpotlong": "lingerpotnightvision2", - "nvlingerpotextended": "lingerpotnightvision2", - "nvlingerpotex": "lingerpotnightvision2", - "nvlingerpotlevel2": "lingerpotnightvision2", - "nvisionlingerpot2": "lingerpotnightvision2", - "nvisionlingerpotlong": "lingerpotnightvision2", - "nvisionlingerpotextended": "lingerpotnightvision2", - "nvisionlingerpotex": "lingerpotnightvision2", - "nvisionlingerpotlevel2": "lingerpotnightvision2", - "nightvlingerpot2": "lingerpotnightvision2", - "nightvlingerpotlong": "lingerpotnightvision2", - "nightvlingerpotextended": "lingerpotnightvision2", - "nightvlingerpotex": "lingerpotnightvision2", - "nightvlingerpotlevel2": "lingerpotnightvision2", - "darkvislingerpot2": "lingerpotnightvision2", - "darkvislingerpotlong": "lingerpotnightvision2", - "darkvislingerpotextended": "lingerpotnightvision2", - "darkvislingerpotex": "lingerpotnightvision2", - "darkvislingerpotlevel2": "lingerpotnightvision2", - "dvisionlingerpot2": "lingerpotnightvision2", - "dvisionlingerpotlong": "lingerpotnightvision2", - "dvisionlingerpotextended": "lingerpotnightvision2", - "dvisionlingerpotex": "lingerpotnightvision2", - "dvisionlingerpotlevel2": "lingerpotnightvision2", - "darkvlingerpot2": "lingerpotnightvision2", - "darkvlingerpotlong": "lingerpotnightvision2", - "darkvlingerpotextended": "lingerpotnightvision2", - "darkvlingerpotex": "lingerpotnightvision2", - "darkvlingerpotlevel2": "lingerpotnightvision2", - "aoepotionnightvision2": "lingerpotnightvision2", - "aoepotionnightvisionlong": "lingerpotnightvision2", - "aoepotionnightvisionextended": "lingerpotnightvision2", - "aoepotionnightvisionex": "lingerpotnightvision2", - "aoepotionnightvisionlevel2": "lingerpotnightvision2", - "aoepotionnv2": "lingerpotnightvision2", - "aoepotionnvlong": "lingerpotnightvision2", - "aoepotionnvextended": "lingerpotnightvision2", - "aoepotionnvex": "lingerpotnightvision2", - "aoepotionnvlevel2": "lingerpotnightvision2", - "aoepotionnvision2": "lingerpotnightvision2", - "aoepotionnvisionlong": "lingerpotnightvision2", - "aoepotionnvisionextended": "lingerpotnightvision2", - "aoepotionnvisionex": "lingerpotnightvision2", - "aoepotionnvisionlevel2": "lingerpotnightvision2", - "aoepotionnightv2": "lingerpotnightvision2", - "aoepotionnightvlong": "lingerpotnightvision2", - "aoepotionnightvextended": "lingerpotnightvision2", - "aoepotionnightvex": "lingerpotnightvision2", - "aoepotionnightvlevel2": "lingerpotnightvision2", - "aoepotiondarkvis2": "lingerpotnightvision2", - "aoepotiondarkvislong": "lingerpotnightvision2", - "aoepotiondarkvisextended": "lingerpotnightvision2", - "aoepotiondarkvisex": "lingerpotnightvision2", - "aoepotiondarkvislevel2": "lingerpotnightvision2", - "aoepotiondvision2": "lingerpotnightvision2", - "aoepotiondvisionlong": "lingerpotnightvision2", - "aoepotiondvisionextended": "lingerpotnightvision2", - "aoepotiondvisionex": "lingerpotnightvision2", - "aoepotiondvisionlevel2": "lingerpotnightvision2", - "aoepotiondarkv2": "lingerpotnightvision2", - "aoepotiondarkvlong": "lingerpotnightvision2", - "aoepotiondarkvextended": "lingerpotnightvision2", - "aoepotiondarkvex": "lingerpotnightvision2", - "aoepotiondarkvlevel2": "lingerpotnightvision2", - "nightvisionaoepoiont2": "lingerpotnightvision2", - "nightvisionaoepoiontlong": "lingerpotnightvision2", - "nightvisionaoepoiontextended": "lingerpotnightvision2", - "nightvisionaoepoiontex": "lingerpotnightvision2", - "nightvisionaoepoiontlevel2": "lingerpotnightvision2", - "nvaoepoiont2": "lingerpotnightvision2", - "nvaoepoiontlong": "lingerpotnightvision2", - "nvaoepoiontextended": "lingerpotnightvision2", - "nvaoepoiontex": "lingerpotnightvision2", - "nvaoepoiontlevel2": "lingerpotnightvision2", - "nvisionaoepoiont2": "lingerpotnightvision2", - "nvisionaoepoiontlong": "lingerpotnightvision2", - "nvisionaoepoiontextended": "lingerpotnightvision2", - "nvisionaoepoiontex": "lingerpotnightvision2", - "nvisionaoepoiontlevel2": "lingerpotnightvision2", - "nightvaoepoiont2": "lingerpotnightvision2", - "nightvaoepoiontlong": "lingerpotnightvision2", - "nightvaoepoiontextended": "lingerpotnightvision2", - "nightvaoepoiontex": "lingerpotnightvision2", - "nightvaoepoiontlevel2": "lingerpotnightvision2", - "darkvisaoepoiont2": "lingerpotnightvision2", - "darkvisaoepoiontlong": "lingerpotnightvision2", - "darkvisaoepoiontextended": "lingerpotnightvision2", - "darkvisaoepoiontex": "lingerpotnightvision2", - "darkvisaoepoiontlevel2": "lingerpotnightvision2", - "dvisionaoepoiont2": "lingerpotnightvision2", - "dvisionaoepoiontlong": "lingerpotnightvision2", - "dvisionaoepoiontextended": "lingerpotnightvision2", - "dvisionaoepoiontex": "lingerpotnightvision2", - "dvisionaoepoiontlevel2": "lingerpotnightvision2", - "darkvaoepoiont2": "lingerpotnightvision2", - "darkvaoepoiontlong": "lingerpotnightvision2", - "darkvaoepoiontextended": "lingerpotnightvision2", - "darkvaoepoiontex": "lingerpotnightvision2", - "darkvaoepoiontlevel2": "lingerpotnightvision2", - "aoepotnightvision2": "lingerpotnightvision2", - "aoepotnightvisionlong": "lingerpotnightvision2", - "aoepotnightvisionextended": "lingerpotnightvision2", - "aoepotnightvisionex": "lingerpotnightvision2", - "aoepotnightvisionlevel2": "lingerpotnightvision2", - "aoepotnv2": "lingerpotnightvision2", - "aoepotnvlong": "lingerpotnightvision2", - "aoepotnvextended": "lingerpotnightvision2", - "aoepotnvex": "lingerpotnightvision2", - "aoepotnvlevel2": "lingerpotnightvision2", - "aoepotnvision2": "lingerpotnightvision2", - "aoepotnvisionlong": "lingerpotnightvision2", - "aoepotnvisionextended": "lingerpotnightvision2", - "aoepotnvisionex": "lingerpotnightvision2", - "aoepotnvisionlevel2": "lingerpotnightvision2", - "aoepotnightv2": "lingerpotnightvision2", - "aoepotnightvlong": "lingerpotnightvision2", - "aoepotnightvextended": "lingerpotnightvision2", - "aoepotnightvex": "lingerpotnightvision2", - "aoepotnightvlevel2": "lingerpotnightvision2", - "aoepotdarkvis2": "lingerpotnightvision2", - "aoepotdarkvislong": "lingerpotnightvision2", - "aoepotdarkvisextended": "lingerpotnightvision2", - "aoepotdarkvisex": "lingerpotnightvision2", - "aoepotdarkvislevel2": "lingerpotnightvision2", - "aoepotdvision2": "lingerpotnightvision2", - "aoepotdvisionlong": "lingerpotnightvision2", - "aoepotdvisionextended": "lingerpotnightvision2", - "aoepotdvisionex": "lingerpotnightvision2", - "aoepotdvisionlevel2": "lingerpotnightvision2", - "aoepotdarkv2": "lingerpotnightvision2", - "aoepotdarkvlong": "lingerpotnightvision2", - "aoepotdarkvextended": "lingerpotnightvision2", - "aoepotdarkvex": "lingerpotnightvision2", - "aoepotdarkvlevel2": "lingerpotnightvision2", - "nightvisionaoepot2": "lingerpotnightvision2", - "nightvisionaoepotlong": "lingerpotnightvision2", - "nightvisionaoepotextended": "lingerpotnightvision2", - "nightvisionaoepotex": "lingerpotnightvision2", - "nightvisionaoepotlevel2": "lingerpotnightvision2", - "nvaoepot2": "lingerpotnightvision2", - "nvaoepotlong": "lingerpotnightvision2", - "nvaoepotextended": "lingerpotnightvision2", - "nvaoepotex": "lingerpotnightvision2", - "nvaoepotlevel2": "lingerpotnightvision2", - "nvisionaoepot2": "lingerpotnightvision2", - "nvisionaoepotlong": "lingerpotnightvision2", - "nvisionaoepotextended": "lingerpotnightvision2", - "nvisionaoepotex": "lingerpotnightvision2", - "nvisionaoepotlevel2": "lingerpotnightvision2", - "nightvaoepot2": "lingerpotnightvision2", - "nightvaoepotlong": "lingerpotnightvision2", - "nightvaoepotextended": "lingerpotnightvision2", - "nightvaoepotex": "lingerpotnightvision2", - "nightvaoepotlevel2": "lingerpotnightvision2", - "darkvisaoepot2": "lingerpotnightvision2", - "darkvisaoepotlong": "lingerpotnightvision2", - "darkvisaoepotextended": "lingerpotnightvision2", - "darkvisaoepotex": "lingerpotnightvision2", - "darkvisaoepotlevel2": "lingerpotnightvision2", - "dvisionaoepot2": "lingerpotnightvision2", - "dvisionaoepotlong": "lingerpotnightvision2", - "dvisionaoepotextended": "lingerpotnightvision2", - "dvisionaoepotex": "lingerpotnightvision2", - "dvisionaoepotlevel2": "lingerpotnightvision2", - "darkvaoepot2": "lingerpotnightvision2", - "darkvaoepotlong": "lingerpotnightvision2", - "darkvaoepotextended": "lingerpotnightvision2", - "darkvaoepotex": "lingerpotnightvision2", - "darkvaoepotlevel2": "lingerpotnightvision2", - "areapotionnightvision2": "lingerpotnightvision2", - "areapotionnightvisionlong": "lingerpotnightvision2", - "areapotionnightvisionextended": "lingerpotnightvision2", - "areapotionnightvisionex": "lingerpotnightvision2", - "areapotionnightvisionlevel2": "lingerpotnightvision2", - "areapotionnv2": "lingerpotnightvision2", - "areapotionnvlong": "lingerpotnightvision2", - "areapotionnvextended": "lingerpotnightvision2", - "areapotionnvex": "lingerpotnightvision2", - "areapotionnvlevel2": "lingerpotnightvision2", - "areapotionnvision2": "lingerpotnightvision2", - "areapotionnvisionlong": "lingerpotnightvision2", - "areapotionnvisionextended": "lingerpotnightvision2", - "areapotionnvisionex": "lingerpotnightvision2", - "areapotionnvisionlevel2": "lingerpotnightvision2", - "areapotionnightv2": "lingerpotnightvision2", - "areapotionnightvlong": "lingerpotnightvision2", - "areapotionnightvextended": "lingerpotnightvision2", - "areapotionnightvex": "lingerpotnightvision2", - "areapotionnightvlevel2": "lingerpotnightvision2", - "areapotiondarkvis2": "lingerpotnightvision2", - "areapotiondarkvislong": "lingerpotnightvision2", - "areapotiondarkvisextended": "lingerpotnightvision2", - "areapotiondarkvisex": "lingerpotnightvision2", - "areapotiondarkvislevel2": "lingerpotnightvision2", - "areapotiondvision2": "lingerpotnightvision2", - "areapotiondvisionlong": "lingerpotnightvision2", - "areapotiondvisionextended": "lingerpotnightvision2", - "areapotiondvisionex": "lingerpotnightvision2", - "areapotiondvisionlevel2": "lingerpotnightvision2", - "areapotiondarkv2": "lingerpotnightvision2", - "areapotiondarkvlong": "lingerpotnightvision2", - "areapotiondarkvextended": "lingerpotnightvision2", - "areapotiondarkvex": "lingerpotnightvision2", - "areapotiondarkvlevel2": "lingerpotnightvision2", - "nightvisionareapotion2": "lingerpotnightvision2", - "nightvisionareapotionlong": "lingerpotnightvision2", - "nightvisionareapotionextended": "lingerpotnightvision2", - "nightvisionareapotionex": "lingerpotnightvision2", - "nightvisionareapotionlevel2": "lingerpotnightvision2", - "nvareapotion2": "lingerpotnightvision2", - "nvareapotionlong": "lingerpotnightvision2", - "nvareapotionextended": "lingerpotnightvision2", - "nvareapotionex": "lingerpotnightvision2", - "nvareapotionlevel2": "lingerpotnightvision2", - "nvisionareapotion2": "lingerpotnightvision2", - "nvisionareapotionlong": "lingerpotnightvision2", - "nvisionareapotionextended": "lingerpotnightvision2", - "nvisionareapotionex": "lingerpotnightvision2", - "nvisionareapotionlevel2": "lingerpotnightvision2", - "nightvareapotion2": "lingerpotnightvision2", - "nightvareapotionlong": "lingerpotnightvision2", - "nightvareapotionextended": "lingerpotnightvision2", - "nightvareapotionex": "lingerpotnightvision2", - "nightvareapotionlevel2": "lingerpotnightvision2", - "darkvisareapotion2": "lingerpotnightvision2", - "darkvisareapotionlong": "lingerpotnightvision2", - "darkvisareapotionextended": "lingerpotnightvision2", - "darkvisareapotionex": "lingerpotnightvision2", - "darkvisareapotionlevel2": "lingerpotnightvision2", - "dvisionareapotion2": "lingerpotnightvision2", - "dvisionareapotionlong": "lingerpotnightvision2", - "dvisionareapotionextended": "lingerpotnightvision2", - "dvisionareapotionex": "lingerpotnightvision2", - "dvisionareapotionlevel2": "lingerpotnightvision2", - "darkvareapotion2": "lingerpotnightvision2", - "darkvareapotionlong": "lingerpotnightvision2", - "darkvareapotionextended": "lingerpotnightvision2", - "darkvareapotionex": "lingerpotnightvision2", - "darkvareapotionlevel2": "lingerpotnightvision2", - "areapotnightvision2": "lingerpotnightvision2", - "areapotnightvisionlong": "lingerpotnightvision2", - "areapotnightvisionextended": "lingerpotnightvision2", - "areapotnightvisionex": "lingerpotnightvision2", - "areapotnightvisionlevel2": "lingerpotnightvision2", - "areapotnv2": "lingerpotnightvision2", - "areapotnvlong": "lingerpotnightvision2", - "areapotnvextended": "lingerpotnightvision2", - "areapotnvex": "lingerpotnightvision2", - "areapotnvlevel2": "lingerpotnightvision2", - "areapotnvision2": "lingerpotnightvision2", - "areapotnvisionlong": "lingerpotnightvision2", - "areapotnvisionextended": "lingerpotnightvision2", - "areapotnvisionex": "lingerpotnightvision2", - "areapotnvisionlevel2": "lingerpotnightvision2", - "areapotnightv2": "lingerpotnightvision2", - "areapotnightvlong": "lingerpotnightvision2", - "areapotnightvextended": "lingerpotnightvision2", - "areapotnightvex": "lingerpotnightvision2", - "areapotnightvlevel2": "lingerpotnightvision2", - "areapotdarkvis2": "lingerpotnightvision2", - "areapotdarkvislong": "lingerpotnightvision2", - "areapotdarkvisextended": "lingerpotnightvision2", - "areapotdarkvisex": "lingerpotnightvision2", - "areapotdarkvislevel2": "lingerpotnightvision2", - "areapotdvision2": "lingerpotnightvision2", - "areapotdvisionlong": "lingerpotnightvision2", - "areapotdvisionextended": "lingerpotnightvision2", - "areapotdvisionex": "lingerpotnightvision2", - "areapotdvisionlevel2": "lingerpotnightvision2", - "areapotdarkv2": "lingerpotnightvision2", - "areapotdarkvlong": "lingerpotnightvision2", - "areapotdarkvextended": "lingerpotnightvision2", - "areapotdarkvex": "lingerpotnightvision2", - "areapotdarkvlevel2": "lingerpotnightvision2", - "nightvisionareapot2": "lingerpotnightvision2", - "nightvisionareapotlong": "lingerpotnightvision2", - "nightvisionareapotextended": "lingerpotnightvision2", - "nightvisionareapotex": "lingerpotnightvision2", - "nightvisionareapotlevel2": "lingerpotnightvision2", - "nvareapot2": "lingerpotnightvision2", - "nvareapotlong": "lingerpotnightvision2", - "nvareapotextended": "lingerpotnightvision2", - "nvareapotex": "lingerpotnightvision2", - "nvareapotlevel2": "lingerpotnightvision2", - "nvisionareapot2": "lingerpotnightvision2", - "nvisionareapotlong": "lingerpotnightvision2", - "nvisionareapotextended": "lingerpotnightvision2", - "nvisionareapotex": "lingerpotnightvision2", - "nvisionareapotlevel2": "lingerpotnightvision2", - "nightvareapot2": "lingerpotnightvision2", - "nightvareapotlong": "lingerpotnightvision2", - "nightvareapotextended": "lingerpotnightvision2", - "nightvareapotex": "lingerpotnightvision2", - "nightvareapotlevel2": "lingerpotnightvision2", - "darkvisareapot2": "lingerpotnightvision2", - "darkvisareapotlong": "lingerpotnightvision2", - "darkvisareapotextended": "lingerpotnightvision2", - "darkvisareapotex": "lingerpotnightvision2", - "darkvisareapotlevel2": "lingerpotnightvision2", - "dvisionareapot2": "lingerpotnightvision2", - "dvisionareapotlong": "lingerpotnightvision2", - "dvisionareapotextended": "lingerpotnightvision2", - "dvisionareapotex": "lingerpotnightvision2", - "dvisionareapotlevel2": "lingerpotnightvision2", - "darkvareapot2": "lingerpotnightvision2", - "darkvareapotlong": "lingerpotnightvision2", - "darkvareapotextended": "lingerpotnightvision2", - "darkvareapotex": "lingerpotnightvision2", - "darkvareapotlevel2": "lingerpotnightvision2", - "cloudpotionnightvision2": "lingerpotnightvision2", - "cloudpotionnightvisionlong": "lingerpotnightvision2", - "cloudpotionnightvisionextended": "lingerpotnightvision2", - "cloudpotionnightvisionex": "lingerpotnightvision2", - "cloudpotionnightvisionlevel2": "lingerpotnightvision2", - "cloudpotionnv2": "lingerpotnightvision2", - "cloudpotionnvlong": "lingerpotnightvision2", - "cloudpotionnvextended": "lingerpotnightvision2", - "cloudpotionnvex": "lingerpotnightvision2", - "cloudpotionnvlevel2": "lingerpotnightvision2", - "cloudpotionnvision2": "lingerpotnightvision2", - "cloudpotionnvisionlong": "lingerpotnightvision2", - "cloudpotionnvisionextended": "lingerpotnightvision2", - "cloudpotionnvisionex": "lingerpotnightvision2", - "cloudpotionnvisionlevel2": "lingerpotnightvision2", - "cloudpotionnightv2": "lingerpotnightvision2", - "cloudpotionnightvlong": "lingerpotnightvision2", - "cloudpotionnightvextended": "lingerpotnightvision2", - "cloudpotionnightvex": "lingerpotnightvision2", - "cloudpotionnightvlevel2": "lingerpotnightvision2", - "cloudpotiondarkvis2": "lingerpotnightvision2", - "cloudpotiondarkvislong": "lingerpotnightvision2", - "cloudpotiondarkvisextended": "lingerpotnightvision2", - "cloudpotiondarkvisex": "lingerpotnightvision2", - "cloudpotiondarkvislevel2": "lingerpotnightvision2", - "cloudpotiondvision2": "lingerpotnightvision2", - "cloudpotiondvisionlong": "lingerpotnightvision2", - "cloudpotiondvisionextended": "lingerpotnightvision2", - "cloudpotiondvisionex": "lingerpotnightvision2", - "cloudpotiondvisionlevel2": "lingerpotnightvision2", - "cloudpotiondarkv2": "lingerpotnightvision2", - "cloudpotiondarkvlong": "lingerpotnightvision2", - "cloudpotiondarkvextended": "lingerpotnightvision2", - "cloudpotiondarkvex": "lingerpotnightvision2", - "cloudpotiondarkvlevel2": "lingerpotnightvision2", - "nightvisioncloudpotion2": "lingerpotnightvision2", - "nightvisioncloudpotionlong": "lingerpotnightvision2", - "nightvisioncloudpotionextended": "lingerpotnightvision2", - "nightvisioncloudpotionex": "lingerpotnightvision2", - "nightvisioncloudpotionlevel2": "lingerpotnightvision2", - "nvcloudpotion2": "lingerpotnightvision2", - "nvcloudpotionlong": "lingerpotnightvision2", - "nvcloudpotionextended": "lingerpotnightvision2", - "nvcloudpotionex": "lingerpotnightvision2", - "nvcloudpotionlevel2": "lingerpotnightvision2", - "nvisioncloudpotion2": "lingerpotnightvision2", - "nvisioncloudpotionlong": "lingerpotnightvision2", - "nvisioncloudpotionextended": "lingerpotnightvision2", - "nvisioncloudpotionex": "lingerpotnightvision2", - "nvisioncloudpotionlevel2": "lingerpotnightvision2", - "nightvcloudpotion2": "lingerpotnightvision2", - "nightvcloudpotionlong": "lingerpotnightvision2", - "nightvcloudpotionextended": "lingerpotnightvision2", - "nightvcloudpotionex": "lingerpotnightvision2", - "nightvcloudpotionlevel2": "lingerpotnightvision2", - "darkviscloudpotion2": "lingerpotnightvision2", - "darkviscloudpotionlong": "lingerpotnightvision2", - "darkviscloudpotionextended": "lingerpotnightvision2", - "darkviscloudpotionex": "lingerpotnightvision2", - "darkviscloudpotionlevel2": "lingerpotnightvision2", - "dvisioncloudpotion2": "lingerpotnightvision2", - "dvisioncloudpotionlong": "lingerpotnightvision2", - "dvisioncloudpotionextended": "lingerpotnightvision2", - "dvisioncloudpotionex": "lingerpotnightvision2", - "dvisioncloudpotionlevel2": "lingerpotnightvision2", - "darkvcloudpotion2": "lingerpotnightvision2", - "darkvcloudpotionlong": "lingerpotnightvision2", - "darkvcloudpotionextended": "lingerpotnightvision2", - "darkvcloudpotionex": "lingerpotnightvision2", - "darkvcloudpotionlevel2": "lingerpotnightvision2", - "cloudpotnightvision2": "lingerpotnightvision2", - "cloudpotnightvisionlong": "lingerpotnightvision2", - "cloudpotnightvisionextended": "lingerpotnightvision2", - "cloudpotnightvisionex": "lingerpotnightvision2", - "cloudpotnightvisionlevel2": "lingerpotnightvision2", - "cloudpotnv2": "lingerpotnightvision2", - "cloudpotnvlong": "lingerpotnightvision2", - "cloudpotnvextended": "lingerpotnightvision2", - "cloudpotnvex": "lingerpotnightvision2", - "cloudpotnvlevel2": "lingerpotnightvision2", - "cloudpotnvision2": "lingerpotnightvision2", - "cloudpotnvisionlong": "lingerpotnightvision2", - "cloudpotnvisionextended": "lingerpotnightvision2", - "cloudpotnvisionex": "lingerpotnightvision2", - "cloudpotnvisionlevel2": "lingerpotnightvision2", - "cloudpotnightv2": "lingerpotnightvision2", - "cloudpotnightvlong": "lingerpotnightvision2", - "cloudpotnightvextended": "lingerpotnightvision2", - "cloudpotnightvex": "lingerpotnightvision2", - "cloudpotnightvlevel2": "lingerpotnightvision2", - "cloudpotdarkvis2": "lingerpotnightvision2", - "cloudpotdarkvislong": "lingerpotnightvision2", - "cloudpotdarkvisextended": "lingerpotnightvision2", - "cloudpotdarkvisex": "lingerpotnightvision2", - "cloudpotdarkvislevel2": "lingerpotnightvision2", - "cloudpotdvision2": "lingerpotnightvision2", - "cloudpotdvisionlong": "lingerpotnightvision2", - "cloudpotdvisionextended": "lingerpotnightvision2", - "cloudpotdvisionex": "lingerpotnightvision2", - "cloudpotdvisionlevel2": "lingerpotnightvision2", - "cloudpotdarkv2": "lingerpotnightvision2", - "cloudpotdarkvlong": "lingerpotnightvision2", - "cloudpotdarkvextended": "lingerpotnightvision2", - "cloudpotdarkvex": "lingerpotnightvision2", - "cloudpotdarkvlevel2": "lingerpotnightvision2", - "nightvisioncloudpot2": "lingerpotnightvision2", - "nightvisioncloudpotlong": "lingerpotnightvision2", - "nightvisioncloudpotextended": "lingerpotnightvision2", - "nightvisioncloudpotex": "lingerpotnightvision2", - "nightvisioncloudpotlevel2": "lingerpotnightvision2", - "nvcloudpot2": "lingerpotnightvision2", - "nvcloudpotlong": "lingerpotnightvision2", - "nvcloudpotextended": "lingerpotnightvision2", - "nvcloudpotex": "lingerpotnightvision2", - "nvcloudpotlevel2": "lingerpotnightvision2", - "nvisioncloudpot2": "lingerpotnightvision2", - "nvisioncloudpotlong": "lingerpotnightvision2", - "nvisioncloudpotextended": "lingerpotnightvision2", - "nvisioncloudpotex": "lingerpotnightvision2", - "nvisioncloudpotlevel2": "lingerpotnightvision2", - "nightvcloudpot2": "lingerpotnightvision2", - "nightvcloudpotlong": "lingerpotnightvision2", - "nightvcloudpotextended": "lingerpotnightvision2", - "nightvcloudpotex": "lingerpotnightvision2", - "nightvcloudpotlevel2": "lingerpotnightvision2", - "darkviscloudpot2": "lingerpotnightvision2", - "darkviscloudpotlong": "lingerpotnightvision2", - "darkviscloudpotextended": "lingerpotnightvision2", - "darkviscloudpotex": "lingerpotnightvision2", - "darkviscloudpotlevel2": "lingerpotnightvision2", - "dvisioncloudpot2": "lingerpotnightvision2", - "dvisioncloudpotlong": "lingerpotnightvision2", - "dvisioncloudpotextended": "lingerpotnightvision2", - "dvisioncloudpotex": "lingerpotnightvision2", - "dvisioncloudpotlevel2": "lingerpotnightvision2", - "darkvcloudpot2": "lingerpotnightvision2", - "darkvcloudpotlong": "lingerpotnightvision2", - "darkvcloudpotextended": "lingerpotnightvision2", - "darkvcloudpotex": "lingerpotnightvision2", - "darkvcloudpotlevel2": "lingerpotnightvision2", - "arrownightvision2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_night_vision", - "type": "NIGHT_VISION", - "upgraded": false, - "extended": true - } - }, - "arrownightvisionlong": "arrownightvision2", - "arrownightvisionextended": "arrownightvision2", - "arrownightvisionex": "arrownightvision2", - "arrownightvisionlevel2": "arrownightvision2", - "arrownv2": "arrownightvision2", - "arrownvlong": "arrownightvision2", - "arrownvextended": "arrownightvision2", - "arrownvex": "arrownightvision2", - "arrownvlevel2": "arrownightvision2", - "arrownvision2": "arrownightvision2", - "arrownvisionlong": "arrownightvision2", - "arrownvisionextended": "arrownightvision2", - "arrownvisionex": "arrownightvision2", - "arrownvisionlevel2": "arrownightvision2", - "arrownightv2": "arrownightvision2", - "arrownightvlong": "arrownightvision2", - "arrownightvextended": "arrownightvision2", - "arrownightvex": "arrownightvision2", - "arrownightvlevel2": "arrownightvision2", - "arrowdarkvis2": "arrownightvision2", - "arrowdarkvislong": "arrownightvision2", - "arrowdarkvisextended": "arrownightvision2", - "arrowdarkvisex": "arrownightvision2", - "arrowdarkvislevel2": "arrownightvision2", - "arrowdvision2": "arrownightvision2", - "arrowdvisionlong": "arrownightvision2", - "arrowdvisionextended": "arrownightvision2", - "arrowdvisionex": "arrownightvision2", - "arrowdvisionlevel2": "arrownightvision2", - "arrowdarkv2": "arrownightvision2", - "arrowdarkvlong": "arrownightvision2", - "arrowdarkvextended": "arrownightvision2", - "arrowdarkvex": "arrownightvision2", - "arrowdarkvlevel2": "arrownightvision2", - "nightvisionarrow2": "arrownightvision2", - "nightvisionarrowlong": "arrownightvision2", - "nightvisionarrowextended": "arrownightvision2", - "nightvisionarrowex": "arrownightvision2", - "nightvisionarrowlevel2": "arrownightvision2", - "nvarrow2": "arrownightvision2", - "nvarrowlong": "arrownightvision2", - "nvarrowextended": "arrownightvision2", - "nvarrowex": "arrownightvision2", - "nvarrowlevel2": "arrownightvision2", - "nvisionarrow2": "arrownightvision2", - "nvisionarrowlong": "arrownightvision2", - "nvisionarrowextended": "arrownightvision2", - "nvisionarrowex": "arrownightvision2", - "nvisionarrowlevel2": "arrownightvision2", - "nightvarrow2": "arrownightvision2", - "nightvarrowlong": "arrownightvision2", - "nightvarrowextended": "arrownightvision2", - "nightvarrowex": "arrownightvision2", - "nightvarrowlevel2": "arrownightvision2", - "darkvisarrow2": "arrownightvision2", - "darkvisarrowlong": "arrownightvision2", - "darkvisarrowextended": "arrownightvision2", - "darkvisarrowex": "arrownightvision2", - "darkvisarrowlevel2": "arrownightvision2", - "dvisionarrow2": "arrownightvision2", - "dvisionarrowlong": "arrownightvision2", - "dvisionarrowextended": "arrownightvision2", - "dvisionarrowex": "arrownightvision2", - "dvisionarrowlevel2": "arrownightvision2", - "darkvarrow2": "arrownightvision2", - "darkvarrowlong": "arrownightvision2", - "darkvarrowextended": "arrownightvision2", - "darkvarrowex": "arrownightvision2", - "darkvarrowlevel2": "arrownightvision2", - "invisibilitypotion": { - "material": "POTION", - "potionData": { - "vanillaType": "invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": false - } - }, - "invispotion": "invisibilitypotion", - "invisiblepotion": "invisibilitypotion", - "invpotion": "invisibilitypotion", - "invisibilitypot": "invisibilitypotion", - "invispot": "invisibilitypotion", - "invisiblepot": "invisibilitypotion", - "invpot": "invisibilitypotion", - "potionofinvisibility": "invisibilitypotion", - "potionofinvis": "invisibilitypotion", - "potionofinvisible": "invisibilitypotion", - "potionofinv": "invisibilitypotion", - "potofinvisibility": "invisibilitypotion", - "potofinvis": "invisibilitypotion", - "potofinvisible": "invisibilitypotion", - "potofinv": "invisibilitypotion", - "splashinvisibilitypotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": false - } - }, - "splashinvispotion": "splashinvisibilitypotion", - "splashinvisiblepotion": "splashinvisibilitypotion", - "splashinvpotion": "splashinvisibilitypotion", - "splinvisibilitypotion": "splashinvisibilitypotion", - "splinvispotion": "splashinvisibilitypotion", - "splinvisiblepotion": "splashinvisibilitypotion", - "splinvpotion": "splashinvisibilitypotion", - "invisibilitysplashpotion": "splashinvisibilitypotion", - "invissplashpotion": "splashinvisibilitypotion", - "invisiblesplashpotion": "splashinvisibilitypotion", - "invsplashpotion": "splashinvisibilitypotion", - "splashinvisibilitypot": "splashinvisibilitypotion", - "splashinvispot": "splashinvisibilitypotion", - "splashinvisiblepot": "splashinvisibilitypotion", - "splashinvpot": "splashinvisibilitypotion", - "splinvisibilitypot": "splashinvisibilitypotion", - "splinvispot": "splashinvisibilitypotion", - "splinvisiblepot": "splashinvisibilitypotion", - "splinvpot": "splashinvisibilitypotion", - "invisibilitysplashpot": "splashinvisibilitypotion", - "invissplashpot": "splashinvisibilitypotion", - "invisiblesplashpot": "splashinvisibilitypotion", - "invsplashpot": "splashinvisibilitypotion", - "lingerpotinvisibility": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": false - } - }, - "lingerpotinvis": "lingerpotinvisibility", - "lingerpotinvisible": "lingerpotinvisibility", - "lingerpotinv": "lingerpotinvisibility", - "invisibilitylingerpot": "lingerpotinvisibility", - "invislingerpot": "lingerpotinvisibility", - "invisiblelingerpot": "lingerpotinvisibility", - "invlingerpot": "lingerpotinvisibility", - "aoepotioninvisibility": "lingerpotinvisibility", - "aoepotioninvis": "lingerpotinvisibility", - "aoepotioninvisible": "lingerpotinvisibility", - "aoepotioninv": "lingerpotinvisibility", - "invisibilityaoepoiont": "lingerpotinvisibility", - "invisaoepoiont": "lingerpotinvisibility", - "invisibleaoepoiont": "lingerpotinvisibility", - "invaoepoiont": "lingerpotinvisibility", - "aoepotinvisibility": "lingerpotinvisibility", - "aoepotinvis": "lingerpotinvisibility", - "aoepotinvisible": "lingerpotinvisibility", - "aoepotinv": "lingerpotinvisibility", - "invisibilityaoepot": "lingerpotinvisibility", - "invisaoepot": "lingerpotinvisibility", - "invisibleaoepot": "lingerpotinvisibility", - "invaoepot": "lingerpotinvisibility", - "areapotioninvisibility": "lingerpotinvisibility", - "areapotioninvis": "lingerpotinvisibility", - "areapotioninvisible": "lingerpotinvisibility", - "areapotioninv": "lingerpotinvisibility", - "invisibilityareapotion": "lingerpotinvisibility", - "invisareapotion": "lingerpotinvisibility", - "invisibleareapotion": "lingerpotinvisibility", - "invareapotion": "lingerpotinvisibility", - "areapotinvisibility": "lingerpotinvisibility", - "areapotinvis": "lingerpotinvisibility", - "areapotinvisible": "lingerpotinvisibility", - "areapotinv": "lingerpotinvisibility", - "invisibilityareapot": "lingerpotinvisibility", - "invisareapot": "lingerpotinvisibility", - "invisibleareapot": "lingerpotinvisibility", - "invareapot": "lingerpotinvisibility", - "cloudpotioninvisibility": "lingerpotinvisibility", - "cloudpotioninvis": "lingerpotinvisibility", - "cloudpotioninvisible": "lingerpotinvisibility", - "cloudpotioninv": "lingerpotinvisibility", - "invisibilitycloudpotion": "lingerpotinvisibility", - "inviscloudpotion": "lingerpotinvisibility", - "invisiblecloudpotion": "lingerpotinvisibility", - "invcloudpotion": "lingerpotinvisibility", - "cloudpotinvisibility": "lingerpotinvisibility", - "cloudpotinvis": "lingerpotinvisibility", - "cloudpotinvisible": "lingerpotinvisibility", - "cloudpotinv": "lingerpotinvisibility", - "invisibilitycloudpot": "lingerpotinvisibility", - "inviscloudpot": "lingerpotinvisibility", - "invisiblecloudpot": "lingerpotinvisibility", - "invcloudpot": "lingerpotinvisibility", - "arrowinvisibility": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": false - } - }, - "arrowinvis": "arrowinvisibility", - "arrowinvisible": "arrowinvisibility", - "arrowinv": "arrowinvisibility", - "invisibilityarrow": "arrowinvisibility", - "invisarrow": "arrowinvisibility", - "invisiblearrow": "arrowinvisibility", - "invarrow": "arrowinvisibility", - "invisibility2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": true - } - }, - "invisibilitylongpotion": "invisibility2potion", - "invisibilityextendedpotion": "invisibility2potion", - "invisibilityexpotion": "invisibility2potion", - "invisibilitylevel2potion": "invisibility2potion", - "invis2potion": "invisibility2potion", - "invislongpotion": "invisibility2potion", - "invisextendedpotion": "invisibility2potion", - "invisexpotion": "invisibility2potion", - "invislevel2potion": "invisibility2potion", - "invisible2potion": "invisibility2potion", - "invisiblelongpotion": "invisibility2potion", - "invisibleextendedpotion": "invisibility2potion", - "invisibleexpotion": "invisibility2potion", - "invisiblelevel2potion": "invisibility2potion", - "inv2potion": "invisibility2potion", - "invlongpotion": "invisibility2potion", - "invextendedpotion": "invisibility2potion", - "invexpotion": "invisibility2potion", - "invlevel2potion": "invisibility2potion", - "invisibility2pot": "invisibility2potion", - "invisibilitylongpot": "invisibility2potion", - "invisibilityextendedpot": "invisibility2potion", - "invisibilityexpot": "invisibility2potion", - "invisibilitylevel2pot": "invisibility2potion", - "invis2pot": "invisibility2potion", - "invislongpot": "invisibility2potion", - "invisextendedpot": "invisibility2potion", - "invisexpot": "invisibility2potion", - "invislevel2pot": "invisibility2potion", - "invisible2pot": "invisibility2potion", - "invisiblelongpot": "invisibility2potion", - "invisibleextendedpot": "invisibility2potion", - "invisibleexpot": "invisibility2potion", - "invisiblelevel2pot": "invisibility2potion", - "inv2pot": "invisibility2potion", - "invlongpot": "invisibility2potion", - "invextendedpot": "invisibility2potion", - "invexpot": "invisibility2potion", - "invlevel2pot": "invisibility2potion", - "potionofinvisibility2": "invisibility2potion", - "potionofinvisibilitylong": "invisibility2potion", - "potionofinvisibilityextended": "invisibility2potion", - "potionofinvisibilityex": "invisibility2potion", - "potionofinvisibilitylevel2": "invisibility2potion", - "potionofinvis2": "invisibility2potion", - "potionofinvislong": "invisibility2potion", - "potionofinvisextended": "invisibility2potion", - "potionofinvisex": "invisibility2potion", - "potionofinvislevel2": "invisibility2potion", - "potionofinvisible2": "invisibility2potion", - "potionofinvisiblelong": "invisibility2potion", - "potionofinvisibleextended": "invisibility2potion", - "potionofinvisibleex": "invisibility2potion", - "potionofinvisiblelevel2": "invisibility2potion", - "potionofinv2": "invisibility2potion", - "potionofinvlong": "invisibility2potion", - "potionofinvextended": "invisibility2potion", - "potionofinvex": "invisibility2potion", - "potionofinvlevel2": "invisibility2potion", - "potofinvisibility2": "invisibility2potion", - "potofinvisibilitylong": "invisibility2potion", - "potofinvisibilityextended": "invisibility2potion", - "potofinvisibilityex": "invisibility2potion", - "potofinvisibilitylevel2": "invisibility2potion", - "potofinvis2": "invisibility2potion", - "potofinvislong": "invisibility2potion", - "potofinvisextended": "invisibility2potion", - "potofinvisex": "invisibility2potion", - "potofinvislevel2": "invisibility2potion", - "potofinvisible2": "invisibility2potion", - "potofinvisiblelong": "invisibility2potion", - "potofinvisibleextended": "invisibility2potion", - "potofinvisibleex": "invisibility2potion", - "potofinvisiblelevel2": "invisibility2potion", - "potofinv2": "invisibility2potion", - "potofinvlong": "invisibility2potion", - "potofinvextended": "invisibility2potion", - "potofinvex": "invisibility2potion", - "potofinvlevel2": "invisibility2potion", - "splashinvisibility2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": true - } - }, - "splashinvisibilitylongpotion": "splashinvisibility2potion", - "splashinvisibilityextendedpotion": "splashinvisibility2potion", - "splashinvisibilityexpotion": "splashinvisibility2potion", - "splashinvisibilitylevel2potion": "splashinvisibility2potion", - "splashinvis2potion": "splashinvisibility2potion", - "splashinvislongpotion": "splashinvisibility2potion", - "splashinvisextendedpotion": "splashinvisibility2potion", - "splashinvisexpotion": "splashinvisibility2potion", - "splashinvislevel2potion": "splashinvisibility2potion", - "splashinvisible2potion": "splashinvisibility2potion", - "splashinvisiblelongpotion": "splashinvisibility2potion", - "splashinvisibleextendedpotion": "splashinvisibility2potion", - "splashinvisibleexpotion": "splashinvisibility2potion", - "splashinvisiblelevel2potion": "splashinvisibility2potion", - "splashinv2potion": "splashinvisibility2potion", - "splashinvlongpotion": "splashinvisibility2potion", - "splashinvextendedpotion": "splashinvisibility2potion", - "splashinvexpotion": "splashinvisibility2potion", - "splashinvlevel2potion": "splashinvisibility2potion", - "splinvisibility2potion": "splashinvisibility2potion", - "splinvisibilitylongpotion": "splashinvisibility2potion", - "splinvisibilityextendedpotion": "splashinvisibility2potion", - "splinvisibilityexpotion": "splashinvisibility2potion", - "splinvisibilitylevel2potion": "splashinvisibility2potion", - "splinvis2potion": "splashinvisibility2potion", - "splinvislongpotion": "splashinvisibility2potion", - "splinvisextendedpotion": "splashinvisibility2potion", - "splinvisexpotion": "splashinvisibility2potion", - "splinvislevel2potion": "splashinvisibility2potion", - "splinvisible2potion": "splashinvisibility2potion", - "splinvisiblelongpotion": "splashinvisibility2potion", - "splinvisibleextendedpotion": "splashinvisibility2potion", - "splinvisibleexpotion": "splashinvisibility2potion", - "splinvisiblelevel2potion": "splashinvisibility2potion", - "splinv2potion": "splashinvisibility2potion", - "splinvlongpotion": "splashinvisibility2potion", - "splinvextendedpotion": "splashinvisibility2potion", - "splinvexpotion": "splashinvisibility2potion", - "splinvlevel2potion": "splashinvisibility2potion", - "invisibility2splashpotion": "splashinvisibility2potion", - "invisibilitylongsplashpotion": "splashinvisibility2potion", - "invisibilityextendedsplashpotion": "splashinvisibility2potion", - "invisibilityexsplashpotion": "splashinvisibility2potion", - "invisibilitylevel2splashpotion": "splashinvisibility2potion", - "invis2splashpotion": "splashinvisibility2potion", - "invislongsplashpotion": "splashinvisibility2potion", - "invisextendedsplashpotion": "splashinvisibility2potion", - "invisexsplashpotion": "splashinvisibility2potion", - "invislevel2splashpotion": "splashinvisibility2potion", - "invisible2splashpotion": "splashinvisibility2potion", - "invisiblelongsplashpotion": "splashinvisibility2potion", - "invisibleextendedsplashpotion": "splashinvisibility2potion", - "invisibleexsplashpotion": "splashinvisibility2potion", - "invisiblelevel2splashpotion": "splashinvisibility2potion", - "inv2splashpotion": "splashinvisibility2potion", - "invlongsplashpotion": "splashinvisibility2potion", - "invextendedsplashpotion": "splashinvisibility2potion", - "invexsplashpotion": "splashinvisibility2potion", - "invlevel2splashpotion": "splashinvisibility2potion", - "splashinvisibility2pot": "splashinvisibility2potion", - "splashinvisibilitylongpot": "splashinvisibility2potion", - "splashinvisibilityextendedpot": "splashinvisibility2potion", - "splashinvisibilityexpot": "splashinvisibility2potion", - "splashinvisibilitylevel2pot": "splashinvisibility2potion", - "splashinvis2pot": "splashinvisibility2potion", - "splashinvislongpot": "splashinvisibility2potion", - "splashinvisextendedpot": "splashinvisibility2potion", - "splashinvisexpot": "splashinvisibility2potion", - "splashinvislevel2pot": "splashinvisibility2potion", - "splashinvisible2pot": "splashinvisibility2potion", - "splashinvisiblelongpot": "splashinvisibility2potion", - "splashinvisibleextendedpot": "splashinvisibility2potion", - "splashinvisibleexpot": "splashinvisibility2potion", - "splashinvisiblelevel2pot": "splashinvisibility2potion", - "splashinv2pot": "splashinvisibility2potion", - "splashinvlongpot": "splashinvisibility2potion", - "splashinvextendedpot": "splashinvisibility2potion", - "splashinvexpot": "splashinvisibility2potion", - "splashinvlevel2pot": "splashinvisibility2potion", - "splinvisibility2pot": "splashinvisibility2potion", - "splinvisibilitylongpot": "splashinvisibility2potion", - "splinvisibilityextendedpot": "splashinvisibility2potion", - "splinvisibilityexpot": "splashinvisibility2potion", - "splinvisibilitylevel2pot": "splashinvisibility2potion", - "splinvis2pot": "splashinvisibility2potion", - "splinvislongpot": "splashinvisibility2potion", - "splinvisextendedpot": "splashinvisibility2potion", - "splinvisexpot": "splashinvisibility2potion", - "splinvislevel2pot": "splashinvisibility2potion", - "splinvisible2pot": "splashinvisibility2potion", - "splinvisiblelongpot": "splashinvisibility2potion", - "splinvisibleextendedpot": "splashinvisibility2potion", - "splinvisibleexpot": "splashinvisibility2potion", - "splinvisiblelevel2pot": "splashinvisibility2potion", - "splinv2pot": "splashinvisibility2potion", - "splinvlongpot": "splashinvisibility2potion", - "splinvextendedpot": "splashinvisibility2potion", - "splinvexpot": "splashinvisibility2potion", - "splinvlevel2pot": "splashinvisibility2potion", - "invisibility2splashpot": "splashinvisibility2potion", - "invisibilitylongsplashpot": "splashinvisibility2potion", - "invisibilityextendedsplashpot": "splashinvisibility2potion", - "invisibilityexsplashpot": "splashinvisibility2potion", - "invisibilitylevel2splashpot": "splashinvisibility2potion", - "invis2splashpot": "splashinvisibility2potion", - "invislongsplashpot": "splashinvisibility2potion", - "invisextendedsplashpot": "splashinvisibility2potion", - "invisexsplashpot": "splashinvisibility2potion", - "invislevel2splashpot": "splashinvisibility2potion", - "invisible2splashpot": "splashinvisibility2potion", - "invisiblelongsplashpot": "splashinvisibility2potion", - "invisibleextendedsplashpot": "splashinvisibility2potion", - "invisibleexsplashpot": "splashinvisibility2potion", - "invisiblelevel2splashpot": "splashinvisibility2potion", - "inv2splashpot": "splashinvisibility2potion", - "invlongsplashpot": "splashinvisibility2potion", - "invextendedsplashpot": "splashinvisibility2potion", - "invexsplashpot": "splashinvisibility2potion", - "invlevel2splashpot": "splashinvisibility2potion", - "lingerpotinvisibility2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": true - } - }, - "lingerpotinvisibilitylong": "lingerpotinvisibility2", - "lingerpotinvisibilityextended": "lingerpotinvisibility2", - "lingerpotinvisibilityex": "lingerpotinvisibility2", - "lingerpotinvisibilitylevel2": "lingerpotinvisibility2", - "lingerpotinvis2": "lingerpotinvisibility2", - "lingerpotinvislong": "lingerpotinvisibility2", - "lingerpotinvisextended": "lingerpotinvisibility2", - "lingerpotinvisex": "lingerpotinvisibility2", - "lingerpotinvislevel2": "lingerpotinvisibility2", - "lingerpotinvisible2": "lingerpotinvisibility2", - "lingerpotinvisiblelong": "lingerpotinvisibility2", - "lingerpotinvisibleextended": "lingerpotinvisibility2", - "lingerpotinvisibleex": "lingerpotinvisibility2", - "lingerpotinvisiblelevel2": "lingerpotinvisibility2", - "lingerpotinv2": "lingerpotinvisibility2", - "lingerpotinvlong": "lingerpotinvisibility2", - "lingerpotinvextended": "lingerpotinvisibility2", - "lingerpotinvex": "lingerpotinvisibility2", - "lingerpotinvlevel2": "lingerpotinvisibility2", - "invisibilitylingerpot2": "lingerpotinvisibility2", - "invisibilitylingerpotlong": "lingerpotinvisibility2", - "invisibilitylingerpotextended": "lingerpotinvisibility2", - "invisibilitylingerpotex": "lingerpotinvisibility2", - "invisibilitylingerpotlevel2": "lingerpotinvisibility2", - "invislingerpot2": "lingerpotinvisibility2", - "invislingerpotlong": "lingerpotinvisibility2", - "invislingerpotextended": "lingerpotinvisibility2", - "invislingerpotex": "lingerpotinvisibility2", - "invislingerpotlevel2": "lingerpotinvisibility2", - "invisiblelingerpot2": "lingerpotinvisibility2", - "invisiblelingerpotlong": "lingerpotinvisibility2", - "invisiblelingerpotextended": "lingerpotinvisibility2", - "invisiblelingerpotex": "lingerpotinvisibility2", - "invisiblelingerpotlevel2": "lingerpotinvisibility2", - "invlingerpot2": "lingerpotinvisibility2", - "invlingerpotlong": "lingerpotinvisibility2", - "invlingerpotextended": "lingerpotinvisibility2", - "invlingerpotex": "lingerpotinvisibility2", - "invlingerpotlevel2": "lingerpotinvisibility2", - "aoepotioninvisibility2": "lingerpotinvisibility2", - "aoepotioninvisibilitylong": "lingerpotinvisibility2", - "aoepotioninvisibilityextended": "lingerpotinvisibility2", - "aoepotioninvisibilityex": "lingerpotinvisibility2", - "aoepotioninvisibilitylevel2": "lingerpotinvisibility2", - "aoepotioninvis2": "lingerpotinvisibility2", - "aoepotioninvislong": "lingerpotinvisibility2", - "aoepotioninvisextended": "lingerpotinvisibility2", - "aoepotioninvisex": "lingerpotinvisibility2", - "aoepotioninvislevel2": "lingerpotinvisibility2", - "aoepotioninvisible2": "lingerpotinvisibility2", - "aoepotioninvisiblelong": "lingerpotinvisibility2", - "aoepotioninvisibleextended": "lingerpotinvisibility2", - "aoepotioninvisibleex": "lingerpotinvisibility2", - "aoepotioninvisiblelevel2": "lingerpotinvisibility2", - "aoepotioninv2": "lingerpotinvisibility2", - "aoepotioninvlong": "lingerpotinvisibility2", - "aoepotioninvextended": "lingerpotinvisibility2", - "aoepotioninvex": "lingerpotinvisibility2", - "aoepotioninvlevel2": "lingerpotinvisibility2", - "invisibilityaoepoiont2": "lingerpotinvisibility2", - "invisibilityaoepoiontlong": "lingerpotinvisibility2", - "invisibilityaoepoiontextended": "lingerpotinvisibility2", - "invisibilityaoepoiontex": "lingerpotinvisibility2", - "invisibilityaoepoiontlevel2": "lingerpotinvisibility2", - "invisaoepoiont2": "lingerpotinvisibility2", - "invisaoepoiontlong": "lingerpotinvisibility2", - "invisaoepoiontextended": "lingerpotinvisibility2", - "invisaoepoiontex": "lingerpotinvisibility2", - "invisaoepoiontlevel2": "lingerpotinvisibility2", - "invisibleaoepoiont2": "lingerpotinvisibility2", - "invisibleaoepoiontlong": "lingerpotinvisibility2", - "invisibleaoepoiontextended": "lingerpotinvisibility2", - "invisibleaoepoiontex": "lingerpotinvisibility2", - "invisibleaoepoiontlevel2": "lingerpotinvisibility2", - "invaoepoiont2": "lingerpotinvisibility2", - "invaoepoiontlong": "lingerpotinvisibility2", - "invaoepoiontextended": "lingerpotinvisibility2", - "invaoepoiontex": "lingerpotinvisibility2", - "invaoepoiontlevel2": "lingerpotinvisibility2", - "aoepotinvisibility2": "lingerpotinvisibility2", - "aoepotinvisibilitylong": "lingerpotinvisibility2", - "aoepotinvisibilityextended": "lingerpotinvisibility2", - "aoepotinvisibilityex": "lingerpotinvisibility2", - "aoepotinvisibilitylevel2": "lingerpotinvisibility2", - "aoepotinvis2": "lingerpotinvisibility2", - "aoepotinvislong": "lingerpotinvisibility2", - "aoepotinvisextended": "lingerpotinvisibility2", - "aoepotinvisex": "lingerpotinvisibility2", - "aoepotinvislevel2": "lingerpotinvisibility2", - "aoepotinvisible2": "lingerpotinvisibility2", - "aoepotinvisiblelong": "lingerpotinvisibility2", - "aoepotinvisibleextended": "lingerpotinvisibility2", - "aoepotinvisibleex": "lingerpotinvisibility2", - "aoepotinvisiblelevel2": "lingerpotinvisibility2", - "aoepotinv2": "lingerpotinvisibility2", - "aoepotinvlong": "lingerpotinvisibility2", - "aoepotinvextended": "lingerpotinvisibility2", - "aoepotinvex": "lingerpotinvisibility2", - "aoepotinvlevel2": "lingerpotinvisibility2", - "invisibilityaoepot2": "lingerpotinvisibility2", - "invisibilityaoepotlong": "lingerpotinvisibility2", - "invisibilityaoepotextended": "lingerpotinvisibility2", - "invisibilityaoepotex": "lingerpotinvisibility2", - "invisibilityaoepotlevel2": "lingerpotinvisibility2", - "invisaoepot2": "lingerpotinvisibility2", - "invisaoepotlong": "lingerpotinvisibility2", - "invisaoepotextended": "lingerpotinvisibility2", - "invisaoepotex": "lingerpotinvisibility2", - "invisaoepotlevel2": "lingerpotinvisibility2", - "invisibleaoepot2": "lingerpotinvisibility2", - "invisibleaoepotlong": "lingerpotinvisibility2", - "invisibleaoepotextended": "lingerpotinvisibility2", - "invisibleaoepotex": "lingerpotinvisibility2", - "invisibleaoepotlevel2": "lingerpotinvisibility2", - "invaoepot2": "lingerpotinvisibility2", - "invaoepotlong": "lingerpotinvisibility2", - "invaoepotextended": "lingerpotinvisibility2", - "invaoepotex": "lingerpotinvisibility2", - "invaoepotlevel2": "lingerpotinvisibility2", - "areapotioninvisibility2": "lingerpotinvisibility2", - "areapotioninvisibilitylong": "lingerpotinvisibility2", - "areapotioninvisibilityextended": "lingerpotinvisibility2", - "areapotioninvisibilityex": "lingerpotinvisibility2", - "areapotioninvisibilitylevel2": "lingerpotinvisibility2", - "areapotioninvis2": "lingerpotinvisibility2", - "areapotioninvislong": "lingerpotinvisibility2", - "areapotioninvisextended": "lingerpotinvisibility2", - "areapotioninvisex": "lingerpotinvisibility2", - "areapotioninvislevel2": "lingerpotinvisibility2", - "areapotioninvisible2": "lingerpotinvisibility2", - "areapotioninvisiblelong": "lingerpotinvisibility2", - "areapotioninvisibleextended": "lingerpotinvisibility2", - "areapotioninvisibleex": "lingerpotinvisibility2", - "areapotioninvisiblelevel2": "lingerpotinvisibility2", - "areapotioninv2": "lingerpotinvisibility2", - "areapotioninvlong": "lingerpotinvisibility2", - "areapotioninvextended": "lingerpotinvisibility2", - "areapotioninvex": "lingerpotinvisibility2", - "areapotioninvlevel2": "lingerpotinvisibility2", - "invisibilityareapotion2": "lingerpotinvisibility2", - "invisibilityareapotionlong": "lingerpotinvisibility2", - "invisibilityareapotionextended": "lingerpotinvisibility2", - "invisibilityareapotionex": "lingerpotinvisibility2", - "invisibilityareapotionlevel2": "lingerpotinvisibility2", - "invisareapotion2": "lingerpotinvisibility2", - "invisareapotionlong": "lingerpotinvisibility2", - "invisareapotionextended": "lingerpotinvisibility2", - "invisareapotionex": "lingerpotinvisibility2", - "invisareapotionlevel2": "lingerpotinvisibility2", - "invisibleareapotion2": "lingerpotinvisibility2", - "invisibleareapotionlong": "lingerpotinvisibility2", - "invisibleareapotionextended": "lingerpotinvisibility2", - "invisibleareapotionex": "lingerpotinvisibility2", - "invisibleareapotionlevel2": "lingerpotinvisibility2", - "invareapotion2": "lingerpotinvisibility2", - "invareapotionlong": "lingerpotinvisibility2", - "invareapotionextended": "lingerpotinvisibility2", - "invareapotionex": "lingerpotinvisibility2", - "invareapotionlevel2": "lingerpotinvisibility2", - "areapotinvisibility2": "lingerpotinvisibility2", - "areapotinvisibilitylong": "lingerpotinvisibility2", - "areapotinvisibilityextended": "lingerpotinvisibility2", - "areapotinvisibilityex": "lingerpotinvisibility2", - "areapotinvisibilitylevel2": "lingerpotinvisibility2", - "areapotinvis2": "lingerpotinvisibility2", - "areapotinvislong": "lingerpotinvisibility2", - "areapotinvisextended": "lingerpotinvisibility2", - "areapotinvisex": "lingerpotinvisibility2", - "areapotinvislevel2": "lingerpotinvisibility2", - "areapotinvisible2": "lingerpotinvisibility2", - "areapotinvisiblelong": "lingerpotinvisibility2", - "areapotinvisibleextended": "lingerpotinvisibility2", - "areapotinvisibleex": "lingerpotinvisibility2", - "areapotinvisiblelevel2": "lingerpotinvisibility2", - "areapotinv2": "lingerpotinvisibility2", - "areapotinvlong": "lingerpotinvisibility2", - "areapotinvextended": "lingerpotinvisibility2", - "areapotinvex": "lingerpotinvisibility2", - "areapotinvlevel2": "lingerpotinvisibility2", - "invisibilityareapot2": "lingerpotinvisibility2", - "invisibilityareapotlong": "lingerpotinvisibility2", - "invisibilityareapotextended": "lingerpotinvisibility2", - "invisibilityareapotex": "lingerpotinvisibility2", - "invisibilityareapotlevel2": "lingerpotinvisibility2", - "invisareapot2": "lingerpotinvisibility2", - "invisareapotlong": "lingerpotinvisibility2", - "invisareapotextended": "lingerpotinvisibility2", - "invisareapotex": "lingerpotinvisibility2", - "invisareapotlevel2": "lingerpotinvisibility2", - "invisibleareapot2": "lingerpotinvisibility2", - "invisibleareapotlong": "lingerpotinvisibility2", - "invisibleareapotextended": "lingerpotinvisibility2", - "invisibleareapotex": "lingerpotinvisibility2", - "invisibleareapotlevel2": "lingerpotinvisibility2", - "invareapot2": "lingerpotinvisibility2", - "invareapotlong": "lingerpotinvisibility2", - "invareapotextended": "lingerpotinvisibility2", - "invareapotex": "lingerpotinvisibility2", - "invareapotlevel2": "lingerpotinvisibility2", - "cloudpotioninvisibility2": "lingerpotinvisibility2", - "cloudpotioninvisibilitylong": "lingerpotinvisibility2", - "cloudpotioninvisibilityextended": "lingerpotinvisibility2", - "cloudpotioninvisibilityex": "lingerpotinvisibility2", - "cloudpotioninvisibilitylevel2": "lingerpotinvisibility2", - "cloudpotioninvis2": "lingerpotinvisibility2", - "cloudpotioninvislong": "lingerpotinvisibility2", - "cloudpotioninvisextended": "lingerpotinvisibility2", - "cloudpotioninvisex": "lingerpotinvisibility2", - "cloudpotioninvislevel2": "lingerpotinvisibility2", - "cloudpotioninvisible2": "lingerpotinvisibility2", - "cloudpotioninvisiblelong": "lingerpotinvisibility2", - "cloudpotioninvisibleextended": "lingerpotinvisibility2", - "cloudpotioninvisibleex": "lingerpotinvisibility2", - "cloudpotioninvisiblelevel2": "lingerpotinvisibility2", - "cloudpotioninv2": "lingerpotinvisibility2", - "cloudpotioninvlong": "lingerpotinvisibility2", - "cloudpotioninvextended": "lingerpotinvisibility2", - "cloudpotioninvex": "lingerpotinvisibility2", - "cloudpotioninvlevel2": "lingerpotinvisibility2", - "invisibilitycloudpotion2": "lingerpotinvisibility2", - "invisibilitycloudpotionlong": "lingerpotinvisibility2", - "invisibilitycloudpotionextended": "lingerpotinvisibility2", - "invisibilitycloudpotionex": "lingerpotinvisibility2", - "invisibilitycloudpotionlevel2": "lingerpotinvisibility2", - "inviscloudpotion2": "lingerpotinvisibility2", - "inviscloudpotionlong": "lingerpotinvisibility2", - "inviscloudpotionextended": "lingerpotinvisibility2", - "inviscloudpotionex": "lingerpotinvisibility2", - "inviscloudpotionlevel2": "lingerpotinvisibility2", - "invisiblecloudpotion2": "lingerpotinvisibility2", - "invisiblecloudpotionlong": "lingerpotinvisibility2", - "invisiblecloudpotionextended": "lingerpotinvisibility2", - "invisiblecloudpotionex": "lingerpotinvisibility2", - "invisiblecloudpotionlevel2": "lingerpotinvisibility2", - "invcloudpotion2": "lingerpotinvisibility2", - "invcloudpotionlong": "lingerpotinvisibility2", - "invcloudpotionextended": "lingerpotinvisibility2", - "invcloudpotionex": "lingerpotinvisibility2", - "invcloudpotionlevel2": "lingerpotinvisibility2", - "cloudpotinvisibility2": "lingerpotinvisibility2", - "cloudpotinvisibilitylong": "lingerpotinvisibility2", - "cloudpotinvisibilityextended": "lingerpotinvisibility2", - "cloudpotinvisibilityex": "lingerpotinvisibility2", - "cloudpotinvisibilitylevel2": "lingerpotinvisibility2", - "cloudpotinvis2": "lingerpotinvisibility2", - "cloudpotinvislong": "lingerpotinvisibility2", - "cloudpotinvisextended": "lingerpotinvisibility2", - "cloudpotinvisex": "lingerpotinvisibility2", - "cloudpotinvislevel2": "lingerpotinvisibility2", - "cloudpotinvisible2": "lingerpotinvisibility2", - "cloudpotinvisiblelong": "lingerpotinvisibility2", - "cloudpotinvisibleextended": "lingerpotinvisibility2", - "cloudpotinvisibleex": "lingerpotinvisibility2", - "cloudpotinvisiblelevel2": "lingerpotinvisibility2", - "cloudpotinv2": "lingerpotinvisibility2", - "cloudpotinvlong": "lingerpotinvisibility2", - "cloudpotinvextended": "lingerpotinvisibility2", - "cloudpotinvex": "lingerpotinvisibility2", - "cloudpotinvlevel2": "lingerpotinvisibility2", - "invisibilitycloudpot2": "lingerpotinvisibility2", - "invisibilitycloudpotlong": "lingerpotinvisibility2", - "invisibilitycloudpotextended": "lingerpotinvisibility2", - "invisibilitycloudpotex": "lingerpotinvisibility2", - "invisibilitycloudpotlevel2": "lingerpotinvisibility2", - "inviscloudpot2": "lingerpotinvisibility2", - "inviscloudpotlong": "lingerpotinvisibility2", - "inviscloudpotextended": "lingerpotinvisibility2", - "inviscloudpotex": "lingerpotinvisibility2", - "inviscloudpotlevel2": "lingerpotinvisibility2", - "invisiblecloudpot2": "lingerpotinvisibility2", - "invisiblecloudpotlong": "lingerpotinvisibility2", - "invisiblecloudpotextended": "lingerpotinvisibility2", - "invisiblecloudpotex": "lingerpotinvisibility2", - "invisiblecloudpotlevel2": "lingerpotinvisibility2", - "invcloudpot2": "lingerpotinvisibility2", - "invcloudpotlong": "lingerpotinvisibility2", - "invcloudpotextended": "lingerpotinvisibility2", - "invcloudpotex": "lingerpotinvisibility2", - "invcloudpotlevel2": "lingerpotinvisibility2", - "arrowinvisibility2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_invisibility", - "type": "INVISIBILITY", - "upgraded": false, - "extended": true - } - }, - "arrowinvisibilitylong": "arrowinvisibility2", - "arrowinvisibilityextended": "arrowinvisibility2", - "arrowinvisibilityex": "arrowinvisibility2", - "arrowinvisibilitylevel2": "arrowinvisibility2", - "arrowinvis2": "arrowinvisibility2", - "arrowinvislong": "arrowinvisibility2", - "arrowinvisextended": "arrowinvisibility2", - "arrowinvisex": "arrowinvisibility2", - "arrowinvislevel2": "arrowinvisibility2", - "arrowinvisible2": "arrowinvisibility2", - "arrowinvisiblelong": "arrowinvisibility2", - "arrowinvisibleextended": "arrowinvisibility2", - "arrowinvisibleex": "arrowinvisibility2", - "arrowinvisiblelevel2": "arrowinvisibility2", - "arrowinv2": "arrowinvisibility2", - "arrowinvlong": "arrowinvisibility2", - "arrowinvextended": "arrowinvisibility2", - "arrowinvex": "arrowinvisibility2", - "arrowinvlevel2": "arrowinvisibility2", - "invisibilityarrow2": "arrowinvisibility2", - "invisibilityarrowlong": "arrowinvisibility2", - "invisibilityarrowextended": "arrowinvisibility2", - "invisibilityarrowex": "arrowinvisibility2", - "invisibilityarrowlevel2": "arrowinvisibility2", - "invisarrow2": "arrowinvisibility2", - "invisarrowlong": "arrowinvisibility2", - "invisarrowextended": "arrowinvisibility2", - "invisarrowex": "arrowinvisibility2", - "invisarrowlevel2": "arrowinvisibility2", - "invisiblearrow2": "arrowinvisibility2", - "invisiblearrowlong": "arrowinvisibility2", - "invisiblearrowextended": "arrowinvisibility2", - "invisiblearrowex": "arrowinvisibility2", - "invisiblearrowlevel2": "arrowinvisibility2", - "invarrow2": "arrowinvisibility2", - "invarrowlong": "arrowinvisibility2", - "invarrowextended": "arrowinvisibility2", - "invarrowex": "arrowinvisibility2", - "invarrowlevel2": "arrowinvisibility2", - "leapingpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "leaping", - "type": "JUMP", - "upgraded": false, - "extended": false - } - }, - "leappotion": "leapingpotion", - "leapingpot": "leapingpotion", - "leappot": "leapingpotion", - "potionofleaping": "leapingpotion", - "potionofleap": "leapingpotion", - "potofleaping": "leapingpotion", - "potofleap": "leapingpotion", - "splashleapingpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "leaping", - "type": "JUMP", - "upgraded": false, - "extended": false - } - }, - "splashleappotion": "splashleapingpotion", - "splleapingpotion": "splashleapingpotion", - "splleappotion": "splashleapingpotion", - "leapingsplashpotion": "splashleapingpotion", - "leapsplashpotion": "splashleapingpotion", - "splashleapingpot": "splashleapingpotion", - "splashleappot": "splashleapingpotion", - "splleapingpot": "splashleapingpotion", - "splleappot": "splashleapingpotion", - "leapingsplashpot": "splashleapingpotion", - "leapsplashpot": "splashleapingpotion", - "lingerpotleaping": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "leaping", - "type": "JUMP", - "upgraded": false, - "extended": false - } - }, - "lingerpotleap": "lingerpotleaping", - "leapinglingerpot": "lingerpotleaping", - "leaplingerpot": "lingerpotleaping", - "aoepotionleaping": "lingerpotleaping", - "aoepotionleap": "lingerpotleaping", - "leapingaoepoiont": "lingerpotleaping", - "leapaoepoiont": "lingerpotleaping", - "aoepotleaping": "lingerpotleaping", - "aoepotleap": "lingerpotleaping", - "leapingaoepot": "lingerpotleaping", - "leapaoepot": "lingerpotleaping", - "areapotionleaping": "lingerpotleaping", - "areapotionleap": "lingerpotleaping", - "leapingareapotion": "lingerpotleaping", - "leapareapotion": "lingerpotleaping", - "areapotleaping": "lingerpotleaping", - "areapotleap": "lingerpotleaping", - "leapingareapot": "lingerpotleaping", - "leapareapot": "lingerpotleaping", - "cloudpotionleaping": "lingerpotleaping", - "cloudpotionleap": "lingerpotleaping", - "leapingcloudpotion": "lingerpotleaping", - "leapcloudpotion": "lingerpotleaping", - "cloudpotleaping": "lingerpotleaping", - "cloudpotleap": "lingerpotleaping", - "leapingcloudpot": "lingerpotleaping", - "leapcloudpot": "lingerpotleaping", - "arrowleaping": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "leaping", - "type": "JUMP", - "upgraded": false, - "extended": false - } - }, - "arrowleap": "arrowleaping", - "leapingarrow": "arrowleaping", - "leaparrow": "arrowleaping", - "leapingiipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_leaping", - "type": "JUMP", - "upgraded": true, - "extended": false - } - }, - "leapingstrongpotion": "leapingiipotion", - "leapingleveliipotion": "leapingiipotion", - "leapiipotion": "leapingiipotion", - "leapstrongpotion": "leapingiipotion", - "leapleveliipotion": "leapingiipotion", - "leapingiipot": "leapingiipotion", - "leapingstrongpot": "leapingiipotion", - "leapingleveliipot": "leapingiipotion", - "leapiipot": "leapingiipotion", - "leapstrongpot": "leapingiipotion", - "leapleveliipot": "leapingiipotion", - "potionofleapingii": "leapingiipotion", - "potionofleapingstrong": "leapingiipotion", - "potionofleapinglevelii": "leapingiipotion", - "potionofleapii": "leapingiipotion", - "potionofleapstrong": "leapingiipotion", - "potionofleaplevelii": "leapingiipotion", - "potofleapingii": "leapingiipotion", - "potofleapingstrong": "leapingiipotion", - "potofleapinglevelii": "leapingiipotion", - "potofleapii": "leapingiipotion", - "potofleapstrong": "leapingiipotion", - "potofleaplevelii": "leapingiipotion", - "splashleapingiipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_leaping", - "type": "JUMP", - "upgraded": true, - "extended": false - } - }, - "splashleapingstrongpotion": "splashleapingiipotion", - "splashleapingleveliipotion": "splashleapingiipotion", - "splashleapiipotion": "splashleapingiipotion", - "splashleapstrongpotion": "splashleapingiipotion", - "splashleapleveliipotion": "splashleapingiipotion", - "splleapingiipotion": "splashleapingiipotion", - "splleapingstrongpotion": "splashleapingiipotion", - "splleapingleveliipotion": "splashleapingiipotion", - "splleapiipotion": "splashleapingiipotion", - "splleapstrongpotion": "splashleapingiipotion", - "splleapleveliipotion": "splashleapingiipotion", - "leapingiisplashpotion": "splashleapingiipotion", - "leapingstrongsplashpotion": "splashleapingiipotion", - "leapingleveliisplashpotion": "splashleapingiipotion", - "leapiisplashpotion": "splashleapingiipotion", - "leapstrongsplashpotion": "splashleapingiipotion", - "leapleveliisplashpotion": "splashleapingiipotion", - "splashleapingiipot": "splashleapingiipotion", - "splashleapingstrongpot": "splashleapingiipotion", - "splashleapingleveliipot": "splashleapingiipotion", - "splashleapiipot": "splashleapingiipotion", - "splashleapstrongpot": "splashleapingiipotion", - "splashleapleveliipot": "splashleapingiipotion", - "splleapingiipot": "splashleapingiipotion", - "splleapingstrongpot": "splashleapingiipotion", - "splleapingleveliipot": "splashleapingiipotion", - "splleapiipot": "splashleapingiipotion", - "splleapstrongpot": "splashleapingiipotion", - "splleapleveliipot": "splashleapingiipotion", - "leapingiisplashpot": "splashleapingiipotion", - "leapingstrongsplashpot": "splashleapingiipotion", - "leapingleveliisplashpot": "splashleapingiipotion", - "leapiisplashpot": "splashleapingiipotion", - "leapstrongsplashpot": "splashleapingiipotion", - "leapleveliisplashpot": "splashleapingiipotion", - "lingerpotleapingii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_leaping", - "type": "JUMP", - "upgraded": true, - "extended": false - } - }, - "lingerpotleapingstrong": "lingerpotleapingii", - "lingerpotleapinglevelii": "lingerpotleapingii", - "lingerpotleapii": "lingerpotleapingii", - "lingerpotleapstrong": "lingerpotleapingii", - "lingerpotleaplevelii": "lingerpotleapingii", - "leapinglingerpotii": "lingerpotleapingii", - "leapinglingerpotstrong": "lingerpotleapingii", - "leapinglingerpotlevelii": "lingerpotleapingii", - "leaplingerpotii": "lingerpotleapingii", - "leaplingerpotstrong": "lingerpotleapingii", - "leaplingerpotlevelii": "lingerpotleapingii", - "aoepotionleapingii": "lingerpotleapingii", - "aoepotionleapingstrong": "lingerpotleapingii", - "aoepotionleapinglevelii": "lingerpotleapingii", - "aoepotionleapii": "lingerpotleapingii", - "aoepotionleapstrong": "lingerpotleapingii", - "aoepotionleaplevelii": "lingerpotleapingii", - "leapingaoepoiontii": "lingerpotleapingii", - "leapingaoepoiontstrong": "lingerpotleapingii", - "leapingaoepoiontlevelii": "lingerpotleapingii", - "leapaoepoiontii": "lingerpotleapingii", - "leapaoepoiontstrong": "lingerpotleapingii", - "leapaoepoiontlevelii": "lingerpotleapingii", - "aoepotleapingii": "lingerpotleapingii", - "aoepotleapingstrong": "lingerpotleapingii", - "aoepotleapinglevelii": "lingerpotleapingii", - "aoepotleapii": "lingerpotleapingii", - "aoepotleapstrong": "lingerpotleapingii", - "aoepotleaplevelii": "lingerpotleapingii", - "leapingaoepotii": "lingerpotleapingii", - "leapingaoepotstrong": "lingerpotleapingii", - "leapingaoepotlevelii": "lingerpotleapingii", - "leapaoepotii": "lingerpotleapingii", - "leapaoepotstrong": "lingerpotleapingii", - "leapaoepotlevelii": "lingerpotleapingii", - "areapotionleapingii": "lingerpotleapingii", - "areapotionleapingstrong": "lingerpotleapingii", - "areapotionleapinglevelii": "lingerpotleapingii", - "areapotionleapii": "lingerpotleapingii", - "areapotionleapstrong": "lingerpotleapingii", - "areapotionleaplevelii": "lingerpotleapingii", - "leapingareapotionii": "lingerpotleapingii", - "leapingareapotionstrong": "lingerpotleapingii", - "leapingareapotionlevelii": "lingerpotleapingii", - "leapareapotionii": "lingerpotleapingii", - "leapareapotionstrong": "lingerpotleapingii", - "leapareapotionlevelii": "lingerpotleapingii", - "areapotleapingii": "lingerpotleapingii", - "areapotleapingstrong": "lingerpotleapingii", - "areapotleapinglevelii": "lingerpotleapingii", - "areapotleapii": "lingerpotleapingii", - "areapotleapstrong": "lingerpotleapingii", - "areapotleaplevelii": "lingerpotleapingii", - "leapingareapotii": "lingerpotleapingii", - "leapingareapotstrong": "lingerpotleapingii", - "leapingareapotlevelii": "lingerpotleapingii", - "leapareapotii": "lingerpotleapingii", - "leapareapotstrong": "lingerpotleapingii", - "leapareapotlevelii": "lingerpotleapingii", - "cloudpotionleapingii": "lingerpotleapingii", - "cloudpotionleapingstrong": "lingerpotleapingii", - "cloudpotionleapinglevelii": "lingerpotleapingii", - "cloudpotionleapii": "lingerpotleapingii", - "cloudpotionleapstrong": "lingerpotleapingii", - "cloudpotionleaplevelii": "lingerpotleapingii", - "leapingcloudpotionii": "lingerpotleapingii", - "leapingcloudpotionstrong": "lingerpotleapingii", - "leapingcloudpotionlevelii": "lingerpotleapingii", - "leapcloudpotionii": "lingerpotleapingii", - "leapcloudpotionstrong": "lingerpotleapingii", - "leapcloudpotionlevelii": "lingerpotleapingii", - "cloudpotleapingii": "lingerpotleapingii", - "cloudpotleapingstrong": "lingerpotleapingii", - "cloudpotleapinglevelii": "lingerpotleapingii", - "cloudpotleapii": "lingerpotleapingii", - "cloudpotleapstrong": "lingerpotleapingii", - "cloudpotleaplevelii": "lingerpotleapingii", - "leapingcloudpotii": "lingerpotleapingii", - "leapingcloudpotstrong": "lingerpotleapingii", - "leapingcloudpotlevelii": "lingerpotleapingii", - "leapcloudpotii": "lingerpotleapingii", - "leapcloudpotstrong": "lingerpotleapingii", - "leapcloudpotlevelii": "lingerpotleapingii", - "arrowleapingii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_leaping", - "type": "JUMP", - "upgraded": true, - "extended": false - } - }, - "arrowleapingstrong": "arrowleapingii", - "arrowleapinglevelii": "arrowleapingii", - "arrowleapii": "arrowleapingii", - "arrowleapstrong": "arrowleapingii", - "arrowleaplevelii": "arrowleapingii", - "leapingarrowii": "arrowleapingii", - "leapingarrowstrong": "arrowleapingii", - "leapingarrowlevelii": "arrowleapingii", - "leaparrowii": "arrowleapingii", - "leaparrowstrong": "arrowleapingii", - "leaparrowlevelii": "arrowleapingii", - "leaping2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_leaping", - "type": "JUMP", - "upgraded": false, - "extended": true - } - }, - "leapinglongpotion": "leaping2potion", - "leapingextendedpotion": "leaping2potion", - "leapingexpotion": "leaping2potion", - "leapinglevel2potion": "leaping2potion", - "leap2potion": "leaping2potion", - "leaplongpotion": "leaping2potion", - "leapextendedpotion": "leaping2potion", - "leapexpotion": "leaping2potion", - "leaplevel2potion": "leaping2potion", - "leaping2pot": "leaping2potion", - "leapinglongpot": "leaping2potion", - "leapingextendedpot": "leaping2potion", - "leapingexpot": "leaping2potion", - "leapinglevel2pot": "leaping2potion", - "leap2pot": "leaping2potion", - "leaplongpot": "leaping2potion", - "leapextendedpot": "leaping2potion", - "leapexpot": "leaping2potion", - "leaplevel2pot": "leaping2potion", - "potionofleaping2": "leaping2potion", - "potionofleapinglong": "leaping2potion", - "potionofleapingextended": "leaping2potion", - "potionofleapingex": "leaping2potion", - "potionofleapinglevel2": "leaping2potion", - "potionofleap2": "leaping2potion", - "potionofleaplong": "leaping2potion", - "potionofleapextended": "leaping2potion", - "potionofleapex": "leaping2potion", - "potionofleaplevel2": "leaping2potion", - "potofleaping2": "leaping2potion", - "potofleapinglong": "leaping2potion", - "potofleapingextended": "leaping2potion", - "potofleapingex": "leaping2potion", - "potofleapinglevel2": "leaping2potion", - "potofleap2": "leaping2potion", - "potofleaplong": "leaping2potion", - "potofleapextended": "leaping2potion", - "potofleapex": "leaping2potion", - "potofleaplevel2": "leaping2potion", - "splashleaping2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_leaping", - "type": "JUMP", - "upgraded": false, - "extended": true - } - }, - "splashleapinglongpotion": "splashleaping2potion", - "splashleapingextendedpotion": "splashleaping2potion", - "splashleapingexpotion": "splashleaping2potion", - "splashleapinglevel2potion": "splashleaping2potion", - "splashleap2potion": "splashleaping2potion", - "splashleaplongpotion": "splashleaping2potion", - "splashleapextendedpotion": "splashleaping2potion", - "splashleapexpotion": "splashleaping2potion", - "splashleaplevel2potion": "splashleaping2potion", - "splleaping2potion": "splashleaping2potion", - "splleapinglongpotion": "splashleaping2potion", - "splleapingextendedpotion": "splashleaping2potion", - "splleapingexpotion": "splashleaping2potion", - "splleapinglevel2potion": "splashleaping2potion", - "splleap2potion": "splashleaping2potion", - "splleaplongpotion": "splashleaping2potion", - "splleapextendedpotion": "splashleaping2potion", - "splleapexpotion": "splashleaping2potion", - "splleaplevel2potion": "splashleaping2potion", - "leaping2splashpotion": "splashleaping2potion", - "leapinglongsplashpotion": "splashleaping2potion", - "leapingextendedsplashpotion": "splashleaping2potion", - "leapingexsplashpotion": "splashleaping2potion", - "leapinglevel2splashpotion": "splashleaping2potion", - "leap2splashpotion": "splashleaping2potion", - "leaplongsplashpotion": "splashleaping2potion", - "leapextendedsplashpotion": "splashleaping2potion", - "leapexsplashpotion": "splashleaping2potion", - "leaplevel2splashpotion": "splashleaping2potion", - "splashleaping2pot": "splashleaping2potion", - "splashleapinglongpot": "splashleaping2potion", - "splashleapingextendedpot": "splashleaping2potion", - "splashleapingexpot": "splashleaping2potion", - "splashleapinglevel2pot": "splashleaping2potion", - "splashleap2pot": "splashleaping2potion", - "splashleaplongpot": "splashleaping2potion", - "splashleapextendedpot": "splashleaping2potion", - "splashleapexpot": "splashleaping2potion", - "splashleaplevel2pot": "splashleaping2potion", - "splleaping2pot": "splashleaping2potion", - "splleapinglongpot": "splashleaping2potion", - "splleapingextendedpot": "splashleaping2potion", - "splleapingexpot": "splashleaping2potion", - "splleapinglevel2pot": "splashleaping2potion", - "splleap2pot": "splashleaping2potion", - "splleaplongpot": "splashleaping2potion", - "splleapextendedpot": "splashleaping2potion", - "splleapexpot": "splashleaping2potion", - "splleaplevel2pot": "splashleaping2potion", - "leaping2splashpot": "splashleaping2potion", - "leapinglongsplashpot": "splashleaping2potion", - "leapingextendedsplashpot": "splashleaping2potion", - "leapingexsplashpot": "splashleaping2potion", - "leapinglevel2splashpot": "splashleaping2potion", - "leap2splashpot": "splashleaping2potion", - "leaplongsplashpot": "splashleaping2potion", - "leapextendedsplashpot": "splashleaping2potion", - "leapexsplashpot": "splashleaping2potion", - "leaplevel2splashpot": "splashleaping2potion", - "lingerpotleaping2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_leaping", - "type": "JUMP", - "upgraded": false, - "extended": true - } - }, - "lingerpotleapinglong": "lingerpotleaping2", - "lingerpotleapingextended": "lingerpotleaping2", - "lingerpotleapingex": "lingerpotleaping2", - "lingerpotleapinglevel2": "lingerpotleaping2", - "lingerpotleap2": "lingerpotleaping2", - "lingerpotleaplong": "lingerpotleaping2", - "lingerpotleapextended": "lingerpotleaping2", - "lingerpotleapex": "lingerpotleaping2", - "lingerpotleaplevel2": "lingerpotleaping2", - "leapinglingerpot2": "lingerpotleaping2", - "leapinglingerpotlong": "lingerpotleaping2", - "leapinglingerpotextended": "lingerpotleaping2", - "leapinglingerpotex": "lingerpotleaping2", - "leapinglingerpotlevel2": "lingerpotleaping2", - "leaplingerpot2": "lingerpotleaping2", - "leaplingerpotlong": "lingerpotleaping2", - "leaplingerpotextended": "lingerpotleaping2", - "leaplingerpotex": "lingerpotleaping2", - "leaplingerpotlevel2": "lingerpotleaping2", - "aoepotionleaping2": "lingerpotleaping2", - "aoepotionleapinglong": "lingerpotleaping2", - "aoepotionleapingextended": "lingerpotleaping2", - "aoepotionleapingex": "lingerpotleaping2", - "aoepotionleapinglevel2": "lingerpotleaping2", - "aoepotionleap2": "lingerpotleaping2", - "aoepotionleaplong": "lingerpotleaping2", - "aoepotionleapextended": "lingerpotleaping2", - "aoepotionleapex": "lingerpotleaping2", - "aoepotionleaplevel2": "lingerpotleaping2", - "leapingaoepoiont2": "lingerpotleaping2", - "leapingaoepoiontlong": "lingerpotleaping2", - "leapingaoepoiontextended": "lingerpotleaping2", - "leapingaoepoiontex": "lingerpotleaping2", - "leapingaoepoiontlevel2": "lingerpotleaping2", - "leapaoepoiont2": "lingerpotleaping2", - "leapaoepoiontlong": "lingerpotleaping2", - "leapaoepoiontextended": "lingerpotleaping2", - "leapaoepoiontex": "lingerpotleaping2", - "leapaoepoiontlevel2": "lingerpotleaping2", - "aoepotleaping2": "lingerpotleaping2", - "aoepotleapinglong": "lingerpotleaping2", - "aoepotleapingextended": "lingerpotleaping2", - "aoepotleapingex": "lingerpotleaping2", - "aoepotleapinglevel2": "lingerpotleaping2", - "aoepotleap2": "lingerpotleaping2", - "aoepotleaplong": "lingerpotleaping2", - "aoepotleapextended": "lingerpotleaping2", - "aoepotleapex": "lingerpotleaping2", - "aoepotleaplevel2": "lingerpotleaping2", - "leapingaoepot2": "lingerpotleaping2", - "leapingaoepotlong": "lingerpotleaping2", - "leapingaoepotextended": "lingerpotleaping2", - "leapingaoepotex": "lingerpotleaping2", - "leapingaoepotlevel2": "lingerpotleaping2", - "leapaoepot2": "lingerpotleaping2", - "leapaoepotlong": "lingerpotleaping2", - "leapaoepotextended": "lingerpotleaping2", - "leapaoepotex": "lingerpotleaping2", - "leapaoepotlevel2": "lingerpotleaping2", - "areapotionleaping2": "lingerpotleaping2", - "areapotionleapinglong": "lingerpotleaping2", - "areapotionleapingextended": "lingerpotleaping2", - "areapotionleapingex": "lingerpotleaping2", - "areapotionleapinglevel2": "lingerpotleaping2", - "areapotionleap2": "lingerpotleaping2", - "areapotionleaplong": "lingerpotleaping2", - "areapotionleapextended": "lingerpotleaping2", - "areapotionleapex": "lingerpotleaping2", - "areapotionleaplevel2": "lingerpotleaping2", - "leapingareapotion2": "lingerpotleaping2", - "leapingareapotionlong": "lingerpotleaping2", - "leapingareapotionextended": "lingerpotleaping2", - "leapingareapotionex": "lingerpotleaping2", - "leapingareapotionlevel2": "lingerpotleaping2", - "leapareapotion2": "lingerpotleaping2", - "leapareapotionlong": "lingerpotleaping2", - "leapareapotionextended": "lingerpotleaping2", - "leapareapotionex": "lingerpotleaping2", - "leapareapotionlevel2": "lingerpotleaping2", - "areapotleaping2": "lingerpotleaping2", - "areapotleapinglong": "lingerpotleaping2", - "areapotleapingextended": "lingerpotleaping2", - "areapotleapingex": "lingerpotleaping2", - "areapotleapinglevel2": "lingerpotleaping2", - "areapotleap2": "lingerpotleaping2", - "areapotleaplong": "lingerpotleaping2", - "areapotleapextended": "lingerpotleaping2", - "areapotleapex": "lingerpotleaping2", - "areapotleaplevel2": "lingerpotleaping2", - "leapingareapot2": "lingerpotleaping2", - "leapingareapotlong": "lingerpotleaping2", - "leapingareapotextended": "lingerpotleaping2", - "leapingareapotex": "lingerpotleaping2", - "leapingareapotlevel2": "lingerpotleaping2", - "leapareapot2": "lingerpotleaping2", - "leapareapotlong": "lingerpotleaping2", - "leapareapotextended": "lingerpotleaping2", - "leapareapotex": "lingerpotleaping2", - "leapareapotlevel2": "lingerpotleaping2", - "cloudpotionleaping2": "lingerpotleaping2", - "cloudpotionleapinglong": "lingerpotleaping2", - "cloudpotionleapingextended": "lingerpotleaping2", - "cloudpotionleapingex": "lingerpotleaping2", - "cloudpotionleapinglevel2": "lingerpotleaping2", - "cloudpotionleap2": "lingerpotleaping2", - "cloudpotionleaplong": "lingerpotleaping2", - "cloudpotionleapextended": "lingerpotleaping2", - "cloudpotionleapex": "lingerpotleaping2", - "cloudpotionleaplevel2": "lingerpotleaping2", - "leapingcloudpotion2": "lingerpotleaping2", - "leapingcloudpotionlong": "lingerpotleaping2", - "leapingcloudpotionextended": "lingerpotleaping2", - "leapingcloudpotionex": "lingerpotleaping2", - "leapingcloudpotionlevel2": "lingerpotleaping2", - "leapcloudpotion2": "lingerpotleaping2", - "leapcloudpotionlong": "lingerpotleaping2", - "leapcloudpotionextended": "lingerpotleaping2", - "leapcloudpotionex": "lingerpotleaping2", - "leapcloudpotionlevel2": "lingerpotleaping2", - "cloudpotleaping2": "lingerpotleaping2", - "cloudpotleapinglong": "lingerpotleaping2", - "cloudpotleapingextended": "lingerpotleaping2", - "cloudpotleapingex": "lingerpotleaping2", - "cloudpotleapinglevel2": "lingerpotleaping2", - "cloudpotleap2": "lingerpotleaping2", - "cloudpotleaplong": "lingerpotleaping2", - "cloudpotleapextended": "lingerpotleaping2", - "cloudpotleapex": "lingerpotleaping2", - "cloudpotleaplevel2": "lingerpotleaping2", - "leapingcloudpot2": "lingerpotleaping2", - "leapingcloudpotlong": "lingerpotleaping2", - "leapingcloudpotextended": "lingerpotleaping2", - "leapingcloudpotex": "lingerpotleaping2", - "leapingcloudpotlevel2": "lingerpotleaping2", - "leapcloudpot2": "lingerpotleaping2", - "leapcloudpotlong": "lingerpotleaping2", - "leapcloudpotextended": "lingerpotleaping2", - "leapcloudpotex": "lingerpotleaping2", - "leapcloudpotlevel2": "lingerpotleaping2", - "arrowleaping2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_leaping", - "type": "JUMP", - "upgraded": false, - "extended": true - } - }, - "arrowleapinglong": "arrowleaping2", - "arrowleapingextended": "arrowleaping2", - "arrowleapingex": "arrowleaping2", - "arrowleapinglevel2": "arrowleaping2", - "arrowleap2": "arrowleaping2", - "arrowleaplong": "arrowleaping2", - "arrowleapextended": "arrowleaping2", - "arrowleapex": "arrowleaping2", - "arrowleaplevel2": "arrowleaping2", - "leapingarrow2": "arrowleaping2", - "leapingarrowlong": "arrowleaping2", - "leapingarrowextended": "arrowleaping2", - "leapingarrowex": "arrowleaping2", - "leapingarrowlevel2": "arrowleaping2", - "leaparrow2": "arrowleaping2", - "leaparrowlong": "arrowleaping2", - "leaparrowextended": "arrowleaping2", - "leaparrowex": "arrowleaping2", - "leaparrowlevel2": "arrowleaping2", - "fireresistpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": false - } - }, - "firerespotion": "fireresistpotion", - "fireresistancepotion": "fireresistpotion", - "fireresistpot": "fireresistpotion", - "firerespot": "fireresistpotion", - "fireresistancepot": "fireresistpotion", - "potionoffireresist": "fireresistpotion", - "potionoffireres": "fireresistpotion", - "potionoffireresistance": "fireresistpotion", - "potoffireresist": "fireresistpotion", - "potoffireres": "fireresistpotion", - "potoffireresistance": "fireresistpotion", - "splashfireresistpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": false - } - }, - "splashfirerespotion": "splashfireresistpotion", - "splashfireresistancepotion": "splashfireresistpotion", - "splfireresistpotion": "splashfireresistpotion", - "splfirerespotion": "splashfireresistpotion", - "splfireresistancepotion": "splashfireresistpotion", - "fireresistsplashpotion": "splashfireresistpotion", - "fireressplashpotion": "splashfireresistpotion", - "fireresistancesplashpotion": "splashfireresistpotion", - "splashfireresistpot": "splashfireresistpotion", - "splashfirerespot": "splashfireresistpotion", - "splashfireresistancepot": "splashfireresistpotion", - "splfireresistpot": "splashfireresistpotion", - "splfirerespot": "splashfireresistpotion", - "splfireresistancepot": "splashfireresistpotion", - "fireresistsplashpot": "splashfireresistpotion", - "fireressplashpot": "splashfireresistpotion", - "fireresistancesplashpot": "splashfireresistpotion", - "lingerpotfireresist": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": false - } - }, - "lingerpotfireres": "lingerpotfireresist", - "lingerpotfireresistance": "lingerpotfireresist", - "fireresistlingerpot": "lingerpotfireresist", - "firereslingerpot": "lingerpotfireresist", - "fireresistancelingerpot": "lingerpotfireresist", - "aoepotionfireresist": "lingerpotfireresist", - "aoepotionfireres": "lingerpotfireresist", - "aoepotionfireresistance": "lingerpotfireresist", - "fireresistaoepoiont": "lingerpotfireresist", - "fireresaoepoiont": "lingerpotfireresist", - "fireresistanceaoepoiont": "lingerpotfireresist", - "aoepotfireresist": "lingerpotfireresist", - "aoepotfireres": "lingerpotfireresist", - "aoepotfireresistance": "lingerpotfireresist", - "fireresistaoepot": "lingerpotfireresist", - "fireresaoepot": "lingerpotfireresist", - "fireresistanceaoepot": "lingerpotfireresist", - "areapotionfireresist": "lingerpotfireresist", - "areapotionfireres": "lingerpotfireresist", - "areapotionfireresistance": "lingerpotfireresist", - "fireresistareapotion": "lingerpotfireresist", - "fireresareapotion": "lingerpotfireresist", - "fireresistanceareapotion": "lingerpotfireresist", - "areapotfireresist": "lingerpotfireresist", - "areapotfireres": "lingerpotfireresist", - "areapotfireresistance": "lingerpotfireresist", - "fireresistareapot": "lingerpotfireresist", - "fireresareapot": "lingerpotfireresist", - "fireresistanceareapot": "lingerpotfireresist", - "cloudpotionfireresist": "lingerpotfireresist", - "cloudpotionfireres": "lingerpotfireresist", - "cloudpotionfireresistance": "lingerpotfireresist", - "fireresistcloudpotion": "lingerpotfireresist", - "firerescloudpotion": "lingerpotfireresist", - "fireresistancecloudpotion": "lingerpotfireresist", - "cloudpotfireresist": "lingerpotfireresist", - "cloudpotfireres": "lingerpotfireresist", - "cloudpotfireresistance": "lingerpotfireresist", - "fireresistcloudpot": "lingerpotfireresist", - "firerescloudpot": "lingerpotfireresist", - "fireresistancecloudpot": "lingerpotfireresist", - "arrowfireresist": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": false - } - }, - "arrowfireres": "arrowfireresist", - "arrowfireresistance": "arrowfireresist", - "fireresistarrow": "arrowfireresist", - "fireresarrow": "arrowfireresist", - "fireresistancearrow": "arrowfireresist", - "fireresist2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": true - } - }, - "fireresistlongpotion": "fireresist2potion", - "fireresistextendedpotion": "fireresist2potion", - "fireresistexpotion": "fireresist2potion", - "fireresistlevel2potion": "fireresist2potion", - "fireres2potion": "fireresist2potion", - "firereslongpotion": "fireresist2potion", - "fireresextendedpotion": "fireresist2potion", - "fireresexpotion": "fireresist2potion", - "firereslevel2potion": "fireresist2potion", - "fireresistance2potion": "fireresist2potion", - "fireresistancelongpotion": "fireresist2potion", - "fireresistanceextendedpotion": "fireresist2potion", - "fireresistanceexpotion": "fireresist2potion", - "fireresistancelevel2potion": "fireresist2potion", - "fireresist2pot": "fireresist2potion", - "fireresistlongpot": "fireresist2potion", - "fireresistextendedpot": "fireresist2potion", - "fireresistexpot": "fireresist2potion", - "fireresistlevel2pot": "fireresist2potion", - "fireres2pot": "fireresist2potion", - "firereslongpot": "fireresist2potion", - "fireresextendedpot": "fireresist2potion", - "fireresexpot": "fireresist2potion", - "firereslevel2pot": "fireresist2potion", - "fireresistance2pot": "fireresist2potion", - "fireresistancelongpot": "fireresist2potion", - "fireresistanceextendedpot": "fireresist2potion", - "fireresistanceexpot": "fireresist2potion", - "fireresistancelevel2pot": "fireresist2potion", - "potionoffireresist2": "fireresist2potion", - "potionoffireresistlong": "fireresist2potion", - "potionoffireresistextended": "fireresist2potion", - "potionoffireresistex": "fireresist2potion", - "potionoffireresistlevel2": "fireresist2potion", - "potionoffireres2": "fireresist2potion", - "potionoffirereslong": "fireresist2potion", - "potionoffireresextended": "fireresist2potion", - "potionoffireresex": "fireresist2potion", - "potionoffirereslevel2": "fireresist2potion", - "potionoffireresistance2": "fireresist2potion", - "potionoffireresistancelong": "fireresist2potion", - "potionoffireresistanceextended": "fireresist2potion", - "potionoffireresistanceex": "fireresist2potion", - "potionoffireresistancelevel2": "fireresist2potion", - "potoffireresist2": "fireresist2potion", - "potoffireresistlong": "fireresist2potion", - "potoffireresistextended": "fireresist2potion", - "potoffireresistex": "fireresist2potion", - "potoffireresistlevel2": "fireresist2potion", - "potoffireres2": "fireresist2potion", - "potoffirereslong": "fireresist2potion", - "potoffireresextended": "fireresist2potion", - "potoffireresex": "fireresist2potion", - "potoffirereslevel2": "fireresist2potion", - "potoffireresistance2": "fireresist2potion", - "potoffireresistancelong": "fireresist2potion", - "potoffireresistanceextended": "fireresist2potion", - "potoffireresistanceex": "fireresist2potion", - "potoffireresistancelevel2": "fireresist2potion", - "splashfireresist2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": true - } - }, - "splashfireresistlongpotion": "splashfireresist2potion", - "splashfireresistextendedpotion": "splashfireresist2potion", - "splashfireresistexpotion": "splashfireresist2potion", - "splashfireresistlevel2potion": "splashfireresist2potion", - "splashfireres2potion": "splashfireresist2potion", - "splashfirereslongpotion": "splashfireresist2potion", - "splashfireresextendedpotion": "splashfireresist2potion", - "splashfireresexpotion": "splashfireresist2potion", - "splashfirereslevel2potion": "splashfireresist2potion", - "splashfireresistance2potion": "splashfireresist2potion", - "splashfireresistancelongpotion": "splashfireresist2potion", - "splashfireresistanceextendedpotion": "splashfireresist2potion", - "splashfireresistanceexpotion": "splashfireresist2potion", - "splashfireresistancelevel2potion": "splashfireresist2potion", - "splfireresist2potion": "splashfireresist2potion", - "splfireresistlongpotion": "splashfireresist2potion", - "splfireresistextendedpotion": "splashfireresist2potion", - "splfireresistexpotion": "splashfireresist2potion", - "splfireresistlevel2potion": "splashfireresist2potion", - "splfireres2potion": "splashfireresist2potion", - "splfirereslongpotion": "splashfireresist2potion", - "splfireresextendedpotion": "splashfireresist2potion", - "splfireresexpotion": "splashfireresist2potion", - "splfirereslevel2potion": "splashfireresist2potion", - "splfireresistance2potion": "splashfireresist2potion", - "splfireresistancelongpotion": "splashfireresist2potion", - "splfireresistanceextendedpotion": "splashfireresist2potion", - "splfireresistanceexpotion": "splashfireresist2potion", - "splfireresistancelevel2potion": "splashfireresist2potion", - "fireresist2splashpotion": "splashfireresist2potion", - "fireresistlongsplashpotion": "splashfireresist2potion", - "fireresistextendedsplashpotion": "splashfireresist2potion", - "fireresistexsplashpotion": "splashfireresist2potion", - "fireresistlevel2splashpotion": "splashfireresist2potion", - "fireres2splashpotion": "splashfireresist2potion", - "firereslongsplashpotion": "splashfireresist2potion", - "fireresextendedsplashpotion": "splashfireresist2potion", - "fireresexsplashpotion": "splashfireresist2potion", - "firereslevel2splashpotion": "splashfireresist2potion", - "fireresistance2splashpotion": "splashfireresist2potion", - "fireresistancelongsplashpotion": "splashfireresist2potion", - "fireresistanceextendedsplashpotion": "splashfireresist2potion", - "fireresistanceexsplashpotion": "splashfireresist2potion", - "fireresistancelevel2splashpotion": "splashfireresist2potion", - "splashfireresist2pot": "splashfireresist2potion", - "splashfireresistlongpot": "splashfireresist2potion", - "splashfireresistextendedpot": "splashfireresist2potion", - "splashfireresistexpot": "splashfireresist2potion", - "splashfireresistlevel2pot": "splashfireresist2potion", - "splashfireres2pot": "splashfireresist2potion", - "splashfirereslongpot": "splashfireresist2potion", - "splashfireresextendedpot": "splashfireresist2potion", - "splashfireresexpot": "splashfireresist2potion", - "splashfirereslevel2pot": "splashfireresist2potion", - "splashfireresistance2pot": "splashfireresist2potion", - "splashfireresistancelongpot": "splashfireresist2potion", - "splashfireresistanceextendedpot": "splashfireresist2potion", - "splashfireresistanceexpot": "splashfireresist2potion", - "splashfireresistancelevel2pot": "splashfireresist2potion", - "splfireresist2pot": "splashfireresist2potion", - "splfireresistlongpot": "splashfireresist2potion", - "splfireresistextendedpot": "splashfireresist2potion", - "splfireresistexpot": "splashfireresist2potion", - "splfireresistlevel2pot": "splashfireresist2potion", - "splfireres2pot": "splashfireresist2potion", - "splfirereslongpot": "splashfireresist2potion", - "splfireresextendedpot": "splashfireresist2potion", - "splfireresexpot": "splashfireresist2potion", - "splfirereslevel2pot": "splashfireresist2potion", - "splfireresistance2pot": "splashfireresist2potion", - "splfireresistancelongpot": "splashfireresist2potion", - "splfireresistanceextendedpot": "splashfireresist2potion", - "splfireresistanceexpot": "splashfireresist2potion", - "splfireresistancelevel2pot": "splashfireresist2potion", - "fireresist2splashpot": "splashfireresist2potion", - "fireresistlongsplashpot": "splashfireresist2potion", - "fireresistextendedsplashpot": "splashfireresist2potion", - "fireresistexsplashpot": "splashfireresist2potion", - "fireresistlevel2splashpot": "splashfireresist2potion", - "fireres2splashpot": "splashfireresist2potion", - "firereslongsplashpot": "splashfireresist2potion", - "fireresextendedsplashpot": "splashfireresist2potion", - "fireresexsplashpot": "splashfireresist2potion", - "firereslevel2splashpot": "splashfireresist2potion", - "fireresistance2splashpot": "splashfireresist2potion", - "fireresistancelongsplashpot": "splashfireresist2potion", - "fireresistanceextendedsplashpot": "splashfireresist2potion", - "fireresistanceexsplashpot": "splashfireresist2potion", - "fireresistancelevel2splashpot": "splashfireresist2potion", - "lingerpotfireresist2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": true - } - }, - "lingerpotfireresistlong": "lingerpotfireresist2", - "lingerpotfireresistextended": "lingerpotfireresist2", - "lingerpotfireresistex": "lingerpotfireresist2", - "lingerpotfireresistlevel2": "lingerpotfireresist2", - "lingerpotfireres2": "lingerpotfireresist2", - "lingerpotfirereslong": "lingerpotfireresist2", - "lingerpotfireresextended": "lingerpotfireresist2", - "lingerpotfireresex": "lingerpotfireresist2", - "lingerpotfirereslevel2": "lingerpotfireresist2", - "lingerpotfireresistance2": "lingerpotfireresist2", - "lingerpotfireresistancelong": "lingerpotfireresist2", - "lingerpotfireresistanceextended": "lingerpotfireresist2", - "lingerpotfireresistanceex": "lingerpotfireresist2", - "lingerpotfireresistancelevel2": "lingerpotfireresist2", - "fireresistlingerpot2": "lingerpotfireresist2", - "fireresistlingerpotlong": "lingerpotfireresist2", - "fireresistlingerpotextended": "lingerpotfireresist2", - "fireresistlingerpotex": "lingerpotfireresist2", - "fireresistlingerpotlevel2": "lingerpotfireresist2", - "firereslingerpot2": "lingerpotfireresist2", - "firereslingerpotlong": "lingerpotfireresist2", - "firereslingerpotextended": "lingerpotfireresist2", - "firereslingerpotex": "lingerpotfireresist2", - "firereslingerpotlevel2": "lingerpotfireresist2", - "fireresistancelingerpot2": "lingerpotfireresist2", - "fireresistancelingerpotlong": "lingerpotfireresist2", - "fireresistancelingerpotextended": "lingerpotfireresist2", - "fireresistancelingerpotex": "lingerpotfireresist2", - "fireresistancelingerpotlevel2": "lingerpotfireresist2", - "aoepotionfireresist2": "lingerpotfireresist2", - "aoepotionfireresistlong": "lingerpotfireresist2", - "aoepotionfireresistextended": "lingerpotfireresist2", - "aoepotionfireresistex": "lingerpotfireresist2", - "aoepotionfireresistlevel2": "lingerpotfireresist2", - "aoepotionfireres2": "lingerpotfireresist2", - "aoepotionfirereslong": "lingerpotfireresist2", - "aoepotionfireresextended": "lingerpotfireresist2", - "aoepotionfireresex": "lingerpotfireresist2", - "aoepotionfirereslevel2": "lingerpotfireresist2", - "aoepotionfireresistance2": "lingerpotfireresist2", - "aoepotionfireresistancelong": "lingerpotfireresist2", - "aoepotionfireresistanceextended": "lingerpotfireresist2", - "aoepotionfireresistanceex": "lingerpotfireresist2", - "aoepotionfireresistancelevel2": "lingerpotfireresist2", - "fireresistaoepoiont2": "lingerpotfireresist2", - "fireresistaoepoiontlong": "lingerpotfireresist2", - "fireresistaoepoiontextended": "lingerpotfireresist2", - "fireresistaoepoiontex": "lingerpotfireresist2", - "fireresistaoepoiontlevel2": "lingerpotfireresist2", - "fireresaoepoiont2": "lingerpotfireresist2", - "fireresaoepoiontlong": "lingerpotfireresist2", - "fireresaoepoiontextended": "lingerpotfireresist2", - "fireresaoepoiontex": "lingerpotfireresist2", - "fireresaoepoiontlevel2": "lingerpotfireresist2", - "fireresistanceaoepoiont2": "lingerpotfireresist2", - "fireresistanceaoepoiontlong": "lingerpotfireresist2", - "fireresistanceaoepoiontextended": "lingerpotfireresist2", - "fireresistanceaoepoiontex": "lingerpotfireresist2", - "fireresistanceaoepoiontlevel2": "lingerpotfireresist2", - "aoepotfireresist2": "lingerpotfireresist2", - "aoepotfireresistlong": "lingerpotfireresist2", - "aoepotfireresistextended": "lingerpotfireresist2", - "aoepotfireresistex": "lingerpotfireresist2", - "aoepotfireresistlevel2": "lingerpotfireresist2", - "aoepotfireres2": "lingerpotfireresist2", - "aoepotfirereslong": "lingerpotfireresist2", - "aoepotfireresextended": "lingerpotfireresist2", - "aoepotfireresex": "lingerpotfireresist2", - "aoepotfirereslevel2": "lingerpotfireresist2", - "aoepotfireresistance2": "lingerpotfireresist2", - "aoepotfireresistancelong": "lingerpotfireresist2", - "aoepotfireresistanceextended": "lingerpotfireresist2", - "aoepotfireresistanceex": "lingerpotfireresist2", - "aoepotfireresistancelevel2": "lingerpotfireresist2", - "fireresistaoepot2": "lingerpotfireresist2", - "fireresistaoepotlong": "lingerpotfireresist2", - "fireresistaoepotextended": "lingerpotfireresist2", - "fireresistaoepotex": "lingerpotfireresist2", - "fireresistaoepotlevel2": "lingerpotfireresist2", - "fireresaoepot2": "lingerpotfireresist2", - "fireresaoepotlong": "lingerpotfireresist2", - "fireresaoepotextended": "lingerpotfireresist2", - "fireresaoepotex": "lingerpotfireresist2", - "fireresaoepotlevel2": "lingerpotfireresist2", - "fireresistanceaoepot2": "lingerpotfireresist2", - "fireresistanceaoepotlong": "lingerpotfireresist2", - "fireresistanceaoepotextended": "lingerpotfireresist2", - "fireresistanceaoepotex": "lingerpotfireresist2", - "fireresistanceaoepotlevel2": "lingerpotfireresist2", - "areapotionfireresist2": "lingerpotfireresist2", - "areapotionfireresistlong": "lingerpotfireresist2", - "areapotionfireresistextended": "lingerpotfireresist2", - "areapotionfireresistex": "lingerpotfireresist2", - "areapotionfireresistlevel2": "lingerpotfireresist2", - "areapotionfireres2": "lingerpotfireresist2", - "areapotionfirereslong": "lingerpotfireresist2", - "areapotionfireresextended": "lingerpotfireresist2", - "areapotionfireresex": "lingerpotfireresist2", - "areapotionfirereslevel2": "lingerpotfireresist2", - "areapotionfireresistance2": "lingerpotfireresist2", - "areapotionfireresistancelong": "lingerpotfireresist2", - "areapotionfireresistanceextended": "lingerpotfireresist2", - "areapotionfireresistanceex": "lingerpotfireresist2", - "areapotionfireresistancelevel2": "lingerpotfireresist2", - "fireresistareapotion2": "lingerpotfireresist2", - "fireresistareapotionlong": "lingerpotfireresist2", - "fireresistareapotionextended": "lingerpotfireresist2", - "fireresistareapotionex": "lingerpotfireresist2", - "fireresistareapotionlevel2": "lingerpotfireresist2", - "fireresareapotion2": "lingerpotfireresist2", - "fireresareapotionlong": "lingerpotfireresist2", - "fireresareapotionextended": "lingerpotfireresist2", - "fireresareapotionex": "lingerpotfireresist2", - "fireresareapotionlevel2": "lingerpotfireresist2", - "fireresistanceareapotion2": "lingerpotfireresist2", - "fireresistanceareapotionlong": "lingerpotfireresist2", - "fireresistanceareapotionextended": "lingerpotfireresist2", - "fireresistanceareapotionex": "lingerpotfireresist2", - "fireresistanceareapotionlevel2": "lingerpotfireresist2", - "areapotfireresist2": "lingerpotfireresist2", - "areapotfireresistlong": "lingerpotfireresist2", - "areapotfireresistextended": "lingerpotfireresist2", - "areapotfireresistex": "lingerpotfireresist2", - "areapotfireresistlevel2": "lingerpotfireresist2", - "areapotfireres2": "lingerpotfireresist2", - "areapotfirereslong": "lingerpotfireresist2", - "areapotfireresextended": "lingerpotfireresist2", - "areapotfireresex": "lingerpotfireresist2", - "areapotfirereslevel2": "lingerpotfireresist2", - "areapotfireresistance2": "lingerpotfireresist2", - "areapotfireresistancelong": "lingerpotfireresist2", - "areapotfireresistanceextended": "lingerpotfireresist2", - "areapotfireresistanceex": "lingerpotfireresist2", - "areapotfireresistancelevel2": "lingerpotfireresist2", - "fireresistareapot2": "lingerpotfireresist2", - "fireresistareapotlong": "lingerpotfireresist2", - "fireresistareapotextended": "lingerpotfireresist2", - "fireresistareapotex": "lingerpotfireresist2", - "fireresistareapotlevel2": "lingerpotfireresist2", - "fireresareapot2": "lingerpotfireresist2", - "fireresareapotlong": "lingerpotfireresist2", - "fireresareapotextended": "lingerpotfireresist2", - "fireresareapotex": "lingerpotfireresist2", - "fireresareapotlevel2": "lingerpotfireresist2", - "fireresistanceareapot2": "lingerpotfireresist2", - "fireresistanceareapotlong": "lingerpotfireresist2", - "fireresistanceareapotextended": "lingerpotfireresist2", - "fireresistanceareapotex": "lingerpotfireresist2", - "fireresistanceareapotlevel2": "lingerpotfireresist2", - "cloudpotionfireresist2": "lingerpotfireresist2", - "cloudpotionfireresistlong": "lingerpotfireresist2", - "cloudpotionfireresistextended": "lingerpotfireresist2", - "cloudpotionfireresistex": "lingerpotfireresist2", - "cloudpotionfireresistlevel2": "lingerpotfireresist2", - "cloudpotionfireres2": "lingerpotfireresist2", - "cloudpotionfirereslong": "lingerpotfireresist2", - "cloudpotionfireresextended": "lingerpotfireresist2", - "cloudpotionfireresex": "lingerpotfireresist2", - "cloudpotionfirereslevel2": "lingerpotfireresist2", - "cloudpotionfireresistance2": "lingerpotfireresist2", - "cloudpotionfireresistancelong": "lingerpotfireresist2", - "cloudpotionfireresistanceextended": "lingerpotfireresist2", - "cloudpotionfireresistanceex": "lingerpotfireresist2", - "cloudpotionfireresistancelevel2": "lingerpotfireresist2", - "fireresistcloudpotion2": "lingerpotfireresist2", - "fireresistcloudpotionlong": "lingerpotfireresist2", - "fireresistcloudpotionextended": "lingerpotfireresist2", - "fireresistcloudpotionex": "lingerpotfireresist2", - "fireresistcloudpotionlevel2": "lingerpotfireresist2", - "firerescloudpotion2": "lingerpotfireresist2", - "firerescloudpotionlong": "lingerpotfireresist2", - "firerescloudpotionextended": "lingerpotfireresist2", - "firerescloudpotionex": "lingerpotfireresist2", - "firerescloudpotionlevel2": "lingerpotfireresist2", - "fireresistancecloudpotion2": "lingerpotfireresist2", - "fireresistancecloudpotionlong": "lingerpotfireresist2", - "fireresistancecloudpotionextended": "lingerpotfireresist2", - "fireresistancecloudpotionex": "lingerpotfireresist2", - "fireresistancecloudpotionlevel2": "lingerpotfireresist2", - "cloudpotfireresist2": "lingerpotfireresist2", - "cloudpotfireresistlong": "lingerpotfireresist2", - "cloudpotfireresistextended": "lingerpotfireresist2", - "cloudpotfireresistex": "lingerpotfireresist2", - "cloudpotfireresistlevel2": "lingerpotfireresist2", - "cloudpotfireres2": "lingerpotfireresist2", - "cloudpotfirereslong": "lingerpotfireresist2", - "cloudpotfireresextended": "lingerpotfireresist2", - "cloudpotfireresex": "lingerpotfireresist2", - "cloudpotfirereslevel2": "lingerpotfireresist2", - "cloudpotfireresistance2": "lingerpotfireresist2", - "cloudpotfireresistancelong": "lingerpotfireresist2", - "cloudpotfireresistanceextended": "lingerpotfireresist2", - "cloudpotfireresistanceex": "lingerpotfireresist2", - "cloudpotfireresistancelevel2": "lingerpotfireresist2", - "fireresistcloudpot2": "lingerpotfireresist2", - "fireresistcloudpotlong": "lingerpotfireresist2", - "fireresistcloudpotextended": "lingerpotfireresist2", - "fireresistcloudpotex": "lingerpotfireresist2", - "fireresistcloudpotlevel2": "lingerpotfireresist2", - "firerescloudpot2": "lingerpotfireresist2", - "firerescloudpotlong": "lingerpotfireresist2", - "firerescloudpotextended": "lingerpotfireresist2", - "firerescloudpotex": "lingerpotfireresist2", - "firerescloudpotlevel2": "lingerpotfireresist2", - "fireresistancecloudpot2": "lingerpotfireresist2", - "fireresistancecloudpotlong": "lingerpotfireresist2", - "fireresistancecloudpotextended": "lingerpotfireresist2", - "fireresistancecloudpotex": "lingerpotfireresist2", - "fireresistancecloudpotlevel2": "lingerpotfireresist2", - "arrowfireresist2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_fire_resistance", - "type": "FIRE_RESISTANCE", - "upgraded": false, - "extended": true - } - }, - "arrowfireresistlong": "arrowfireresist2", - "arrowfireresistextended": "arrowfireresist2", - "arrowfireresistex": "arrowfireresist2", - "arrowfireresistlevel2": "arrowfireresist2", - "arrowfireres2": "arrowfireresist2", - "arrowfirereslong": "arrowfireresist2", - "arrowfireresextended": "arrowfireresist2", - "arrowfireresex": "arrowfireresist2", - "arrowfirereslevel2": "arrowfireresist2", - "arrowfireresistance2": "arrowfireresist2", - "arrowfireresistancelong": "arrowfireresist2", - "arrowfireresistanceextended": "arrowfireresist2", - "arrowfireresistanceex": "arrowfireresist2", - "arrowfireresistancelevel2": "arrowfireresist2", - "fireresistarrow2": "arrowfireresist2", - "fireresistarrowlong": "arrowfireresist2", - "fireresistarrowextended": "arrowfireresist2", - "fireresistarrowex": "arrowfireresist2", - "fireresistarrowlevel2": "arrowfireresist2", - "fireresarrow2": "arrowfireresist2", - "fireresarrowlong": "arrowfireresist2", - "fireresarrowextended": "arrowfireresist2", - "fireresarrowex": "arrowfireresist2", - "fireresarrowlevel2": "arrowfireresist2", - "fireresistancearrow2": "arrowfireresist2", - "fireresistancearrowlong": "arrowfireresist2", - "fireresistancearrowextended": "arrowfireresist2", - "fireresistancearrowex": "arrowfireresist2", - "fireresistancearrowlevel2": "arrowfireresist2", - "swiftnesspotion": { - "material": "POTION", - "potionData": { - "vanillaType": "swiftness", - "type": "SPEED", - "upgraded": false, - "extended": false - } - }, - "swiftpotion": "swiftnesspotion", - "speedpotion": "swiftnesspotion", - "swiftnesspot": "swiftnesspotion", - "swiftpot": "swiftnesspotion", - "speedpot": "swiftnesspotion", - "potionofswiftness": "swiftnesspotion", - "potionofswift": "swiftnesspotion", - "potionofspeed": "swiftnesspotion", - "potofswiftness": "swiftnesspotion", - "potofswift": "swiftnesspotion", - "potofspeed": "swiftnesspotion", - "splashswiftnesspotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "swiftness", - "type": "SPEED", - "upgraded": false, - "extended": false - } - }, - "splashswiftpotion": "splashswiftnesspotion", - "splashspeedpotion": "splashswiftnesspotion", - "splswiftnesspotion": "splashswiftnesspotion", - "splswiftpotion": "splashswiftnesspotion", - "splspeedpotion": "splashswiftnesspotion", - "swiftnesssplashpotion": "splashswiftnesspotion", - "swiftsplashpotion": "splashswiftnesspotion", - "speedsplashpotion": "splashswiftnesspotion", - "splashswiftnesspot": "splashswiftnesspotion", - "splashswiftpot": "splashswiftnesspotion", - "splashspeedpot": "splashswiftnesspotion", - "splswiftnesspot": "splashswiftnesspotion", - "splswiftpot": "splashswiftnesspotion", - "splspeedpot": "splashswiftnesspotion", - "swiftnesssplashpot": "splashswiftnesspotion", - "swiftsplashpot": "splashswiftnesspotion", - "speedsplashpot": "splashswiftnesspotion", - "lingerpotswiftness": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "swiftness", - "type": "SPEED", - "upgraded": false, - "extended": false - } - }, - "lingerpotswift": "lingerpotswiftness", - "lingerpotspeed": "lingerpotswiftness", - "swiftnesslingerpot": "lingerpotswiftness", - "swiftlingerpot": "lingerpotswiftness", - "speedlingerpot": "lingerpotswiftness", - "aoepotionswiftness": "lingerpotswiftness", - "aoepotionswift": "lingerpotswiftness", - "aoepotionspeed": "lingerpotswiftness", - "swiftnessaoepoiont": "lingerpotswiftness", - "swiftaoepoiont": "lingerpotswiftness", - "speedaoepoiont": "lingerpotswiftness", - "aoepotswiftness": "lingerpotswiftness", - "aoepotswift": "lingerpotswiftness", - "aoepotspeed": "lingerpotswiftness", - "swiftnessaoepot": "lingerpotswiftness", - "swiftaoepot": "lingerpotswiftness", - "speedaoepot": "lingerpotswiftness", - "areapotionswiftness": "lingerpotswiftness", - "areapotionswift": "lingerpotswiftness", - "areapotionspeed": "lingerpotswiftness", - "swiftnessareapotion": "lingerpotswiftness", - "swiftareapotion": "lingerpotswiftness", - "speedareapotion": "lingerpotswiftness", - "areapotswiftness": "lingerpotswiftness", - "areapotswift": "lingerpotswiftness", - "areapotspeed": "lingerpotswiftness", - "swiftnessareapot": "lingerpotswiftness", - "swiftareapot": "lingerpotswiftness", - "speedareapot": "lingerpotswiftness", - "cloudpotionswiftness": "lingerpotswiftness", - "cloudpotionswift": "lingerpotswiftness", - "cloudpotionspeed": "lingerpotswiftness", - "swiftnesscloudpotion": "lingerpotswiftness", - "swiftcloudpotion": "lingerpotswiftness", - "speedcloudpotion": "lingerpotswiftness", - "cloudpotswiftness": "lingerpotswiftness", - "cloudpotswift": "lingerpotswiftness", - "cloudpotspeed": "lingerpotswiftness", - "swiftnesscloudpot": "lingerpotswiftness", - "swiftcloudpot": "lingerpotswiftness", - "speedcloudpot": "lingerpotswiftness", - "arrowswiftness": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "swiftness", - "type": "SPEED", - "upgraded": false, - "extended": false - } - }, - "arrowswift": "arrowswiftness", - "arrowspeed": "arrowswiftness", - "swiftnessarrow": "arrowswiftness", - "swiftarrow": "arrowswiftness", - "speedarrow": "arrowswiftness", - "swiftnessiipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_swiftness", - "type": "SPEED", - "upgraded": true, - "extended": false - } - }, - "swiftnessstrongpotion": "swiftnessiipotion", - "swiftnessleveliipotion": "swiftnessiipotion", - "swiftiipotion": "swiftnessiipotion", - "swiftstrongpotion": "swiftnessiipotion", - "swiftleveliipotion": "swiftnessiipotion", - "speediipotion": "swiftnessiipotion", - "speedstrongpotion": "swiftnessiipotion", - "speedleveliipotion": "swiftnessiipotion", - "swiftnessiipot": "swiftnessiipotion", - "swiftnessstrongpot": "swiftnessiipotion", - "swiftnessleveliipot": "swiftnessiipotion", - "swiftiipot": "swiftnessiipotion", - "swiftstrongpot": "swiftnessiipotion", - "swiftleveliipot": "swiftnessiipotion", - "speediipot": "swiftnessiipotion", - "speedstrongpot": "swiftnessiipotion", - "speedleveliipot": "swiftnessiipotion", - "potionofswiftnessii": "swiftnessiipotion", - "potionofswiftnessstrong": "swiftnessiipotion", - "potionofswiftnesslevelii": "swiftnessiipotion", - "potionofswiftii": "swiftnessiipotion", - "potionofswiftstrong": "swiftnessiipotion", - "potionofswiftlevelii": "swiftnessiipotion", - "potionofspeedii": "swiftnessiipotion", - "potionofspeedstrong": "swiftnessiipotion", - "potionofspeedlevelii": "swiftnessiipotion", - "potofswiftnessii": "swiftnessiipotion", - "potofswiftnessstrong": "swiftnessiipotion", - "potofswiftnesslevelii": "swiftnessiipotion", - "potofswiftii": "swiftnessiipotion", - "potofswiftstrong": "swiftnessiipotion", - "potofswiftlevelii": "swiftnessiipotion", - "potofspeedii": "swiftnessiipotion", - "potofspeedstrong": "swiftnessiipotion", - "potofspeedlevelii": "swiftnessiipotion", - "splashswiftnessiipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_swiftness", - "type": "SPEED", - "upgraded": true, - "extended": false - } - }, - "splashswiftnessstrongpotion": "splashswiftnessiipotion", - "splashswiftnessleveliipotion": "splashswiftnessiipotion", - "splashswiftiipotion": "splashswiftnessiipotion", - "splashswiftstrongpotion": "splashswiftnessiipotion", - "splashswiftleveliipotion": "splashswiftnessiipotion", - "splashspeediipotion": "splashswiftnessiipotion", - "splashspeedstrongpotion": "splashswiftnessiipotion", - "splashspeedleveliipotion": "splashswiftnessiipotion", - "splswiftnessiipotion": "splashswiftnessiipotion", - "splswiftnessstrongpotion": "splashswiftnessiipotion", - "splswiftnessleveliipotion": "splashswiftnessiipotion", - "splswiftiipotion": "splashswiftnessiipotion", - "splswiftstrongpotion": "splashswiftnessiipotion", - "splswiftleveliipotion": "splashswiftnessiipotion", - "splspeediipotion": "splashswiftnessiipotion", - "splspeedstrongpotion": "splashswiftnessiipotion", - "splspeedleveliipotion": "splashswiftnessiipotion", - "swiftnessiisplashpotion": "splashswiftnessiipotion", - "swiftnessstrongsplashpotion": "splashswiftnessiipotion", - "swiftnessleveliisplashpotion": "splashswiftnessiipotion", - "swiftiisplashpotion": "splashswiftnessiipotion", - "swiftstrongsplashpotion": "splashswiftnessiipotion", - "swiftleveliisplashpotion": "splashswiftnessiipotion", - "speediisplashpotion": "splashswiftnessiipotion", - "speedstrongsplashpotion": "splashswiftnessiipotion", - "speedleveliisplashpotion": "splashswiftnessiipotion", - "splashswiftnessiipot": "splashswiftnessiipotion", - "splashswiftnessstrongpot": "splashswiftnessiipotion", - "splashswiftnessleveliipot": "splashswiftnessiipotion", - "splashswiftiipot": "splashswiftnessiipotion", - "splashswiftstrongpot": "splashswiftnessiipotion", - "splashswiftleveliipot": "splashswiftnessiipotion", - "splashspeediipot": "splashswiftnessiipotion", - "splashspeedstrongpot": "splashswiftnessiipotion", - "splashspeedleveliipot": "splashswiftnessiipotion", - "splswiftnessiipot": "splashswiftnessiipotion", - "splswiftnessstrongpot": "splashswiftnessiipotion", - "splswiftnessleveliipot": "splashswiftnessiipotion", - "splswiftiipot": "splashswiftnessiipotion", - "splswiftstrongpot": "splashswiftnessiipotion", - "splswiftleveliipot": "splashswiftnessiipotion", - "splspeediipot": "splashswiftnessiipotion", - "splspeedstrongpot": "splashswiftnessiipotion", - "splspeedleveliipot": "splashswiftnessiipotion", - "swiftnessiisplashpot": "splashswiftnessiipotion", - "swiftnessstrongsplashpot": "splashswiftnessiipotion", - "swiftnessleveliisplashpot": "splashswiftnessiipotion", - "swiftiisplashpot": "splashswiftnessiipotion", - "swiftstrongsplashpot": "splashswiftnessiipotion", - "swiftleveliisplashpot": "splashswiftnessiipotion", - "speediisplashpot": "splashswiftnessiipotion", - "speedstrongsplashpot": "splashswiftnessiipotion", - "speedleveliisplashpot": "splashswiftnessiipotion", - "lingerpotswiftnessii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_swiftness", - "type": "SPEED", - "upgraded": true, - "extended": false - } - }, - "lingerpotswiftnessstrong": "lingerpotswiftnessii", - "lingerpotswiftnesslevelii": "lingerpotswiftnessii", - "lingerpotswiftii": "lingerpotswiftnessii", - "lingerpotswiftstrong": "lingerpotswiftnessii", - "lingerpotswiftlevelii": "lingerpotswiftnessii", - "lingerpotspeedii": "lingerpotswiftnessii", - "lingerpotspeedstrong": "lingerpotswiftnessii", - "lingerpotspeedlevelii": "lingerpotswiftnessii", - "swiftnesslingerpotii": "lingerpotswiftnessii", - "swiftnesslingerpotstrong": "lingerpotswiftnessii", - "swiftnesslingerpotlevelii": "lingerpotswiftnessii", - "swiftlingerpotii": "lingerpotswiftnessii", - "swiftlingerpotstrong": "lingerpotswiftnessii", - "swiftlingerpotlevelii": "lingerpotswiftnessii", - "speedlingerpotii": "lingerpotswiftnessii", - "speedlingerpotstrong": "lingerpotswiftnessii", - "speedlingerpotlevelii": "lingerpotswiftnessii", - "aoepotionswiftnessii": "lingerpotswiftnessii", - "aoepotionswiftnessstrong": "lingerpotswiftnessii", - "aoepotionswiftnesslevelii": "lingerpotswiftnessii", - "aoepotionswiftii": "lingerpotswiftnessii", - "aoepotionswiftstrong": "lingerpotswiftnessii", - "aoepotionswiftlevelii": "lingerpotswiftnessii", - "aoepotionspeedii": "lingerpotswiftnessii", - "aoepotionspeedstrong": "lingerpotswiftnessii", - "aoepotionspeedlevelii": "lingerpotswiftnessii", - "swiftnessaoepoiontii": "lingerpotswiftnessii", - "swiftnessaoepoiontstrong": "lingerpotswiftnessii", - "swiftnessaoepoiontlevelii": "lingerpotswiftnessii", - "swiftaoepoiontii": "lingerpotswiftnessii", - "swiftaoepoiontstrong": "lingerpotswiftnessii", - "swiftaoepoiontlevelii": "lingerpotswiftnessii", - "speedaoepoiontii": "lingerpotswiftnessii", - "speedaoepoiontstrong": "lingerpotswiftnessii", - "speedaoepoiontlevelii": "lingerpotswiftnessii", - "aoepotswiftnessii": "lingerpotswiftnessii", - "aoepotswiftnessstrong": "lingerpotswiftnessii", - "aoepotswiftnesslevelii": "lingerpotswiftnessii", - "aoepotswiftii": "lingerpotswiftnessii", - "aoepotswiftstrong": "lingerpotswiftnessii", - "aoepotswiftlevelii": "lingerpotswiftnessii", - "aoepotspeedii": "lingerpotswiftnessii", - "aoepotspeedstrong": "lingerpotswiftnessii", - "aoepotspeedlevelii": "lingerpotswiftnessii", - "swiftnessaoepotii": "lingerpotswiftnessii", - "swiftnessaoepotstrong": "lingerpotswiftnessii", - "swiftnessaoepotlevelii": "lingerpotswiftnessii", - "swiftaoepotii": "lingerpotswiftnessii", - "swiftaoepotstrong": "lingerpotswiftnessii", - "swiftaoepotlevelii": "lingerpotswiftnessii", - "speedaoepotii": "lingerpotswiftnessii", - "speedaoepotstrong": "lingerpotswiftnessii", - "speedaoepotlevelii": "lingerpotswiftnessii", - "areapotionswiftnessii": "lingerpotswiftnessii", - "areapotionswiftnessstrong": "lingerpotswiftnessii", - "areapotionswiftnesslevelii": "lingerpotswiftnessii", - "areapotionswiftii": "lingerpotswiftnessii", - "areapotionswiftstrong": "lingerpotswiftnessii", - "areapotionswiftlevelii": "lingerpotswiftnessii", - "areapotionspeedii": "lingerpotswiftnessii", - "areapotionspeedstrong": "lingerpotswiftnessii", - "areapotionspeedlevelii": "lingerpotswiftnessii", - "swiftnessareapotionii": "lingerpotswiftnessii", - "swiftnessareapotionstrong": "lingerpotswiftnessii", - "swiftnessareapotionlevelii": "lingerpotswiftnessii", - "swiftareapotionii": "lingerpotswiftnessii", - "swiftareapotionstrong": "lingerpotswiftnessii", - "swiftareapotionlevelii": "lingerpotswiftnessii", - "speedareapotionii": "lingerpotswiftnessii", - "speedareapotionstrong": "lingerpotswiftnessii", - "speedareapotionlevelii": "lingerpotswiftnessii", - "areapotswiftnessii": "lingerpotswiftnessii", - "areapotswiftnessstrong": "lingerpotswiftnessii", - "areapotswiftnesslevelii": "lingerpotswiftnessii", - "areapotswiftii": "lingerpotswiftnessii", - "areapotswiftstrong": "lingerpotswiftnessii", - "areapotswiftlevelii": "lingerpotswiftnessii", - "areapotspeedii": "lingerpotswiftnessii", - "areapotspeedstrong": "lingerpotswiftnessii", - "areapotspeedlevelii": "lingerpotswiftnessii", - "swiftnessareapotii": "lingerpotswiftnessii", - "swiftnessareapotstrong": "lingerpotswiftnessii", - "swiftnessareapotlevelii": "lingerpotswiftnessii", - "swiftareapotii": "lingerpotswiftnessii", - "swiftareapotstrong": "lingerpotswiftnessii", - "swiftareapotlevelii": "lingerpotswiftnessii", - "speedareapotii": "lingerpotswiftnessii", - "speedareapotstrong": "lingerpotswiftnessii", - "speedareapotlevelii": "lingerpotswiftnessii", - "cloudpotionswiftnessii": "lingerpotswiftnessii", - "cloudpotionswiftnessstrong": "lingerpotswiftnessii", - "cloudpotionswiftnesslevelii": "lingerpotswiftnessii", - "cloudpotionswiftii": "lingerpotswiftnessii", - "cloudpotionswiftstrong": "lingerpotswiftnessii", - "cloudpotionswiftlevelii": "lingerpotswiftnessii", - "cloudpotionspeedii": "lingerpotswiftnessii", - "cloudpotionspeedstrong": "lingerpotswiftnessii", - "cloudpotionspeedlevelii": "lingerpotswiftnessii", - "swiftnesscloudpotionii": "lingerpotswiftnessii", - "swiftnesscloudpotionstrong": "lingerpotswiftnessii", - "swiftnesscloudpotionlevelii": "lingerpotswiftnessii", - "swiftcloudpotionii": "lingerpotswiftnessii", - "swiftcloudpotionstrong": "lingerpotswiftnessii", - "swiftcloudpotionlevelii": "lingerpotswiftnessii", - "speedcloudpotionii": "lingerpotswiftnessii", - "speedcloudpotionstrong": "lingerpotswiftnessii", - "speedcloudpotionlevelii": "lingerpotswiftnessii", - "cloudpotswiftnessii": "lingerpotswiftnessii", - "cloudpotswiftnessstrong": "lingerpotswiftnessii", - "cloudpotswiftnesslevelii": "lingerpotswiftnessii", - "cloudpotswiftii": "lingerpotswiftnessii", - "cloudpotswiftstrong": "lingerpotswiftnessii", - "cloudpotswiftlevelii": "lingerpotswiftnessii", - "cloudpotspeedii": "lingerpotswiftnessii", - "cloudpotspeedstrong": "lingerpotswiftnessii", - "cloudpotspeedlevelii": "lingerpotswiftnessii", - "swiftnesscloudpotii": "lingerpotswiftnessii", - "swiftnesscloudpotstrong": "lingerpotswiftnessii", - "swiftnesscloudpotlevelii": "lingerpotswiftnessii", - "swiftcloudpotii": "lingerpotswiftnessii", - "swiftcloudpotstrong": "lingerpotswiftnessii", - "swiftcloudpotlevelii": "lingerpotswiftnessii", - "speedcloudpotii": "lingerpotswiftnessii", - "speedcloudpotstrong": "lingerpotswiftnessii", - "speedcloudpotlevelii": "lingerpotswiftnessii", - "arrowswiftnessii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_swiftness", - "type": "SPEED", - "upgraded": true, - "extended": false - } - }, - "arrowswiftnessstrong": "arrowswiftnessii", - "arrowswiftnesslevelii": "arrowswiftnessii", - "arrowswiftii": "arrowswiftnessii", - "arrowswiftstrong": "arrowswiftnessii", - "arrowswiftlevelii": "arrowswiftnessii", - "arrowspeedii": "arrowswiftnessii", - "arrowspeedstrong": "arrowswiftnessii", - "arrowspeedlevelii": "arrowswiftnessii", - "swiftnessarrowii": "arrowswiftnessii", - "swiftnessarrowstrong": "arrowswiftnessii", - "swiftnessarrowlevelii": "arrowswiftnessii", - "swiftarrowii": "arrowswiftnessii", - "swiftarrowstrong": "arrowswiftnessii", - "swiftarrowlevelii": "arrowswiftnessii", - "speedarrowii": "arrowswiftnessii", - "speedarrowstrong": "arrowswiftnessii", - "speedarrowlevelii": "arrowswiftnessii", - "swiftness2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_swiftness", - "type": "SPEED", - "upgraded": false, - "extended": true - } - }, - "swiftnesslongpotion": "swiftness2potion", - "swiftnessextendedpotion": "swiftness2potion", - "swiftnessexpotion": "swiftness2potion", - "swiftnesslevel2potion": "swiftness2potion", - "swift2potion": "swiftness2potion", - "swiftlongpotion": "swiftness2potion", - "swiftextendedpotion": "swiftness2potion", - "swiftexpotion": "swiftness2potion", - "swiftlevel2potion": "swiftness2potion", - "speed2potion": "swiftness2potion", - "speedlongpotion": "swiftness2potion", - "speedextendedpotion": "swiftness2potion", - "speedexpotion": "swiftness2potion", - "speedlevel2potion": "swiftness2potion", - "swiftness2pot": "swiftness2potion", - "swiftnesslongpot": "swiftness2potion", - "swiftnessextendedpot": "swiftness2potion", - "swiftnessexpot": "swiftness2potion", - "swiftnesslevel2pot": "swiftness2potion", - "swift2pot": "swiftness2potion", - "swiftlongpot": "swiftness2potion", - "swiftextendedpot": "swiftness2potion", - "swiftexpot": "swiftness2potion", - "swiftlevel2pot": "swiftness2potion", - "speed2pot": "swiftness2potion", - "speedlongpot": "swiftness2potion", - "speedextendedpot": "swiftness2potion", - "speedexpot": "swiftness2potion", - "speedlevel2pot": "swiftness2potion", - "potionofswiftness2": "swiftness2potion", - "potionofswiftnesslong": "swiftness2potion", - "potionofswiftnessextended": "swiftness2potion", - "potionofswiftnessex": "swiftness2potion", - "potionofswiftnesslevel2": "swiftness2potion", - "potionofswift2": "swiftness2potion", - "potionofswiftlong": "swiftness2potion", - "potionofswiftextended": "swiftness2potion", - "potionofswiftex": "swiftness2potion", - "potionofswiftlevel2": "swiftness2potion", - "potionofspeed2": "swiftness2potion", - "potionofspeedlong": "swiftness2potion", - "potionofspeedextended": "swiftness2potion", - "potionofspeedex": "swiftness2potion", - "potionofspeedlevel2": "swiftness2potion", - "potofswiftness2": "swiftness2potion", - "potofswiftnesslong": "swiftness2potion", - "potofswiftnessextended": "swiftness2potion", - "potofswiftnessex": "swiftness2potion", - "potofswiftnesslevel2": "swiftness2potion", - "potofswift2": "swiftness2potion", - "potofswiftlong": "swiftness2potion", - "potofswiftextended": "swiftness2potion", - "potofswiftex": "swiftness2potion", - "potofswiftlevel2": "swiftness2potion", - "potofspeed2": "swiftness2potion", - "potofspeedlong": "swiftness2potion", - "potofspeedextended": "swiftness2potion", - "potofspeedex": "swiftness2potion", - "potofspeedlevel2": "swiftness2potion", - "splashswiftness2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_swiftness", - "type": "SPEED", - "upgraded": false, - "extended": true - } - }, - "splashswiftnesslongpotion": "splashswiftness2potion", - "splashswiftnessextendedpotion": "splashswiftness2potion", - "splashswiftnessexpotion": "splashswiftness2potion", - "splashswiftnesslevel2potion": "splashswiftness2potion", - "splashswift2potion": "splashswiftness2potion", - "splashswiftlongpotion": "splashswiftness2potion", - "splashswiftextendedpotion": "splashswiftness2potion", - "splashswiftexpotion": "splashswiftness2potion", - "splashswiftlevel2potion": "splashswiftness2potion", - "splashspeed2potion": "splashswiftness2potion", - "splashspeedlongpotion": "splashswiftness2potion", - "splashspeedextendedpotion": "splashswiftness2potion", - "splashspeedexpotion": "splashswiftness2potion", - "splashspeedlevel2potion": "splashswiftness2potion", - "splswiftness2potion": "splashswiftness2potion", - "splswiftnesslongpotion": "splashswiftness2potion", - "splswiftnessextendedpotion": "splashswiftness2potion", - "splswiftnessexpotion": "splashswiftness2potion", - "splswiftnesslevel2potion": "splashswiftness2potion", - "splswift2potion": "splashswiftness2potion", - "splswiftlongpotion": "splashswiftness2potion", - "splswiftextendedpotion": "splashswiftness2potion", - "splswiftexpotion": "splashswiftness2potion", - "splswiftlevel2potion": "splashswiftness2potion", - "splspeed2potion": "splashswiftness2potion", - "splspeedlongpotion": "splashswiftness2potion", - "splspeedextendedpotion": "splashswiftness2potion", - "splspeedexpotion": "splashswiftness2potion", - "splspeedlevel2potion": "splashswiftness2potion", - "swiftness2splashpotion": "splashswiftness2potion", - "swiftnesslongsplashpotion": "splashswiftness2potion", - "swiftnessextendedsplashpotion": "splashswiftness2potion", - "swiftnessexsplashpotion": "splashswiftness2potion", - "swiftnesslevel2splashpotion": "splashswiftness2potion", - "swift2splashpotion": "splashswiftness2potion", - "swiftlongsplashpotion": "splashswiftness2potion", - "swiftextendedsplashpotion": "splashswiftness2potion", - "swiftexsplashpotion": "splashswiftness2potion", - "swiftlevel2splashpotion": "splashswiftness2potion", - "speed2splashpotion": "splashswiftness2potion", - "speedlongsplashpotion": "splashswiftness2potion", - "speedextendedsplashpotion": "splashswiftness2potion", - "speedexsplashpotion": "splashswiftness2potion", - "speedlevel2splashpotion": "splashswiftness2potion", - "splashswiftness2pot": "splashswiftness2potion", - "splashswiftnesslongpot": "splashswiftness2potion", - "splashswiftnessextendedpot": "splashswiftness2potion", - "splashswiftnessexpot": "splashswiftness2potion", - "splashswiftnesslevel2pot": "splashswiftness2potion", - "splashswift2pot": "splashswiftness2potion", - "splashswiftlongpot": "splashswiftness2potion", - "splashswiftextendedpot": "splashswiftness2potion", - "splashswiftexpot": "splashswiftness2potion", - "splashswiftlevel2pot": "splashswiftness2potion", - "splashspeed2pot": "splashswiftness2potion", - "splashspeedlongpot": "splashswiftness2potion", - "splashspeedextendedpot": "splashswiftness2potion", - "splashspeedexpot": "splashswiftness2potion", - "splashspeedlevel2pot": "splashswiftness2potion", - "splswiftness2pot": "splashswiftness2potion", - "splswiftnesslongpot": "splashswiftness2potion", - "splswiftnessextendedpot": "splashswiftness2potion", - "splswiftnessexpot": "splashswiftness2potion", - "splswiftnesslevel2pot": "splashswiftness2potion", - "splswift2pot": "splashswiftness2potion", - "splswiftlongpot": "splashswiftness2potion", - "splswiftextendedpot": "splashswiftness2potion", - "splswiftexpot": "splashswiftness2potion", - "splswiftlevel2pot": "splashswiftness2potion", - "splspeed2pot": "splashswiftness2potion", - "splspeedlongpot": "splashswiftness2potion", - "splspeedextendedpot": "splashswiftness2potion", - "splspeedexpot": "splashswiftness2potion", - "splspeedlevel2pot": "splashswiftness2potion", - "swiftness2splashpot": "splashswiftness2potion", - "swiftnesslongsplashpot": "splashswiftness2potion", - "swiftnessextendedsplashpot": "splashswiftness2potion", - "swiftnessexsplashpot": "splashswiftness2potion", - "swiftnesslevel2splashpot": "splashswiftness2potion", - "swift2splashpot": "splashswiftness2potion", - "swiftlongsplashpot": "splashswiftness2potion", - "swiftextendedsplashpot": "splashswiftness2potion", - "swiftexsplashpot": "splashswiftness2potion", - "swiftlevel2splashpot": "splashswiftness2potion", - "speed2splashpot": "splashswiftness2potion", - "speedlongsplashpot": "splashswiftness2potion", - "speedextendedsplashpot": "splashswiftness2potion", - "speedexsplashpot": "splashswiftness2potion", - "speedlevel2splashpot": "splashswiftness2potion", - "lingerpotswiftness2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_swiftness", - "type": "SPEED", - "upgraded": false, - "extended": true - } - }, - "lingerpotswiftnesslong": "lingerpotswiftness2", - "lingerpotswiftnessextended": "lingerpotswiftness2", - "lingerpotswiftnessex": "lingerpotswiftness2", - "lingerpotswiftnesslevel2": "lingerpotswiftness2", - "lingerpotswift2": "lingerpotswiftness2", - "lingerpotswiftlong": "lingerpotswiftness2", - "lingerpotswiftextended": "lingerpotswiftness2", - "lingerpotswiftex": "lingerpotswiftness2", - "lingerpotswiftlevel2": "lingerpotswiftness2", - "lingerpotspeed2": "lingerpotswiftness2", - "lingerpotspeedlong": "lingerpotswiftness2", - "lingerpotspeedextended": "lingerpotswiftness2", - "lingerpotspeedex": "lingerpotswiftness2", - "lingerpotspeedlevel2": "lingerpotswiftness2", - "swiftnesslingerpot2": "lingerpotswiftness2", - "swiftnesslingerpotlong": "lingerpotswiftness2", - "swiftnesslingerpotextended": "lingerpotswiftness2", - "swiftnesslingerpotex": "lingerpotswiftness2", - "swiftnesslingerpotlevel2": "lingerpotswiftness2", - "swiftlingerpot2": "lingerpotswiftness2", - "swiftlingerpotlong": "lingerpotswiftness2", - "swiftlingerpotextended": "lingerpotswiftness2", - "swiftlingerpotex": "lingerpotswiftness2", - "swiftlingerpotlevel2": "lingerpotswiftness2", - "speedlingerpot2": "lingerpotswiftness2", - "speedlingerpotlong": "lingerpotswiftness2", - "speedlingerpotextended": "lingerpotswiftness2", - "speedlingerpotex": "lingerpotswiftness2", - "speedlingerpotlevel2": "lingerpotswiftness2", - "aoepotionswiftness2": "lingerpotswiftness2", - "aoepotionswiftnesslong": "lingerpotswiftness2", - "aoepotionswiftnessextended": "lingerpotswiftness2", - "aoepotionswiftnessex": "lingerpotswiftness2", - "aoepotionswiftnesslevel2": "lingerpotswiftness2", - "aoepotionswift2": "lingerpotswiftness2", - "aoepotionswiftlong": "lingerpotswiftness2", - "aoepotionswiftextended": "lingerpotswiftness2", - "aoepotionswiftex": "lingerpotswiftness2", - "aoepotionswiftlevel2": "lingerpotswiftness2", - "aoepotionspeed2": "lingerpotswiftness2", - "aoepotionspeedlong": "lingerpotswiftness2", - "aoepotionspeedextended": "lingerpotswiftness2", - "aoepotionspeedex": "lingerpotswiftness2", - "aoepotionspeedlevel2": "lingerpotswiftness2", - "swiftnessaoepoiont2": "lingerpotswiftness2", - "swiftnessaoepoiontlong": "lingerpotswiftness2", - "swiftnessaoepoiontextended": "lingerpotswiftness2", - "swiftnessaoepoiontex": "lingerpotswiftness2", - "swiftnessaoepoiontlevel2": "lingerpotswiftness2", - "swiftaoepoiont2": "lingerpotswiftness2", - "swiftaoepoiontlong": "lingerpotswiftness2", - "swiftaoepoiontextended": "lingerpotswiftness2", - "swiftaoepoiontex": "lingerpotswiftness2", - "swiftaoepoiontlevel2": "lingerpotswiftness2", - "speedaoepoiont2": "lingerpotswiftness2", - "speedaoepoiontlong": "lingerpotswiftness2", - "speedaoepoiontextended": "lingerpotswiftness2", - "speedaoepoiontex": "lingerpotswiftness2", - "speedaoepoiontlevel2": "lingerpotswiftness2", - "aoepotswiftness2": "lingerpotswiftness2", - "aoepotswiftnesslong": "lingerpotswiftness2", - "aoepotswiftnessextended": "lingerpotswiftness2", - "aoepotswiftnessex": "lingerpotswiftness2", - "aoepotswiftnesslevel2": "lingerpotswiftness2", - "aoepotswift2": "lingerpotswiftness2", - "aoepotswiftlong": "lingerpotswiftness2", - "aoepotswiftextended": "lingerpotswiftness2", - "aoepotswiftex": "lingerpotswiftness2", - "aoepotswiftlevel2": "lingerpotswiftness2", - "aoepotspeed2": "lingerpotswiftness2", - "aoepotspeedlong": "lingerpotswiftness2", - "aoepotspeedextended": "lingerpotswiftness2", - "aoepotspeedex": "lingerpotswiftness2", - "aoepotspeedlevel2": "lingerpotswiftness2", - "swiftnessaoepot2": "lingerpotswiftness2", - "swiftnessaoepotlong": "lingerpotswiftness2", - "swiftnessaoepotextended": "lingerpotswiftness2", - "swiftnessaoepotex": "lingerpotswiftness2", - "swiftnessaoepotlevel2": "lingerpotswiftness2", - "swiftaoepot2": "lingerpotswiftness2", - "swiftaoepotlong": "lingerpotswiftness2", - "swiftaoepotextended": "lingerpotswiftness2", - "swiftaoepotex": "lingerpotswiftness2", - "swiftaoepotlevel2": "lingerpotswiftness2", - "speedaoepot2": "lingerpotswiftness2", - "speedaoepotlong": "lingerpotswiftness2", - "speedaoepotextended": "lingerpotswiftness2", - "speedaoepotex": "lingerpotswiftness2", - "speedaoepotlevel2": "lingerpotswiftness2", - "areapotionswiftness2": "lingerpotswiftness2", - "areapotionswiftnesslong": "lingerpotswiftness2", - "areapotionswiftnessextended": "lingerpotswiftness2", - "areapotionswiftnessex": "lingerpotswiftness2", - "areapotionswiftnesslevel2": "lingerpotswiftness2", - "areapotionswift2": "lingerpotswiftness2", - "areapotionswiftlong": "lingerpotswiftness2", - "areapotionswiftextended": "lingerpotswiftness2", - "areapotionswiftex": "lingerpotswiftness2", - "areapotionswiftlevel2": "lingerpotswiftness2", - "areapotionspeed2": "lingerpotswiftness2", - "areapotionspeedlong": "lingerpotswiftness2", - "areapotionspeedextended": "lingerpotswiftness2", - "areapotionspeedex": "lingerpotswiftness2", - "areapotionspeedlevel2": "lingerpotswiftness2", - "swiftnessareapotion2": "lingerpotswiftness2", - "swiftnessareapotionlong": "lingerpotswiftness2", - "swiftnessareapotionextended": "lingerpotswiftness2", - "swiftnessareapotionex": "lingerpotswiftness2", - "swiftnessareapotionlevel2": "lingerpotswiftness2", - "swiftareapotion2": "lingerpotswiftness2", - "swiftareapotionlong": "lingerpotswiftness2", - "swiftareapotionextended": "lingerpotswiftness2", - "swiftareapotionex": "lingerpotswiftness2", - "swiftareapotionlevel2": "lingerpotswiftness2", - "speedareapotion2": "lingerpotswiftness2", - "speedareapotionlong": "lingerpotswiftness2", - "speedareapotionextended": "lingerpotswiftness2", - "speedareapotionex": "lingerpotswiftness2", - "speedareapotionlevel2": "lingerpotswiftness2", - "areapotswiftness2": "lingerpotswiftness2", - "areapotswiftnesslong": "lingerpotswiftness2", - "areapotswiftnessextended": "lingerpotswiftness2", - "areapotswiftnessex": "lingerpotswiftness2", - "areapotswiftnesslevel2": "lingerpotswiftness2", - "areapotswift2": "lingerpotswiftness2", - "areapotswiftlong": "lingerpotswiftness2", - "areapotswiftextended": "lingerpotswiftness2", - "areapotswiftex": "lingerpotswiftness2", - "areapotswiftlevel2": "lingerpotswiftness2", - "areapotspeed2": "lingerpotswiftness2", - "areapotspeedlong": "lingerpotswiftness2", - "areapotspeedextended": "lingerpotswiftness2", - "areapotspeedex": "lingerpotswiftness2", - "areapotspeedlevel2": "lingerpotswiftness2", - "swiftnessareapot2": "lingerpotswiftness2", - "swiftnessareapotlong": "lingerpotswiftness2", - "swiftnessareapotextended": "lingerpotswiftness2", - "swiftnessareapotex": "lingerpotswiftness2", - "swiftnessareapotlevel2": "lingerpotswiftness2", - "swiftareapot2": "lingerpotswiftness2", - "swiftareapotlong": "lingerpotswiftness2", - "swiftareapotextended": "lingerpotswiftness2", - "swiftareapotex": "lingerpotswiftness2", - "swiftareapotlevel2": "lingerpotswiftness2", - "speedareapot2": "lingerpotswiftness2", - "speedareapotlong": "lingerpotswiftness2", - "speedareapotextended": "lingerpotswiftness2", - "speedareapotex": "lingerpotswiftness2", - "speedareapotlevel2": "lingerpotswiftness2", - "cloudpotionswiftness2": "lingerpotswiftness2", - "cloudpotionswiftnesslong": "lingerpotswiftness2", - "cloudpotionswiftnessextended": "lingerpotswiftness2", - "cloudpotionswiftnessex": "lingerpotswiftness2", - "cloudpotionswiftnesslevel2": "lingerpotswiftness2", - "cloudpotionswift2": "lingerpotswiftness2", - "cloudpotionswiftlong": "lingerpotswiftness2", - "cloudpotionswiftextended": "lingerpotswiftness2", - "cloudpotionswiftex": "lingerpotswiftness2", - "cloudpotionswiftlevel2": "lingerpotswiftness2", - "cloudpotionspeed2": "lingerpotswiftness2", - "cloudpotionspeedlong": "lingerpotswiftness2", - "cloudpotionspeedextended": "lingerpotswiftness2", - "cloudpotionspeedex": "lingerpotswiftness2", - "cloudpotionspeedlevel2": "lingerpotswiftness2", - "swiftnesscloudpotion2": "lingerpotswiftness2", - "swiftnesscloudpotionlong": "lingerpotswiftness2", - "swiftnesscloudpotionextended": "lingerpotswiftness2", - "swiftnesscloudpotionex": "lingerpotswiftness2", - "swiftnesscloudpotionlevel2": "lingerpotswiftness2", - "swiftcloudpotion2": "lingerpotswiftness2", - "swiftcloudpotionlong": "lingerpotswiftness2", - "swiftcloudpotionextended": "lingerpotswiftness2", - "swiftcloudpotionex": "lingerpotswiftness2", - "swiftcloudpotionlevel2": "lingerpotswiftness2", - "speedcloudpotion2": "lingerpotswiftness2", - "speedcloudpotionlong": "lingerpotswiftness2", - "speedcloudpotionextended": "lingerpotswiftness2", - "speedcloudpotionex": "lingerpotswiftness2", - "speedcloudpotionlevel2": "lingerpotswiftness2", - "cloudpotswiftness2": "lingerpotswiftness2", - "cloudpotswiftnesslong": "lingerpotswiftness2", - "cloudpotswiftnessextended": "lingerpotswiftness2", - "cloudpotswiftnessex": "lingerpotswiftness2", - "cloudpotswiftnesslevel2": "lingerpotswiftness2", - "cloudpotswift2": "lingerpotswiftness2", - "cloudpotswiftlong": "lingerpotswiftness2", - "cloudpotswiftextended": "lingerpotswiftness2", - "cloudpotswiftex": "lingerpotswiftness2", - "cloudpotswiftlevel2": "lingerpotswiftness2", - "cloudpotspeed2": "lingerpotswiftness2", - "cloudpotspeedlong": "lingerpotswiftness2", - "cloudpotspeedextended": "lingerpotswiftness2", - "cloudpotspeedex": "lingerpotswiftness2", - "cloudpotspeedlevel2": "lingerpotswiftness2", - "swiftnesscloudpot2": "lingerpotswiftness2", - "swiftnesscloudpotlong": "lingerpotswiftness2", - "swiftnesscloudpotextended": "lingerpotswiftness2", - "swiftnesscloudpotex": "lingerpotswiftness2", - "swiftnesscloudpotlevel2": "lingerpotswiftness2", - "swiftcloudpot2": "lingerpotswiftness2", - "swiftcloudpotlong": "lingerpotswiftness2", - "swiftcloudpotextended": "lingerpotswiftness2", - "swiftcloudpotex": "lingerpotswiftness2", - "swiftcloudpotlevel2": "lingerpotswiftness2", - "speedcloudpot2": "lingerpotswiftness2", - "speedcloudpotlong": "lingerpotswiftness2", - "speedcloudpotextended": "lingerpotswiftness2", - "speedcloudpotex": "lingerpotswiftness2", - "speedcloudpotlevel2": "lingerpotswiftness2", - "arrowswiftness2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_swiftness", - "type": "SPEED", - "upgraded": false, - "extended": true - } - }, - "arrowswiftnesslong": "arrowswiftness2", - "arrowswiftnessextended": "arrowswiftness2", - "arrowswiftnessex": "arrowswiftness2", - "arrowswiftnesslevel2": "arrowswiftness2", - "arrowswift2": "arrowswiftness2", - "arrowswiftlong": "arrowswiftness2", - "arrowswiftextended": "arrowswiftness2", - "arrowswiftex": "arrowswiftness2", - "arrowswiftlevel2": "arrowswiftness2", - "arrowspeed2": "arrowswiftness2", - "arrowspeedlong": "arrowswiftness2", - "arrowspeedextended": "arrowswiftness2", - "arrowspeedex": "arrowswiftness2", - "arrowspeedlevel2": "arrowswiftness2", - "swiftnessarrow2": "arrowswiftness2", - "swiftnessarrowlong": "arrowswiftness2", - "swiftnessarrowextended": "arrowswiftness2", - "swiftnessarrowex": "arrowswiftness2", - "swiftnessarrowlevel2": "arrowswiftness2", - "swiftarrow2": "arrowswiftness2", - "swiftarrowlong": "arrowswiftness2", - "swiftarrowextended": "arrowswiftness2", - "swiftarrowex": "arrowswiftness2", - "swiftarrowlevel2": "arrowswiftness2", - "speedarrow2": "arrowswiftness2", - "speedarrowlong": "arrowswiftness2", - "speedarrowextended": "arrowswiftness2", - "speedarrowex": "arrowswiftness2", - "speedarrowlevel2": "arrowswiftness2", - "slownesspotion": { - "material": "POTION", - "potionData": { - "vanillaType": "slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": false - } - }, - "slowpotion": "slownesspotion", - "slownesspot": "slownesspotion", - "slowpot": "slownesspotion", - "potionofslowness": "slownesspotion", - "potionofslow": "slownesspotion", - "potofslowness": "slownesspotion", - "potofslow": "slownesspotion", - "splashslownesspotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": false - } - }, - "splashslowpotion": "splashslownesspotion", - "splslownesspotion": "splashslownesspotion", - "splslowpotion": "splashslownesspotion", - "slownesssplashpotion": "splashslownesspotion", - "slowsplashpotion": "splashslownesspotion", - "splashslownesspot": "splashslownesspotion", - "splashslowpot": "splashslownesspotion", - "splslownesspot": "splashslownesspotion", - "splslowpot": "splashslownesspotion", - "slownesssplashpot": "splashslownesspotion", - "slowsplashpot": "splashslownesspotion", - "lingerpotslowness": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": false - } - }, - "lingerpotslow": "lingerpotslowness", - "slownesslingerpot": "lingerpotslowness", - "slowlingerpot": "lingerpotslowness", - "aoepotionslowness": "lingerpotslowness", - "aoepotionslow": "lingerpotslowness", - "slownessaoepoiont": "lingerpotslowness", - "slowaoepoiont": "lingerpotslowness", - "aoepotslowness": "lingerpotslowness", - "aoepotslow": "lingerpotslowness", - "slownessaoepot": "lingerpotslowness", - "slowaoepot": "lingerpotslowness", - "areapotionslowness": "lingerpotslowness", - "areapotionslow": "lingerpotslowness", - "slownessareapotion": "lingerpotslowness", - "slowareapotion": "lingerpotslowness", - "areapotslowness": "lingerpotslowness", - "areapotslow": "lingerpotslowness", - "slownessareapot": "lingerpotslowness", - "slowareapot": "lingerpotslowness", - "cloudpotionslowness": "lingerpotslowness", - "cloudpotionslow": "lingerpotslowness", - "slownesscloudpotion": "lingerpotslowness", - "slowcloudpotion": "lingerpotslowness", - "cloudpotslowness": "lingerpotslowness", - "cloudpotslow": "lingerpotslowness", - "slownesscloudpot": "lingerpotslowness", - "slowcloudpot": "lingerpotslowness", - "arrowslowness": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": false - } - }, - "arrowslow": "arrowslowness", - "slownessarrow": "arrowslowness", - "slowarrow": "arrowslowness", - "slowness2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": true - } - }, - "slownesslongpotion": "slowness2potion", - "slownessextendedpotion": "slowness2potion", - "slownessexpotion": "slowness2potion", - "slownesslevel2potion": "slowness2potion", - "slow2potion": "slowness2potion", - "slowlongpotion": "slowness2potion", - "slowextendedpotion": "slowness2potion", - "slowexpotion": "slowness2potion", - "slowlevel2potion": "slowness2potion", - "slowness2pot": "slowness2potion", - "slownesslongpot": "slowness2potion", - "slownessextendedpot": "slowness2potion", - "slownessexpot": "slowness2potion", - "slownesslevel2pot": "slowness2potion", - "slow2pot": "slowness2potion", - "slowlongpot": "slowness2potion", - "slowextendedpot": "slowness2potion", - "slowexpot": "slowness2potion", - "slowlevel2pot": "slowness2potion", - "potionofslowness2": "slowness2potion", - "potionofslownesslong": "slowness2potion", - "potionofslownessextended": "slowness2potion", - "potionofslownessex": "slowness2potion", - "potionofslownesslevel2": "slowness2potion", - "potionofslow2": "slowness2potion", - "potionofslowlong": "slowness2potion", - "potionofslowextended": "slowness2potion", - "potionofslowex": "slowness2potion", - "potionofslowlevel2": "slowness2potion", - "potofslowness2": "slowness2potion", - "potofslownesslong": "slowness2potion", - "potofslownessextended": "slowness2potion", - "potofslownessex": "slowness2potion", - "potofslownesslevel2": "slowness2potion", - "potofslow2": "slowness2potion", - "potofslowlong": "slowness2potion", - "potofslowextended": "slowness2potion", - "potofslowex": "slowness2potion", - "potofslowlevel2": "slowness2potion", - "splashslowness2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": true - } - }, - "splashslownesslongpotion": "splashslowness2potion", - "splashslownessextendedpotion": "splashslowness2potion", - "splashslownessexpotion": "splashslowness2potion", - "splashslownesslevel2potion": "splashslowness2potion", - "splashslow2potion": "splashslowness2potion", - "splashslowlongpotion": "splashslowness2potion", - "splashslowextendedpotion": "splashslowness2potion", - "splashslowexpotion": "splashslowness2potion", - "splashslowlevel2potion": "splashslowness2potion", - "splslowness2potion": "splashslowness2potion", - "splslownesslongpotion": "splashslowness2potion", - "splslownessextendedpotion": "splashslowness2potion", - "splslownessexpotion": "splashslowness2potion", - "splslownesslevel2potion": "splashslowness2potion", - "splslow2potion": "splashslowness2potion", - "splslowlongpotion": "splashslowness2potion", - "splslowextendedpotion": "splashslowness2potion", - "splslowexpotion": "splashslowness2potion", - "splslowlevel2potion": "splashslowness2potion", - "slowness2splashpotion": "splashslowness2potion", - "slownesslongsplashpotion": "splashslowness2potion", - "slownessextendedsplashpotion": "splashslowness2potion", - "slownessexsplashpotion": "splashslowness2potion", - "slownesslevel2splashpotion": "splashslowness2potion", - "slow2splashpotion": "splashslowness2potion", - "slowlongsplashpotion": "splashslowness2potion", - "slowextendedsplashpotion": "splashslowness2potion", - "slowexsplashpotion": "splashslowness2potion", - "slowlevel2splashpotion": "splashslowness2potion", - "splashslowness2pot": "splashslowness2potion", - "splashslownesslongpot": "splashslowness2potion", - "splashslownessextendedpot": "splashslowness2potion", - "splashslownessexpot": "splashslowness2potion", - "splashslownesslevel2pot": "splashslowness2potion", - "splashslow2pot": "splashslowness2potion", - "splashslowlongpot": "splashslowness2potion", - "splashslowextendedpot": "splashslowness2potion", - "splashslowexpot": "splashslowness2potion", - "splashslowlevel2pot": "splashslowness2potion", - "splslowness2pot": "splashslowness2potion", - "splslownesslongpot": "splashslowness2potion", - "splslownessextendedpot": "splashslowness2potion", - "splslownessexpot": "splashslowness2potion", - "splslownesslevel2pot": "splashslowness2potion", - "splslow2pot": "splashslowness2potion", - "splslowlongpot": "splashslowness2potion", - "splslowextendedpot": "splashslowness2potion", - "splslowexpot": "splashslowness2potion", - "splslowlevel2pot": "splashslowness2potion", - "slowness2splashpot": "splashslowness2potion", - "slownesslongsplashpot": "splashslowness2potion", - "slownessextendedsplashpot": "splashslowness2potion", - "slownessexsplashpot": "splashslowness2potion", - "slownesslevel2splashpot": "splashslowness2potion", - "slow2splashpot": "splashslowness2potion", - "slowlongsplashpot": "splashslowness2potion", - "slowextendedsplashpot": "splashslowness2potion", - "slowexsplashpot": "splashslowness2potion", - "slowlevel2splashpot": "splashslowness2potion", - "lingerpotslowness2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": true - } - }, - "lingerpotslownesslong": "lingerpotslowness2", - "lingerpotslownessextended": "lingerpotslowness2", - "lingerpotslownessex": "lingerpotslowness2", - "lingerpotslownesslevel2": "lingerpotslowness2", - "lingerpotslow2": "lingerpotslowness2", - "lingerpotslowlong": "lingerpotslowness2", - "lingerpotslowextended": "lingerpotslowness2", - "lingerpotslowex": "lingerpotslowness2", - "lingerpotslowlevel2": "lingerpotslowness2", - "slownesslingerpot2": "lingerpotslowness2", - "slownesslingerpotlong": "lingerpotslowness2", - "slownesslingerpotextended": "lingerpotslowness2", - "slownesslingerpotex": "lingerpotslowness2", - "slownesslingerpotlevel2": "lingerpotslowness2", - "slowlingerpot2": "lingerpotslowness2", - "slowlingerpotlong": "lingerpotslowness2", - "slowlingerpotextended": "lingerpotslowness2", - "slowlingerpotex": "lingerpotslowness2", - "slowlingerpotlevel2": "lingerpotslowness2", - "aoepotionslowness2": "lingerpotslowness2", - "aoepotionslownesslong": "lingerpotslowness2", - "aoepotionslownessextended": "lingerpotslowness2", - "aoepotionslownessex": "lingerpotslowness2", - "aoepotionslownesslevel2": "lingerpotslowness2", - "aoepotionslow2": "lingerpotslowness2", - "aoepotionslowlong": "lingerpotslowness2", - "aoepotionslowextended": "lingerpotslowness2", - "aoepotionslowex": "lingerpotslowness2", - "aoepotionslowlevel2": "lingerpotslowness2", - "slownessaoepoiont2": "lingerpotslowness2", - "slownessaoepoiontlong": "lingerpotslowness2", - "slownessaoepoiontextended": "lingerpotslowness2", - "slownessaoepoiontex": "lingerpotslowness2", - "slownessaoepoiontlevel2": "lingerpotslowness2", - "slowaoepoiont2": "lingerpotslowness2", - "slowaoepoiontlong": "lingerpotslowness2", - "slowaoepoiontextended": "lingerpotslowness2", - "slowaoepoiontex": "lingerpotslowness2", - "slowaoepoiontlevel2": "lingerpotslowness2", - "aoepotslowness2": "lingerpotslowness2", - "aoepotslownesslong": "lingerpotslowness2", - "aoepotslownessextended": "lingerpotslowness2", - "aoepotslownessex": "lingerpotslowness2", - "aoepotslownesslevel2": "lingerpotslowness2", - "aoepotslow2": "lingerpotslowness2", - "aoepotslowlong": "lingerpotslowness2", - "aoepotslowextended": "lingerpotslowness2", - "aoepotslowex": "lingerpotslowness2", - "aoepotslowlevel2": "lingerpotslowness2", - "slownessaoepot2": "lingerpotslowness2", - "slownessaoepotlong": "lingerpotslowness2", - "slownessaoepotextended": "lingerpotslowness2", - "slownessaoepotex": "lingerpotslowness2", - "slownessaoepotlevel2": "lingerpotslowness2", - "slowaoepot2": "lingerpotslowness2", - "slowaoepotlong": "lingerpotslowness2", - "slowaoepotextended": "lingerpotslowness2", - "slowaoepotex": "lingerpotslowness2", - "slowaoepotlevel2": "lingerpotslowness2", - "areapotionslowness2": "lingerpotslowness2", - "areapotionslownesslong": "lingerpotslowness2", - "areapotionslownessextended": "lingerpotslowness2", - "areapotionslownessex": "lingerpotslowness2", - "areapotionslownesslevel2": "lingerpotslowness2", - "areapotionslow2": "lingerpotslowness2", - "areapotionslowlong": "lingerpotslowness2", - "areapotionslowextended": "lingerpotslowness2", - "areapotionslowex": "lingerpotslowness2", - "areapotionslowlevel2": "lingerpotslowness2", - "slownessareapotion2": "lingerpotslowness2", - "slownessareapotionlong": "lingerpotslowness2", - "slownessareapotionextended": "lingerpotslowness2", - "slownessareapotionex": "lingerpotslowness2", - "slownessareapotionlevel2": "lingerpotslowness2", - "slowareapotion2": "lingerpotslowness2", - "slowareapotionlong": "lingerpotslowness2", - "slowareapotionextended": "lingerpotslowness2", - "slowareapotionex": "lingerpotslowness2", - "slowareapotionlevel2": "lingerpotslowness2", - "areapotslowness2": "lingerpotslowness2", - "areapotslownesslong": "lingerpotslowness2", - "areapotslownessextended": "lingerpotslowness2", - "areapotslownessex": "lingerpotslowness2", - "areapotslownesslevel2": "lingerpotslowness2", - "areapotslow2": "lingerpotslowness2", - "areapotslowlong": "lingerpotslowness2", - "areapotslowextended": "lingerpotslowness2", - "areapotslowex": "lingerpotslowness2", - "areapotslowlevel2": "lingerpotslowness2", - "slownessareapot2": "lingerpotslowness2", - "slownessareapotlong": "lingerpotslowness2", - "slownessareapotextended": "lingerpotslowness2", - "slownessareapotex": "lingerpotslowness2", - "slownessareapotlevel2": "lingerpotslowness2", - "slowareapot2": "lingerpotslowness2", - "slowareapotlong": "lingerpotslowness2", - "slowareapotextended": "lingerpotslowness2", - "slowareapotex": "lingerpotslowness2", - "slowareapotlevel2": "lingerpotslowness2", - "cloudpotionslowness2": "lingerpotslowness2", - "cloudpotionslownesslong": "lingerpotslowness2", - "cloudpotionslownessextended": "lingerpotslowness2", - "cloudpotionslownessex": "lingerpotslowness2", - "cloudpotionslownesslevel2": "lingerpotslowness2", - "cloudpotionslow2": "lingerpotslowness2", - "cloudpotionslowlong": "lingerpotslowness2", - "cloudpotionslowextended": "lingerpotslowness2", - "cloudpotionslowex": "lingerpotslowness2", - "cloudpotionslowlevel2": "lingerpotslowness2", - "slownesscloudpotion2": "lingerpotslowness2", - "slownesscloudpotionlong": "lingerpotslowness2", - "slownesscloudpotionextended": "lingerpotslowness2", - "slownesscloudpotionex": "lingerpotslowness2", - "slownesscloudpotionlevel2": "lingerpotslowness2", - "slowcloudpotion2": "lingerpotslowness2", - "slowcloudpotionlong": "lingerpotslowness2", - "slowcloudpotionextended": "lingerpotslowness2", - "slowcloudpotionex": "lingerpotslowness2", - "slowcloudpotionlevel2": "lingerpotslowness2", - "cloudpotslowness2": "lingerpotslowness2", - "cloudpotslownesslong": "lingerpotslowness2", - "cloudpotslownessextended": "lingerpotslowness2", - "cloudpotslownessex": "lingerpotslowness2", - "cloudpotslownesslevel2": "lingerpotslowness2", - "cloudpotslow2": "lingerpotslowness2", - "cloudpotslowlong": "lingerpotslowness2", - "cloudpotslowextended": "lingerpotslowness2", - "cloudpotslowex": "lingerpotslowness2", - "cloudpotslowlevel2": "lingerpotslowness2", - "slownesscloudpot2": "lingerpotslowness2", - "slownesscloudpotlong": "lingerpotslowness2", - "slownesscloudpotextended": "lingerpotslowness2", - "slownesscloudpotex": "lingerpotslowness2", - "slownesscloudpotlevel2": "lingerpotslowness2", - "slowcloudpot2": "lingerpotslowness2", - "slowcloudpotlong": "lingerpotslowness2", - "slowcloudpotextended": "lingerpotslowness2", - "slowcloudpotex": "lingerpotslowness2", - "slowcloudpotlevel2": "lingerpotslowness2", - "arrowslowness2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_slowness", - "type": "SLOWNESS", - "upgraded": false, - "extended": true - } - }, - "arrowslownesslong": "arrowslowness2", - "arrowslownessextended": "arrowslowness2", - "arrowslownessex": "arrowslowness2", - "arrowslownesslevel2": "arrowslowness2", - "arrowslow2": "arrowslowness2", - "arrowslowlong": "arrowslowness2", - "arrowslowextended": "arrowslowness2", - "arrowslowex": "arrowslowness2", - "arrowslowlevel2": "arrowslowness2", - "slownessarrow2": "arrowslowness2", - "slownessarrowlong": "arrowslowness2", - "slownessarrowextended": "arrowslowness2", - "slownessarrowex": "arrowslowness2", - "slownessarrowlevel2": "arrowslowness2", - "slowarrow2": "arrowslowness2", - "slowarrowlong": "arrowslowness2", - "slowarrowextended": "arrowslowness2", - "slowarrowex": "arrowslowness2", - "slowarrowlevel2": "arrowslowness2", - "waterbreathingpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": false - } - }, - "wbpotion": "waterbreathingpotion", - "waterbreathpotion": "waterbreathingpotion", - "breathingpotion": "waterbreathingpotion", - "breathpotion": "waterbreathingpotion", - "waterbreathingpot": "waterbreathingpotion", - "wbpot": "waterbreathingpotion", - "waterbreathpot": "waterbreathingpotion", - "breathingpot": "waterbreathingpotion", - "breathpot": "waterbreathingpotion", - "potionofwaterbreathing": "waterbreathingpotion", - "potionofwb": "waterbreathingpotion", - "potionofwaterbreath": "waterbreathingpotion", - "potionofbreathing": "waterbreathingpotion", - "potionofbreath": "waterbreathingpotion", - "potofwaterbreathing": "waterbreathingpotion", - "potofwb": "waterbreathingpotion", - "potofwaterbreath": "waterbreathingpotion", - "potofbreathing": "waterbreathingpotion", - "potofbreath": "waterbreathingpotion", - "splashwaterbreathingpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": false - } - }, - "splashwbpotion": "splashwaterbreathingpotion", - "splashwaterbreathpotion": "splashwaterbreathingpotion", - "splashbreathingpotion": "splashwaterbreathingpotion", - "splashbreathpotion": "splashwaterbreathingpotion", - "splwaterbreathingpotion": "splashwaterbreathingpotion", - "splwbpotion": "splashwaterbreathingpotion", - "splwaterbreathpotion": "splashwaterbreathingpotion", - "splbreathingpotion": "splashwaterbreathingpotion", - "splbreathpotion": "splashwaterbreathingpotion", - "waterbreathingsplashpotion": "splashwaterbreathingpotion", - "wbsplashpotion": "splashwaterbreathingpotion", - "waterbreathsplashpotion": "splashwaterbreathingpotion", - "breathingsplashpotion": "splashwaterbreathingpotion", - "breathsplashpotion": "splashwaterbreathingpotion", - "splashwaterbreathingpot": "splashwaterbreathingpotion", - "splashwbpot": "splashwaterbreathingpotion", - "splashwaterbreathpot": "splashwaterbreathingpotion", - "splashbreathingpot": "splashwaterbreathingpotion", - "splashbreathpot": "splashwaterbreathingpotion", - "splwaterbreathingpot": "splashwaterbreathingpotion", - "splwbpot": "splashwaterbreathingpotion", - "splwaterbreathpot": "splashwaterbreathingpotion", - "splbreathingpot": "splashwaterbreathingpotion", - "splbreathpot": "splashwaterbreathingpotion", - "waterbreathingsplashpot": "splashwaterbreathingpotion", - "wbsplashpot": "splashwaterbreathingpotion", - "waterbreathsplashpot": "splashwaterbreathingpotion", - "breathingsplashpot": "splashwaterbreathingpotion", - "breathsplashpot": "splashwaterbreathingpotion", - "lingerpotwaterbreathing": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": false - } - }, - "lingerpotwb": "lingerpotwaterbreathing", - "lingerpotwaterbreath": "lingerpotwaterbreathing", - "lingerpotbreathing": "lingerpotwaterbreathing", - "lingerpotbreath": "lingerpotwaterbreathing", - "waterbreathinglingerpot": "lingerpotwaterbreathing", - "wblingerpot": "lingerpotwaterbreathing", - "waterbreathlingerpot": "lingerpotwaterbreathing", - "breathinglingerpot": "lingerpotwaterbreathing", - "breathlingerpot": "lingerpotwaterbreathing", - "aoepotionwaterbreathing": "lingerpotwaterbreathing", - "aoepotionwb": "lingerpotwaterbreathing", - "aoepotionwaterbreath": "lingerpotwaterbreathing", - "aoepotionbreathing": "lingerpotwaterbreathing", - "aoepotionbreath": "lingerpotwaterbreathing", - "waterbreathingaoepoiont": "lingerpotwaterbreathing", - "wbaoepoiont": "lingerpotwaterbreathing", - "waterbreathaoepoiont": "lingerpotwaterbreathing", - "breathingaoepoiont": "lingerpotwaterbreathing", - "breathaoepoiont": "lingerpotwaterbreathing", - "aoepotwaterbreathing": "lingerpotwaterbreathing", - "aoepotwb": "lingerpotwaterbreathing", - "aoepotwaterbreath": "lingerpotwaterbreathing", - "aoepotbreathing": "lingerpotwaterbreathing", - "aoepotbreath": "lingerpotwaterbreathing", - "waterbreathingaoepot": "lingerpotwaterbreathing", - "wbaoepot": "lingerpotwaterbreathing", - "waterbreathaoepot": "lingerpotwaterbreathing", - "breathingaoepot": "lingerpotwaterbreathing", - "breathaoepot": "lingerpotwaterbreathing", - "areapotionwaterbreathing": "lingerpotwaterbreathing", - "areapotionwb": "lingerpotwaterbreathing", - "areapotionwaterbreath": "lingerpotwaterbreathing", - "areapotionbreathing": "lingerpotwaterbreathing", - "areapotionbreath": "lingerpotwaterbreathing", - "waterbreathingareapotion": "lingerpotwaterbreathing", - "wbareapotion": "lingerpotwaterbreathing", - "waterbreathareapotion": "lingerpotwaterbreathing", - "breathingareapotion": "lingerpotwaterbreathing", - "breathareapotion": "lingerpotwaterbreathing", - "areapotwaterbreathing": "lingerpotwaterbreathing", - "areapotwb": "lingerpotwaterbreathing", - "areapotwaterbreath": "lingerpotwaterbreathing", - "areapotbreathing": "lingerpotwaterbreathing", - "areapotbreath": "lingerpotwaterbreathing", - "waterbreathingareapot": "lingerpotwaterbreathing", - "wbareapot": "lingerpotwaterbreathing", - "waterbreathareapot": "lingerpotwaterbreathing", - "breathingareapot": "lingerpotwaterbreathing", - "breathareapot": "lingerpotwaterbreathing", - "cloudpotionwaterbreathing": "lingerpotwaterbreathing", - "cloudpotionwb": "lingerpotwaterbreathing", - "cloudpotionwaterbreath": "lingerpotwaterbreathing", - "cloudpotionbreathing": "lingerpotwaterbreathing", - "cloudpotionbreath": "lingerpotwaterbreathing", - "waterbreathingcloudpotion": "lingerpotwaterbreathing", - "wbcloudpotion": "lingerpotwaterbreathing", - "waterbreathcloudpotion": "lingerpotwaterbreathing", - "breathingcloudpotion": "lingerpotwaterbreathing", - "breathcloudpotion": "lingerpotwaterbreathing", - "cloudpotwaterbreathing": "lingerpotwaterbreathing", - "cloudpotwb": "lingerpotwaterbreathing", - "cloudpotwaterbreath": "lingerpotwaterbreathing", - "cloudpotbreathing": "lingerpotwaterbreathing", - "cloudpotbreath": "lingerpotwaterbreathing", - "waterbreathingcloudpot": "lingerpotwaterbreathing", - "wbcloudpot": "lingerpotwaterbreathing", - "waterbreathcloudpot": "lingerpotwaterbreathing", - "breathingcloudpot": "lingerpotwaterbreathing", - "breathcloudpot": "lingerpotwaterbreathing", - "arrowwaterbreathing": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": false - } - }, - "arrowwb": "arrowwaterbreathing", - "arrowwaterbreath": "arrowwaterbreathing", - "arrowbreathing": "arrowwaterbreathing", - "arrowbreath": "arrowwaterbreathing", - "waterbreathingarrow": "arrowwaterbreathing", - "wbarrow": "arrowwaterbreathing", - "waterbreatharrow": "arrowwaterbreathing", - "breathingarrow": "arrowwaterbreathing", - "breatharrow": "arrowwaterbreathing", - "waterbreathing2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": true - } - }, - "waterbreathinglongpotion": "waterbreathing2potion", - "waterbreathingextendedpotion": "waterbreathing2potion", - "waterbreathingexpotion": "waterbreathing2potion", - "waterbreathinglevel2potion": "waterbreathing2potion", - "wb2potion": "waterbreathing2potion", - "wblongpotion": "waterbreathing2potion", - "wbextendedpotion": "waterbreathing2potion", - "wbexpotion": "waterbreathing2potion", - "wblevel2potion": "waterbreathing2potion", - "waterbreath2potion": "waterbreathing2potion", - "waterbreathlongpotion": "waterbreathing2potion", - "waterbreathextendedpotion": "waterbreathing2potion", - "waterbreathexpotion": "waterbreathing2potion", - "waterbreathlevel2potion": "waterbreathing2potion", - "breathing2potion": "waterbreathing2potion", - "breathinglongpotion": "waterbreathing2potion", - "breathingextendedpotion": "waterbreathing2potion", - "breathingexpotion": "waterbreathing2potion", - "breathinglevel2potion": "waterbreathing2potion", - "breath2potion": "waterbreathing2potion", - "breathlongpotion": "waterbreathing2potion", - "breathextendedpotion": "waterbreathing2potion", - "breathexpotion": "waterbreathing2potion", - "breathlevel2potion": "waterbreathing2potion", - "waterbreathing2pot": "waterbreathing2potion", - "waterbreathinglongpot": "waterbreathing2potion", - "waterbreathingextendedpot": "waterbreathing2potion", - "waterbreathingexpot": "waterbreathing2potion", - "waterbreathinglevel2pot": "waterbreathing2potion", - "wb2pot": "waterbreathing2potion", - "wblongpot": "waterbreathing2potion", - "wbextendedpot": "waterbreathing2potion", - "wbexpot": "waterbreathing2potion", - "wblevel2pot": "waterbreathing2potion", - "waterbreath2pot": "waterbreathing2potion", - "waterbreathlongpot": "waterbreathing2potion", - "waterbreathextendedpot": "waterbreathing2potion", - "waterbreathexpot": "waterbreathing2potion", - "waterbreathlevel2pot": "waterbreathing2potion", - "breathing2pot": "waterbreathing2potion", - "breathinglongpot": "waterbreathing2potion", - "breathingextendedpot": "waterbreathing2potion", - "breathingexpot": "waterbreathing2potion", - "breathinglevel2pot": "waterbreathing2potion", - "breath2pot": "waterbreathing2potion", - "breathlongpot": "waterbreathing2potion", - "breathextendedpot": "waterbreathing2potion", - "breathexpot": "waterbreathing2potion", - "breathlevel2pot": "waterbreathing2potion", - "potionofwaterbreathing2": "waterbreathing2potion", - "potionofwaterbreathinglong": "waterbreathing2potion", - "potionofwaterbreathingextended": "waterbreathing2potion", - "potionofwaterbreathingex": "waterbreathing2potion", - "potionofwaterbreathinglevel2": "waterbreathing2potion", - "potionofwb2": "waterbreathing2potion", - "potionofwblong": "waterbreathing2potion", - "potionofwbextended": "waterbreathing2potion", - "potionofwbex": "waterbreathing2potion", - "potionofwblevel2": "waterbreathing2potion", - "potionofwaterbreath2": "waterbreathing2potion", - "potionofwaterbreathlong": "waterbreathing2potion", - "potionofwaterbreathextended": "waterbreathing2potion", - "potionofwaterbreathex": "waterbreathing2potion", - "potionofwaterbreathlevel2": "waterbreathing2potion", - "potionofbreathing2": "waterbreathing2potion", - "potionofbreathinglong": "waterbreathing2potion", - "potionofbreathingextended": "waterbreathing2potion", - "potionofbreathingex": "waterbreathing2potion", - "potionofbreathinglevel2": "waterbreathing2potion", - "potionofbreath2": "waterbreathing2potion", - "potionofbreathlong": "waterbreathing2potion", - "potionofbreathextended": "waterbreathing2potion", - "potionofbreathex": "waterbreathing2potion", - "potionofbreathlevel2": "waterbreathing2potion", - "potofwaterbreathing2": "waterbreathing2potion", - "potofwaterbreathinglong": "waterbreathing2potion", - "potofwaterbreathingextended": "waterbreathing2potion", - "potofwaterbreathingex": "waterbreathing2potion", - "potofwaterbreathinglevel2": "waterbreathing2potion", - "potofwb2": "waterbreathing2potion", - "potofwblong": "waterbreathing2potion", - "potofwbextended": "waterbreathing2potion", - "potofwbex": "waterbreathing2potion", - "potofwblevel2": "waterbreathing2potion", - "potofwaterbreath2": "waterbreathing2potion", - "potofwaterbreathlong": "waterbreathing2potion", - "potofwaterbreathextended": "waterbreathing2potion", - "potofwaterbreathex": "waterbreathing2potion", - "potofwaterbreathlevel2": "waterbreathing2potion", - "potofbreathing2": "waterbreathing2potion", - "potofbreathinglong": "waterbreathing2potion", - "potofbreathingextended": "waterbreathing2potion", - "potofbreathingex": "waterbreathing2potion", - "potofbreathinglevel2": "waterbreathing2potion", - "potofbreath2": "waterbreathing2potion", - "potofbreathlong": "waterbreathing2potion", - "potofbreathextended": "waterbreathing2potion", - "potofbreathex": "waterbreathing2potion", - "potofbreathlevel2": "waterbreathing2potion", - "splashwaterbreathing2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": true - } - }, - "splashwaterbreathinglongpotion": "splashwaterbreathing2potion", - "splashwaterbreathingextendedpotion": "splashwaterbreathing2potion", - "splashwaterbreathingexpotion": "splashwaterbreathing2potion", - "splashwaterbreathinglevel2potion": "splashwaterbreathing2potion", - "splashwb2potion": "splashwaterbreathing2potion", - "splashwblongpotion": "splashwaterbreathing2potion", - "splashwbextendedpotion": "splashwaterbreathing2potion", - "splashwbexpotion": "splashwaterbreathing2potion", - "splashwblevel2potion": "splashwaterbreathing2potion", - "splashwaterbreath2potion": "splashwaterbreathing2potion", - "splashwaterbreathlongpotion": "splashwaterbreathing2potion", - "splashwaterbreathextendedpotion": "splashwaterbreathing2potion", - "splashwaterbreathexpotion": "splashwaterbreathing2potion", - "splashwaterbreathlevel2potion": "splashwaterbreathing2potion", - "splashbreathing2potion": "splashwaterbreathing2potion", - "splashbreathinglongpotion": "splashwaterbreathing2potion", - "splashbreathingextendedpotion": "splashwaterbreathing2potion", - "splashbreathingexpotion": "splashwaterbreathing2potion", - "splashbreathinglevel2potion": "splashwaterbreathing2potion", - "splashbreath2potion": "splashwaterbreathing2potion", - "splashbreathlongpotion": "splashwaterbreathing2potion", - "splashbreathextendedpotion": "splashwaterbreathing2potion", - "splashbreathexpotion": "splashwaterbreathing2potion", - "splashbreathlevel2potion": "splashwaterbreathing2potion", - "splwaterbreathing2potion": "splashwaterbreathing2potion", - "splwaterbreathinglongpotion": "splashwaterbreathing2potion", - "splwaterbreathingextendedpotion": "splashwaterbreathing2potion", - "splwaterbreathingexpotion": "splashwaterbreathing2potion", - "splwaterbreathinglevel2potion": "splashwaterbreathing2potion", - "splwb2potion": "splashwaterbreathing2potion", - "splwblongpotion": "splashwaterbreathing2potion", - "splwbextendedpotion": "splashwaterbreathing2potion", - "splwbexpotion": "splashwaterbreathing2potion", - "splwblevel2potion": "splashwaterbreathing2potion", - "splwaterbreath2potion": "splashwaterbreathing2potion", - "splwaterbreathlongpotion": "splashwaterbreathing2potion", - "splwaterbreathextendedpotion": "splashwaterbreathing2potion", - "splwaterbreathexpotion": "splashwaterbreathing2potion", - "splwaterbreathlevel2potion": "splashwaterbreathing2potion", - "splbreathing2potion": "splashwaterbreathing2potion", - "splbreathinglongpotion": "splashwaterbreathing2potion", - "splbreathingextendedpotion": "splashwaterbreathing2potion", - "splbreathingexpotion": "splashwaterbreathing2potion", - "splbreathinglevel2potion": "splashwaterbreathing2potion", - "splbreath2potion": "splashwaterbreathing2potion", - "splbreathlongpotion": "splashwaterbreathing2potion", - "splbreathextendedpotion": "splashwaterbreathing2potion", - "splbreathexpotion": "splashwaterbreathing2potion", - "splbreathlevel2potion": "splashwaterbreathing2potion", - "waterbreathing2splashpotion": "splashwaterbreathing2potion", - "waterbreathinglongsplashpotion": "splashwaterbreathing2potion", - "waterbreathingextendedsplashpotion": "splashwaterbreathing2potion", - "waterbreathingexsplashpotion": "splashwaterbreathing2potion", - "waterbreathinglevel2splashpotion": "splashwaterbreathing2potion", - "wb2splashpotion": "splashwaterbreathing2potion", - "wblongsplashpotion": "splashwaterbreathing2potion", - "wbextendedsplashpotion": "splashwaterbreathing2potion", - "wbexsplashpotion": "splashwaterbreathing2potion", - "wblevel2splashpotion": "splashwaterbreathing2potion", - "waterbreath2splashpotion": "splashwaterbreathing2potion", - "waterbreathlongsplashpotion": "splashwaterbreathing2potion", - "waterbreathextendedsplashpotion": "splashwaterbreathing2potion", - "waterbreathexsplashpotion": "splashwaterbreathing2potion", - "waterbreathlevel2splashpotion": "splashwaterbreathing2potion", - "breathing2splashpotion": "splashwaterbreathing2potion", - "breathinglongsplashpotion": "splashwaterbreathing2potion", - "breathingextendedsplashpotion": "splashwaterbreathing2potion", - "breathingexsplashpotion": "splashwaterbreathing2potion", - "breathinglevel2splashpotion": "splashwaterbreathing2potion", - "breath2splashpotion": "splashwaterbreathing2potion", - "breathlongsplashpotion": "splashwaterbreathing2potion", - "breathextendedsplashpotion": "splashwaterbreathing2potion", - "breathexsplashpotion": "splashwaterbreathing2potion", - "breathlevel2splashpotion": "splashwaterbreathing2potion", - "splashwaterbreathing2pot": "splashwaterbreathing2potion", - "splashwaterbreathinglongpot": "splashwaterbreathing2potion", - "splashwaterbreathingextendedpot": "splashwaterbreathing2potion", - "splashwaterbreathingexpot": "splashwaterbreathing2potion", - "splashwaterbreathinglevel2pot": "splashwaterbreathing2potion", - "splashwb2pot": "splashwaterbreathing2potion", - "splashwblongpot": "splashwaterbreathing2potion", - "splashwbextendedpot": "splashwaterbreathing2potion", - "splashwbexpot": "splashwaterbreathing2potion", - "splashwblevel2pot": "splashwaterbreathing2potion", - "splashwaterbreath2pot": "splashwaterbreathing2potion", - "splashwaterbreathlongpot": "splashwaterbreathing2potion", - "splashwaterbreathextendedpot": "splashwaterbreathing2potion", - "splashwaterbreathexpot": "splashwaterbreathing2potion", - "splashwaterbreathlevel2pot": "splashwaterbreathing2potion", - "splashbreathing2pot": "splashwaterbreathing2potion", - "splashbreathinglongpot": "splashwaterbreathing2potion", - "splashbreathingextendedpot": "splashwaterbreathing2potion", - "splashbreathingexpot": "splashwaterbreathing2potion", - "splashbreathinglevel2pot": "splashwaterbreathing2potion", - "splashbreath2pot": "splashwaterbreathing2potion", - "splashbreathlongpot": "splashwaterbreathing2potion", - "splashbreathextendedpot": "splashwaterbreathing2potion", - "splashbreathexpot": "splashwaterbreathing2potion", - "splashbreathlevel2pot": "splashwaterbreathing2potion", - "splwaterbreathing2pot": "splashwaterbreathing2potion", - "splwaterbreathinglongpot": "splashwaterbreathing2potion", - "splwaterbreathingextendedpot": "splashwaterbreathing2potion", - "splwaterbreathingexpot": "splashwaterbreathing2potion", - "splwaterbreathinglevel2pot": "splashwaterbreathing2potion", - "splwb2pot": "splashwaterbreathing2potion", - "splwblongpot": "splashwaterbreathing2potion", - "splwbextendedpot": "splashwaterbreathing2potion", - "splwbexpot": "splashwaterbreathing2potion", - "splwblevel2pot": "splashwaterbreathing2potion", - "splwaterbreath2pot": "splashwaterbreathing2potion", - "splwaterbreathlongpot": "splashwaterbreathing2potion", - "splwaterbreathextendedpot": "splashwaterbreathing2potion", - "splwaterbreathexpot": "splashwaterbreathing2potion", - "splwaterbreathlevel2pot": "splashwaterbreathing2potion", - "splbreathing2pot": "splashwaterbreathing2potion", - "splbreathinglongpot": "splashwaterbreathing2potion", - "splbreathingextendedpot": "splashwaterbreathing2potion", - "splbreathingexpot": "splashwaterbreathing2potion", - "splbreathinglevel2pot": "splashwaterbreathing2potion", - "splbreath2pot": "splashwaterbreathing2potion", - "splbreathlongpot": "splashwaterbreathing2potion", - "splbreathextendedpot": "splashwaterbreathing2potion", - "splbreathexpot": "splashwaterbreathing2potion", - "splbreathlevel2pot": "splashwaterbreathing2potion", - "waterbreathing2splashpot": "splashwaterbreathing2potion", - "waterbreathinglongsplashpot": "splashwaterbreathing2potion", - "waterbreathingextendedsplashpot": "splashwaterbreathing2potion", - "waterbreathingexsplashpot": "splashwaterbreathing2potion", - "waterbreathinglevel2splashpot": "splashwaterbreathing2potion", - "wb2splashpot": "splashwaterbreathing2potion", - "wblongsplashpot": "splashwaterbreathing2potion", - "wbextendedsplashpot": "splashwaterbreathing2potion", - "wbexsplashpot": "splashwaterbreathing2potion", - "wblevel2splashpot": "splashwaterbreathing2potion", - "waterbreath2splashpot": "splashwaterbreathing2potion", - "waterbreathlongsplashpot": "splashwaterbreathing2potion", - "waterbreathextendedsplashpot": "splashwaterbreathing2potion", - "waterbreathexsplashpot": "splashwaterbreathing2potion", - "waterbreathlevel2splashpot": "splashwaterbreathing2potion", - "breathing2splashpot": "splashwaterbreathing2potion", - "breathinglongsplashpot": "splashwaterbreathing2potion", - "breathingextendedsplashpot": "splashwaterbreathing2potion", - "breathingexsplashpot": "splashwaterbreathing2potion", - "breathinglevel2splashpot": "splashwaterbreathing2potion", - "breath2splashpot": "splashwaterbreathing2potion", - "breathlongsplashpot": "splashwaterbreathing2potion", - "breathextendedsplashpot": "splashwaterbreathing2potion", - "breathexsplashpot": "splashwaterbreathing2potion", - "breathlevel2splashpot": "splashwaterbreathing2potion", - "lingerpotwaterbreathing2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": true - } - }, - "lingerpotwaterbreathinglong": "lingerpotwaterbreathing2", - "lingerpotwaterbreathingextended": "lingerpotwaterbreathing2", - "lingerpotwaterbreathingex": "lingerpotwaterbreathing2", - "lingerpotwaterbreathinglevel2": "lingerpotwaterbreathing2", - "lingerpotwb2": "lingerpotwaterbreathing2", - "lingerpotwblong": "lingerpotwaterbreathing2", - "lingerpotwbextended": "lingerpotwaterbreathing2", - "lingerpotwbex": "lingerpotwaterbreathing2", - "lingerpotwblevel2": "lingerpotwaterbreathing2", - "lingerpotwaterbreath2": "lingerpotwaterbreathing2", - "lingerpotwaterbreathlong": "lingerpotwaterbreathing2", - "lingerpotwaterbreathextended": "lingerpotwaterbreathing2", - "lingerpotwaterbreathex": "lingerpotwaterbreathing2", - "lingerpotwaterbreathlevel2": "lingerpotwaterbreathing2", - "lingerpotbreathing2": "lingerpotwaterbreathing2", - "lingerpotbreathinglong": "lingerpotwaterbreathing2", - "lingerpotbreathingextended": "lingerpotwaterbreathing2", - "lingerpotbreathingex": "lingerpotwaterbreathing2", - "lingerpotbreathinglevel2": "lingerpotwaterbreathing2", - "lingerpotbreath2": "lingerpotwaterbreathing2", - "lingerpotbreathlong": "lingerpotwaterbreathing2", - "lingerpotbreathextended": "lingerpotwaterbreathing2", - "lingerpotbreathex": "lingerpotwaterbreathing2", - "lingerpotbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathinglingerpot2": "lingerpotwaterbreathing2", - "waterbreathinglingerpotlong": "lingerpotwaterbreathing2", - "waterbreathinglingerpotextended": "lingerpotwaterbreathing2", - "waterbreathinglingerpotex": "lingerpotwaterbreathing2", - "waterbreathinglingerpotlevel2": "lingerpotwaterbreathing2", - "wblingerpot2": "lingerpotwaterbreathing2", - "wblingerpotlong": "lingerpotwaterbreathing2", - "wblingerpotextended": "lingerpotwaterbreathing2", - "wblingerpotex": "lingerpotwaterbreathing2", - "wblingerpotlevel2": "lingerpotwaterbreathing2", - "waterbreathlingerpot2": "lingerpotwaterbreathing2", - "waterbreathlingerpotlong": "lingerpotwaterbreathing2", - "waterbreathlingerpotextended": "lingerpotwaterbreathing2", - "waterbreathlingerpotex": "lingerpotwaterbreathing2", - "waterbreathlingerpotlevel2": "lingerpotwaterbreathing2", - "breathinglingerpot2": "lingerpotwaterbreathing2", - "breathinglingerpotlong": "lingerpotwaterbreathing2", - "breathinglingerpotextended": "lingerpotwaterbreathing2", - "breathinglingerpotex": "lingerpotwaterbreathing2", - "breathinglingerpotlevel2": "lingerpotwaterbreathing2", - "breathlingerpot2": "lingerpotwaterbreathing2", - "breathlingerpotlong": "lingerpotwaterbreathing2", - "breathlingerpotextended": "lingerpotwaterbreathing2", - "breathlingerpotex": "lingerpotwaterbreathing2", - "breathlingerpotlevel2": "lingerpotwaterbreathing2", - "aoepotionwaterbreathing2": "lingerpotwaterbreathing2", - "aoepotionwaterbreathinglong": "lingerpotwaterbreathing2", - "aoepotionwaterbreathingextended": "lingerpotwaterbreathing2", - "aoepotionwaterbreathingex": "lingerpotwaterbreathing2", - "aoepotionwaterbreathinglevel2": "lingerpotwaterbreathing2", - "aoepotionwb2": "lingerpotwaterbreathing2", - "aoepotionwblong": "lingerpotwaterbreathing2", - "aoepotionwbextended": "lingerpotwaterbreathing2", - "aoepotionwbex": "lingerpotwaterbreathing2", - "aoepotionwblevel2": "lingerpotwaterbreathing2", - "aoepotionwaterbreath2": "lingerpotwaterbreathing2", - "aoepotionwaterbreathlong": "lingerpotwaterbreathing2", - "aoepotionwaterbreathextended": "lingerpotwaterbreathing2", - "aoepotionwaterbreathex": "lingerpotwaterbreathing2", - "aoepotionwaterbreathlevel2": "lingerpotwaterbreathing2", - "aoepotionbreathing2": "lingerpotwaterbreathing2", - "aoepotionbreathinglong": "lingerpotwaterbreathing2", - "aoepotionbreathingextended": "lingerpotwaterbreathing2", - "aoepotionbreathingex": "lingerpotwaterbreathing2", - "aoepotionbreathinglevel2": "lingerpotwaterbreathing2", - "aoepotionbreath2": "lingerpotwaterbreathing2", - "aoepotionbreathlong": "lingerpotwaterbreathing2", - "aoepotionbreathextended": "lingerpotwaterbreathing2", - "aoepotionbreathex": "lingerpotwaterbreathing2", - "aoepotionbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathingaoepoiont2": "lingerpotwaterbreathing2", - "waterbreathingaoepoiontlong": "lingerpotwaterbreathing2", - "waterbreathingaoepoiontextended": "lingerpotwaterbreathing2", - "waterbreathingaoepoiontex": "lingerpotwaterbreathing2", - "waterbreathingaoepoiontlevel2": "lingerpotwaterbreathing2", - "wbaoepoiont2": "lingerpotwaterbreathing2", - "wbaoepoiontlong": "lingerpotwaterbreathing2", - "wbaoepoiontextended": "lingerpotwaterbreathing2", - "wbaoepoiontex": "lingerpotwaterbreathing2", - "wbaoepoiontlevel2": "lingerpotwaterbreathing2", - "waterbreathaoepoiont2": "lingerpotwaterbreathing2", - "waterbreathaoepoiontlong": "lingerpotwaterbreathing2", - "waterbreathaoepoiontextended": "lingerpotwaterbreathing2", - "waterbreathaoepoiontex": "lingerpotwaterbreathing2", - "waterbreathaoepoiontlevel2": "lingerpotwaterbreathing2", - "breathingaoepoiont2": "lingerpotwaterbreathing2", - "breathingaoepoiontlong": "lingerpotwaterbreathing2", - "breathingaoepoiontextended": "lingerpotwaterbreathing2", - "breathingaoepoiontex": "lingerpotwaterbreathing2", - "breathingaoepoiontlevel2": "lingerpotwaterbreathing2", - "breathaoepoiont2": "lingerpotwaterbreathing2", - "breathaoepoiontlong": "lingerpotwaterbreathing2", - "breathaoepoiontextended": "lingerpotwaterbreathing2", - "breathaoepoiontex": "lingerpotwaterbreathing2", - "breathaoepoiontlevel2": "lingerpotwaterbreathing2", - "aoepotwaterbreathing2": "lingerpotwaterbreathing2", - "aoepotwaterbreathinglong": "lingerpotwaterbreathing2", - "aoepotwaterbreathingextended": "lingerpotwaterbreathing2", - "aoepotwaterbreathingex": "lingerpotwaterbreathing2", - "aoepotwaterbreathinglevel2": "lingerpotwaterbreathing2", - "aoepotwb2": "lingerpotwaterbreathing2", - "aoepotwblong": "lingerpotwaterbreathing2", - "aoepotwbextended": "lingerpotwaterbreathing2", - "aoepotwbex": "lingerpotwaterbreathing2", - "aoepotwblevel2": "lingerpotwaterbreathing2", - "aoepotwaterbreath2": "lingerpotwaterbreathing2", - "aoepotwaterbreathlong": "lingerpotwaterbreathing2", - "aoepotwaterbreathextended": "lingerpotwaterbreathing2", - "aoepotwaterbreathex": "lingerpotwaterbreathing2", - "aoepotwaterbreathlevel2": "lingerpotwaterbreathing2", - "aoepotbreathing2": "lingerpotwaterbreathing2", - "aoepotbreathinglong": "lingerpotwaterbreathing2", - "aoepotbreathingextended": "lingerpotwaterbreathing2", - "aoepotbreathingex": "lingerpotwaterbreathing2", - "aoepotbreathinglevel2": "lingerpotwaterbreathing2", - "aoepotbreath2": "lingerpotwaterbreathing2", - "aoepotbreathlong": "lingerpotwaterbreathing2", - "aoepotbreathextended": "lingerpotwaterbreathing2", - "aoepotbreathex": "lingerpotwaterbreathing2", - "aoepotbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathingaoepot2": "lingerpotwaterbreathing2", - "waterbreathingaoepotlong": "lingerpotwaterbreathing2", - "waterbreathingaoepotextended": "lingerpotwaterbreathing2", - "waterbreathingaoepotex": "lingerpotwaterbreathing2", - "waterbreathingaoepotlevel2": "lingerpotwaterbreathing2", - "wbaoepot2": "lingerpotwaterbreathing2", - "wbaoepotlong": "lingerpotwaterbreathing2", - "wbaoepotextended": "lingerpotwaterbreathing2", - "wbaoepotex": "lingerpotwaterbreathing2", - "wbaoepotlevel2": "lingerpotwaterbreathing2", - "waterbreathaoepot2": "lingerpotwaterbreathing2", - "waterbreathaoepotlong": "lingerpotwaterbreathing2", - "waterbreathaoepotextended": "lingerpotwaterbreathing2", - "waterbreathaoepotex": "lingerpotwaterbreathing2", - "waterbreathaoepotlevel2": "lingerpotwaterbreathing2", - "breathingaoepot2": "lingerpotwaterbreathing2", - "breathingaoepotlong": "lingerpotwaterbreathing2", - "breathingaoepotextended": "lingerpotwaterbreathing2", - "breathingaoepotex": "lingerpotwaterbreathing2", - "breathingaoepotlevel2": "lingerpotwaterbreathing2", - "breathaoepot2": "lingerpotwaterbreathing2", - "breathaoepotlong": "lingerpotwaterbreathing2", - "breathaoepotextended": "lingerpotwaterbreathing2", - "breathaoepotex": "lingerpotwaterbreathing2", - "breathaoepotlevel2": "lingerpotwaterbreathing2", - "areapotionwaterbreathing2": "lingerpotwaterbreathing2", - "areapotionwaterbreathinglong": "lingerpotwaterbreathing2", - "areapotionwaterbreathingextended": "lingerpotwaterbreathing2", - "areapotionwaterbreathingex": "lingerpotwaterbreathing2", - "areapotionwaterbreathinglevel2": "lingerpotwaterbreathing2", - "areapotionwb2": "lingerpotwaterbreathing2", - "areapotionwblong": "lingerpotwaterbreathing2", - "areapotionwbextended": "lingerpotwaterbreathing2", - "areapotionwbex": "lingerpotwaterbreathing2", - "areapotionwblevel2": "lingerpotwaterbreathing2", - "areapotionwaterbreath2": "lingerpotwaterbreathing2", - "areapotionwaterbreathlong": "lingerpotwaterbreathing2", - "areapotionwaterbreathextended": "lingerpotwaterbreathing2", - "areapotionwaterbreathex": "lingerpotwaterbreathing2", - "areapotionwaterbreathlevel2": "lingerpotwaterbreathing2", - "areapotionbreathing2": "lingerpotwaterbreathing2", - "areapotionbreathinglong": "lingerpotwaterbreathing2", - "areapotionbreathingextended": "lingerpotwaterbreathing2", - "areapotionbreathingex": "lingerpotwaterbreathing2", - "areapotionbreathinglevel2": "lingerpotwaterbreathing2", - "areapotionbreath2": "lingerpotwaterbreathing2", - "areapotionbreathlong": "lingerpotwaterbreathing2", - "areapotionbreathextended": "lingerpotwaterbreathing2", - "areapotionbreathex": "lingerpotwaterbreathing2", - "areapotionbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathingareapotion2": "lingerpotwaterbreathing2", - "waterbreathingareapotionlong": "lingerpotwaterbreathing2", - "waterbreathingareapotionextended": "lingerpotwaterbreathing2", - "waterbreathingareapotionex": "lingerpotwaterbreathing2", - "waterbreathingareapotionlevel2": "lingerpotwaterbreathing2", - "wbareapotion2": "lingerpotwaterbreathing2", - "wbareapotionlong": "lingerpotwaterbreathing2", - "wbareapotionextended": "lingerpotwaterbreathing2", - "wbareapotionex": "lingerpotwaterbreathing2", - "wbareapotionlevel2": "lingerpotwaterbreathing2", - "waterbreathareapotion2": "lingerpotwaterbreathing2", - "waterbreathareapotionlong": "lingerpotwaterbreathing2", - "waterbreathareapotionextended": "lingerpotwaterbreathing2", - "waterbreathareapotionex": "lingerpotwaterbreathing2", - "waterbreathareapotionlevel2": "lingerpotwaterbreathing2", - "breathingareapotion2": "lingerpotwaterbreathing2", - "breathingareapotionlong": "lingerpotwaterbreathing2", - "breathingareapotionextended": "lingerpotwaterbreathing2", - "breathingareapotionex": "lingerpotwaterbreathing2", - "breathingareapotionlevel2": "lingerpotwaterbreathing2", - "breathareapotion2": "lingerpotwaterbreathing2", - "breathareapotionlong": "lingerpotwaterbreathing2", - "breathareapotionextended": "lingerpotwaterbreathing2", - "breathareapotionex": "lingerpotwaterbreathing2", - "breathareapotionlevel2": "lingerpotwaterbreathing2", - "areapotwaterbreathing2": "lingerpotwaterbreathing2", - "areapotwaterbreathinglong": "lingerpotwaterbreathing2", - "areapotwaterbreathingextended": "lingerpotwaterbreathing2", - "areapotwaterbreathingex": "lingerpotwaterbreathing2", - "areapotwaterbreathinglevel2": "lingerpotwaterbreathing2", - "areapotwb2": "lingerpotwaterbreathing2", - "areapotwblong": "lingerpotwaterbreathing2", - "areapotwbextended": "lingerpotwaterbreathing2", - "areapotwbex": "lingerpotwaterbreathing2", - "areapotwblevel2": "lingerpotwaterbreathing2", - "areapotwaterbreath2": "lingerpotwaterbreathing2", - "areapotwaterbreathlong": "lingerpotwaterbreathing2", - "areapotwaterbreathextended": "lingerpotwaterbreathing2", - "areapotwaterbreathex": "lingerpotwaterbreathing2", - "areapotwaterbreathlevel2": "lingerpotwaterbreathing2", - "areapotbreathing2": "lingerpotwaterbreathing2", - "areapotbreathinglong": "lingerpotwaterbreathing2", - "areapotbreathingextended": "lingerpotwaterbreathing2", - "areapotbreathingex": "lingerpotwaterbreathing2", - "areapotbreathinglevel2": "lingerpotwaterbreathing2", - "areapotbreath2": "lingerpotwaterbreathing2", - "areapotbreathlong": "lingerpotwaterbreathing2", - "areapotbreathextended": "lingerpotwaterbreathing2", - "areapotbreathex": "lingerpotwaterbreathing2", - "areapotbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathingareapot2": "lingerpotwaterbreathing2", - "waterbreathingareapotlong": "lingerpotwaterbreathing2", - "waterbreathingareapotextended": "lingerpotwaterbreathing2", - "waterbreathingareapotex": "lingerpotwaterbreathing2", - "waterbreathingareapotlevel2": "lingerpotwaterbreathing2", - "wbareapot2": "lingerpotwaterbreathing2", - "wbareapotlong": "lingerpotwaterbreathing2", - "wbareapotextended": "lingerpotwaterbreathing2", - "wbareapotex": "lingerpotwaterbreathing2", - "wbareapotlevel2": "lingerpotwaterbreathing2", - "waterbreathareapot2": "lingerpotwaterbreathing2", - "waterbreathareapotlong": "lingerpotwaterbreathing2", - "waterbreathareapotextended": "lingerpotwaterbreathing2", - "waterbreathareapotex": "lingerpotwaterbreathing2", - "waterbreathareapotlevel2": "lingerpotwaterbreathing2", - "breathingareapot2": "lingerpotwaterbreathing2", - "breathingareapotlong": "lingerpotwaterbreathing2", - "breathingareapotextended": "lingerpotwaterbreathing2", - "breathingareapotex": "lingerpotwaterbreathing2", - "breathingareapotlevel2": "lingerpotwaterbreathing2", - "breathareapot2": "lingerpotwaterbreathing2", - "breathareapotlong": "lingerpotwaterbreathing2", - "breathareapotextended": "lingerpotwaterbreathing2", - "breathareapotex": "lingerpotwaterbreathing2", - "breathareapotlevel2": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathing2": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathinglong": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathingextended": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathingex": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathinglevel2": "lingerpotwaterbreathing2", - "cloudpotionwb2": "lingerpotwaterbreathing2", - "cloudpotionwblong": "lingerpotwaterbreathing2", - "cloudpotionwbextended": "lingerpotwaterbreathing2", - "cloudpotionwbex": "lingerpotwaterbreathing2", - "cloudpotionwblevel2": "lingerpotwaterbreathing2", - "cloudpotionwaterbreath2": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathlong": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathextended": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathex": "lingerpotwaterbreathing2", - "cloudpotionwaterbreathlevel2": "lingerpotwaterbreathing2", - "cloudpotionbreathing2": "lingerpotwaterbreathing2", - "cloudpotionbreathinglong": "lingerpotwaterbreathing2", - "cloudpotionbreathingextended": "lingerpotwaterbreathing2", - "cloudpotionbreathingex": "lingerpotwaterbreathing2", - "cloudpotionbreathinglevel2": "lingerpotwaterbreathing2", - "cloudpotionbreath2": "lingerpotwaterbreathing2", - "cloudpotionbreathlong": "lingerpotwaterbreathing2", - "cloudpotionbreathextended": "lingerpotwaterbreathing2", - "cloudpotionbreathex": "lingerpotwaterbreathing2", - "cloudpotionbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathingcloudpotion2": "lingerpotwaterbreathing2", - "waterbreathingcloudpotionlong": "lingerpotwaterbreathing2", - "waterbreathingcloudpotionextended": "lingerpotwaterbreathing2", - "waterbreathingcloudpotionex": "lingerpotwaterbreathing2", - "waterbreathingcloudpotionlevel2": "lingerpotwaterbreathing2", - "wbcloudpotion2": "lingerpotwaterbreathing2", - "wbcloudpotionlong": "lingerpotwaterbreathing2", - "wbcloudpotionextended": "lingerpotwaterbreathing2", - "wbcloudpotionex": "lingerpotwaterbreathing2", - "wbcloudpotionlevel2": "lingerpotwaterbreathing2", - "waterbreathcloudpotion2": "lingerpotwaterbreathing2", - "waterbreathcloudpotionlong": "lingerpotwaterbreathing2", - "waterbreathcloudpotionextended": "lingerpotwaterbreathing2", - "waterbreathcloudpotionex": "lingerpotwaterbreathing2", - "waterbreathcloudpotionlevel2": "lingerpotwaterbreathing2", - "breathingcloudpotion2": "lingerpotwaterbreathing2", - "breathingcloudpotionlong": "lingerpotwaterbreathing2", - "breathingcloudpotionextended": "lingerpotwaterbreathing2", - "breathingcloudpotionex": "lingerpotwaterbreathing2", - "breathingcloudpotionlevel2": "lingerpotwaterbreathing2", - "breathcloudpotion2": "lingerpotwaterbreathing2", - "breathcloudpotionlong": "lingerpotwaterbreathing2", - "breathcloudpotionextended": "lingerpotwaterbreathing2", - "breathcloudpotionex": "lingerpotwaterbreathing2", - "breathcloudpotionlevel2": "lingerpotwaterbreathing2", - "cloudpotwaterbreathing2": "lingerpotwaterbreathing2", - "cloudpotwaterbreathinglong": "lingerpotwaterbreathing2", - "cloudpotwaterbreathingextended": "lingerpotwaterbreathing2", - "cloudpotwaterbreathingex": "lingerpotwaterbreathing2", - "cloudpotwaterbreathinglevel2": "lingerpotwaterbreathing2", - "cloudpotwb2": "lingerpotwaterbreathing2", - "cloudpotwblong": "lingerpotwaterbreathing2", - "cloudpotwbextended": "lingerpotwaterbreathing2", - "cloudpotwbex": "lingerpotwaterbreathing2", - "cloudpotwblevel2": "lingerpotwaterbreathing2", - "cloudpotwaterbreath2": "lingerpotwaterbreathing2", - "cloudpotwaterbreathlong": "lingerpotwaterbreathing2", - "cloudpotwaterbreathextended": "lingerpotwaterbreathing2", - "cloudpotwaterbreathex": "lingerpotwaterbreathing2", - "cloudpotwaterbreathlevel2": "lingerpotwaterbreathing2", - "cloudpotbreathing2": "lingerpotwaterbreathing2", - "cloudpotbreathinglong": "lingerpotwaterbreathing2", - "cloudpotbreathingextended": "lingerpotwaterbreathing2", - "cloudpotbreathingex": "lingerpotwaterbreathing2", - "cloudpotbreathinglevel2": "lingerpotwaterbreathing2", - "cloudpotbreath2": "lingerpotwaterbreathing2", - "cloudpotbreathlong": "lingerpotwaterbreathing2", - "cloudpotbreathextended": "lingerpotwaterbreathing2", - "cloudpotbreathex": "lingerpotwaterbreathing2", - "cloudpotbreathlevel2": "lingerpotwaterbreathing2", - "waterbreathingcloudpot2": "lingerpotwaterbreathing2", - "waterbreathingcloudpotlong": "lingerpotwaterbreathing2", - "waterbreathingcloudpotextended": "lingerpotwaterbreathing2", - "waterbreathingcloudpotex": "lingerpotwaterbreathing2", - "waterbreathingcloudpotlevel2": "lingerpotwaterbreathing2", - "wbcloudpot2": "lingerpotwaterbreathing2", - "wbcloudpotlong": "lingerpotwaterbreathing2", - "wbcloudpotextended": "lingerpotwaterbreathing2", - "wbcloudpotex": "lingerpotwaterbreathing2", - "wbcloudpotlevel2": "lingerpotwaterbreathing2", - "waterbreathcloudpot2": "lingerpotwaterbreathing2", - "waterbreathcloudpotlong": "lingerpotwaterbreathing2", - "waterbreathcloudpotextended": "lingerpotwaterbreathing2", - "waterbreathcloudpotex": "lingerpotwaterbreathing2", - "waterbreathcloudpotlevel2": "lingerpotwaterbreathing2", - "breathingcloudpot2": "lingerpotwaterbreathing2", - "breathingcloudpotlong": "lingerpotwaterbreathing2", - "breathingcloudpotextended": "lingerpotwaterbreathing2", - "breathingcloudpotex": "lingerpotwaterbreathing2", - "breathingcloudpotlevel2": "lingerpotwaterbreathing2", - "breathcloudpot2": "lingerpotwaterbreathing2", - "breathcloudpotlong": "lingerpotwaterbreathing2", - "breathcloudpotextended": "lingerpotwaterbreathing2", - "breathcloudpotex": "lingerpotwaterbreathing2", - "breathcloudpotlevel2": "lingerpotwaterbreathing2", - "arrowwaterbreathing2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_water_breathing", - "type": "WATER_BREATHING", - "upgraded": false, - "extended": true - } - }, - "arrowwaterbreathinglong": "arrowwaterbreathing2", - "arrowwaterbreathingextended": "arrowwaterbreathing2", - "arrowwaterbreathingex": "arrowwaterbreathing2", - "arrowwaterbreathinglevel2": "arrowwaterbreathing2", - "arrowwb2": "arrowwaterbreathing2", - "arrowwblong": "arrowwaterbreathing2", - "arrowwbextended": "arrowwaterbreathing2", - "arrowwbex": "arrowwaterbreathing2", - "arrowwblevel2": "arrowwaterbreathing2", - "arrowwaterbreath2": "arrowwaterbreathing2", - "arrowwaterbreathlong": "arrowwaterbreathing2", - "arrowwaterbreathextended": "arrowwaterbreathing2", - "arrowwaterbreathex": "arrowwaterbreathing2", - "arrowwaterbreathlevel2": "arrowwaterbreathing2", - "arrowbreathing2": "arrowwaterbreathing2", - "arrowbreathinglong": "arrowwaterbreathing2", - "arrowbreathingextended": "arrowwaterbreathing2", - "arrowbreathingex": "arrowwaterbreathing2", - "arrowbreathinglevel2": "arrowwaterbreathing2", - "arrowbreath2": "arrowwaterbreathing2", - "arrowbreathlong": "arrowwaterbreathing2", - "arrowbreathextended": "arrowwaterbreathing2", - "arrowbreathex": "arrowwaterbreathing2", - "arrowbreathlevel2": "arrowwaterbreathing2", - "waterbreathingarrow2": "arrowwaterbreathing2", - "waterbreathingarrowlong": "arrowwaterbreathing2", - "waterbreathingarrowextended": "arrowwaterbreathing2", - "waterbreathingarrowex": "arrowwaterbreathing2", - "waterbreathingarrowlevel2": "arrowwaterbreathing2", - "wbarrow2": "arrowwaterbreathing2", - "wbarrowlong": "arrowwaterbreathing2", - "wbarrowextended": "arrowwaterbreathing2", - "wbarrowex": "arrowwaterbreathing2", - "wbarrowlevel2": "arrowwaterbreathing2", - "waterbreatharrow2": "arrowwaterbreathing2", - "waterbreatharrowlong": "arrowwaterbreathing2", - "waterbreatharrowextended": "arrowwaterbreathing2", - "waterbreatharrowex": "arrowwaterbreathing2", - "waterbreatharrowlevel2": "arrowwaterbreathing2", - "breathingarrow2": "arrowwaterbreathing2", - "breathingarrowlong": "arrowwaterbreathing2", - "breathingarrowextended": "arrowwaterbreathing2", - "breathingarrowex": "arrowwaterbreathing2", - "breathingarrowlevel2": "arrowwaterbreathing2", - "breatharrow2": "arrowwaterbreathing2", - "breatharrowlong": "arrowwaterbreathing2", - "breatharrowextended": "arrowwaterbreathing2", - "breatharrowex": "arrowwaterbreathing2", - "breatharrowlevel2": "arrowwaterbreathing2", - "healingpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "healing", - "type": "INSTANT_HEAL", - "upgraded": false, - "extended": false - } - }, - "healpotion": "healingpotion", - "lifepotion": "healingpotion", - "hpotion": "healingpotion", - "healingpot": "healingpotion", - "healpot": "healingpotion", - "lifepot": "healingpotion", - "hpot": "healingpotion", - "potionofhealing": "healingpotion", - "potionofheal": "healingpotion", - "potionoflife": "healingpotion", - "potionofh": "healingpotion", - "potofhealing": "healingpotion", - "potofheal": "healingpotion", - "potoflife": "healingpotion", - "potofh": "healingpotion", - "splashhealingpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "healing", - "type": "INSTANT_HEAL", - "upgraded": false, - "extended": false - } - }, - "splashhealpotion": "splashhealingpotion", - "splashlifepotion": "splashhealingpotion", - "splashhpotion": "splashhealingpotion", - "splhealingpotion": "splashhealingpotion", - "splhealpotion": "splashhealingpotion", - "spllifepotion": "splashhealingpotion", - "splhpotion": "splashhealingpotion", - "healingsplashpotion": "splashhealingpotion", - "healsplashpotion": "splashhealingpotion", - "lifesplashpotion": "splashhealingpotion", - "hsplashpotion": "splashhealingpotion", - "splashhealingpot": "splashhealingpotion", - "splashhealpot": "splashhealingpotion", - "splashlifepot": "splashhealingpotion", - "splashhpot": "splashhealingpotion", - "splhealingpot": "splashhealingpotion", - "splhealpot": "splashhealingpotion", - "spllifepot": "splashhealingpotion", - "splhpot": "splashhealingpotion", - "healingsplashpot": "splashhealingpotion", - "healsplashpot": "splashhealingpotion", - "lifesplashpot": "splashhealingpotion", - "hsplashpot": "splashhealingpotion", - "lingerpothealing": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "healing", - "type": "INSTANT_HEAL", - "upgraded": false, - "extended": false - } - }, - "lingerpotheal": "lingerpothealing", - "lingerpotlife": "lingerpothealing", - "lingerpoth": "lingerpothealing", - "healinglingerpot": "lingerpothealing", - "heallingerpot": "lingerpothealing", - "lifelingerpot": "lingerpothealing", - "hlingerpot": "lingerpothealing", - "aoepotionhealing": "lingerpothealing", - "aoepotionheal": "lingerpothealing", - "aoepotionlife": "lingerpothealing", - "aoepotionh": "lingerpothealing", - "healingaoepoiont": "lingerpothealing", - "healaoepoiont": "lingerpothealing", - "lifeaoepoiont": "lingerpothealing", - "haoepoiont": "lingerpothealing", - "aoepothealing": "lingerpothealing", - "aoepotheal": "lingerpothealing", - "aoepotlife": "lingerpothealing", - "aoepoth": "lingerpothealing", - "healingaoepot": "lingerpothealing", - "healaoepot": "lingerpothealing", - "lifeaoepot": "lingerpothealing", - "haoepot": "lingerpothealing", - "areapotionhealing": "lingerpothealing", - "areapotionheal": "lingerpothealing", - "areapotionlife": "lingerpothealing", - "areapotionh": "lingerpothealing", - "healingareapotion": "lingerpothealing", - "healareapotion": "lingerpothealing", - "lifeareapotion": "lingerpothealing", - "hareapotion": "lingerpothealing", - "areapothealing": "lingerpothealing", - "areapotheal": "lingerpothealing", - "areapotlife": "lingerpothealing", - "areapoth": "lingerpothealing", - "healingareapot": "lingerpothealing", - "healareapot": "lingerpothealing", - "lifeareapot": "lingerpothealing", - "hareapot": "lingerpothealing", - "cloudpotionhealing": "lingerpothealing", - "cloudpotionheal": "lingerpothealing", - "cloudpotionlife": "lingerpothealing", - "cloudpotionh": "lingerpothealing", - "healingcloudpotion": "lingerpothealing", - "healcloudpotion": "lingerpothealing", - "lifecloudpotion": "lingerpothealing", - "hcloudpotion": "lingerpothealing", - "cloudpothealing": "lingerpothealing", - "cloudpotheal": "lingerpothealing", - "cloudpotlife": "lingerpothealing", - "cloudpoth": "lingerpothealing", - "healingcloudpot": "lingerpothealing", - "healcloudpot": "lingerpothealing", - "lifecloudpot": "lingerpothealing", - "hcloudpot": "lingerpothealing", - "arrowhealing": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "healing", - "type": "INSTANT_HEAL", - "upgraded": false, - "extended": false - } - }, - "arrowheal": "arrowhealing", - "arrowlife": "arrowhealing", - "arrowh": "arrowhealing", - "healingarrow": "arrowhealing", - "healarrow": "arrowhealing", - "lifearrow": "arrowhealing", - "harrow": "arrowhealing", - "healingiipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_healing", - "type": "INSTANT_HEAL", - "upgraded": true, - "extended": false - } - }, - "healingstrongpotion": "healingiipotion", - "healingleveliipotion": "healingiipotion", - "healiipotion": "healingiipotion", - "healstrongpotion": "healingiipotion", - "healleveliipotion": "healingiipotion", - "lifeiipotion": "healingiipotion", - "lifestrongpotion": "healingiipotion", - "lifeleveliipotion": "healingiipotion", - "hiipotion": "healingiipotion", - "hstrongpotion": "healingiipotion", - "hleveliipotion": "healingiipotion", - "healingiipot": "healingiipotion", - "healingstrongpot": "healingiipotion", - "healingleveliipot": "healingiipotion", - "healiipot": "healingiipotion", - "healstrongpot": "healingiipotion", - "healleveliipot": "healingiipotion", - "lifeiipot": "healingiipotion", - "lifestrongpot": "healingiipotion", - "lifeleveliipot": "healingiipotion", - "hiipot": "healingiipotion", - "hstrongpot": "healingiipotion", - "hleveliipot": "healingiipotion", - "potionofhealingii": "healingiipotion", - "potionofhealingstrong": "healingiipotion", - "potionofhealinglevelii": "healingiipotion", - "potionofhealii": "healingiipotion", - "potionofhealstrong": "healingiipotion", - "potionofheallevelii": "healingiipotion", - "potionoflifeii": "healingiipotion", - "potionoflifestrong": "healingiipotion", - "potionoflifelevelii": "healingiipotion", - "potionofhii": "healingiipotion", - "potionofhstrong": "healingiipotion", - "potionofhlevelii": "healingiipotion", - "potofhealingii": "healingiipotion", - "potofhealingstrong": "healingiipotion", - "potofhealinglevelii": "healingiipotion", - "potofhealii": "healingiipotion", - "potofhealstrong": "healingiipotion", - "potofheallevelii": "healingiipotion", - "potoflifeii": "healingiipotion", - "potoflifestrong": "healingiipotion", - "potoflifelevelii": "healingiipotion", - "potofhii": "healingiipotion", - "potofhstrong": "healingiipotion", - "potofhlevelii": "healingiipotion", - "splashhealingiipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_healing", - "type": "INSTANT_HEAL", - "upgraded": true, - "extended": false - } - }, - "splashhealingstrongpotion": "splashhealingiipotion", - "splashhealingleveliipotion": "splashhealingiipotion", - "splashhealiipotion": "splashhealingiipotion", - "splashhealstrongpotion": "splashhealingiipotion", - "splashhealleveliipotion": "splashhealingiipotion", - "splashlifeiipotion": "splashhealingiipotion", - "splashlifestrongpotion": "splashhealingiipotion", - "splashlifeleveliipotion": "splashhealingiipotion", - "splashhiipotion": "splashhealingiipotion", - "splashhstrongpotion": "splashhealingiipotion", - "splashhleveliipotion": "splashhealingiipotion", - "splhealingiipotion": "splashhealingiipotion", - "splhealingstrongpotion": "splashhealingiipotion", - "splhealingleveliipotion": "splashhealingiipotion", - "splhealiipotion": "splashhealingiipotion", - "splhealstrongpotion": "splashhealingiipotion", - "splhealleveliipotion": "splashhealingiipotion", - "spllifeiipotion": "splashhealingiipotion", - "spllifestrongpotion": "splashhealingiipotion", - "spllifeleveliipotion": "splashhealingiipotion", - "splhiipotion": "splashhealingiipotion", - "splhstrongpotion": "splashhealingiipotion", - "splhleveliipotion": "splashhealingiipotion", - "healingiisplashpotion": "splashhealingiipotion", - "healingstrongsplashpotion": "splashhealingiipotion", - "healingleveliisplashpotion": "splashhealingiipotion", - "healiisplashpotion": "splashhealingiipotion", - "healstrongsplashpotion": "splashhealingiipotion", - "healleveliisplashpotion": "splashhealingiipotion", - "lifeiisplashpotion": "splashhealingiipotion", - "lifestrongsplashpotion": "splashhealingiipotion", - "lifeleveliisplashpotion": "splashhealingiipotion", - "hiisplashpotion": "splashhealingiipotion", - "hstrongsplashpotion": "splashhealingiipotion", - "hleveliisplashpotion": "splashhealingiipotion", - "splashhealingiipot": "splashhealingiipotion", - "splashhealingstrongpot": "splashhealingiipotion", - "splashhealingleveliipot": "splashhealingiipotion", - "splashhealiipot": "splashhealingiipotion", - "splashhealstrongpot": "splashhealingiipotion", - "splashhealleveliipot": "splashhealingiipotion", - "splashlifeiipot": "splashhealingiipotion", - "splashlifestrongpot": "splashhealingiipotion", - "splashlifeleveliipot": "splashhealingiipotion", - "splashhiipot": "splashhealingiipotion", - "splashhstrongpot": "splashhealingiipotion", - "splashhleveliipot": "splashhealingiipotion", - "splhealingiipot": "splashhealingiipotion", - "splhealingstrongpot": "splashhealingiipotion", - "splhealingleveliipot": "splashhealingiipotion", - "splhealiipot": "splashhealingiipotion", - "splhealstrongpot": "splashhealingiipotion", - "splhealleveliipot": "splashhealingiipotion", - "spllifeiipot": "splashhealingiipotion", - "spllifestrongpot": "splashhealingiipotion", - "spllifeleveliipot": "splashhealingiipotion", - "splhiipot": "splashhealingiipotion", - "splhstrongpot": "splashhealingiipotion", - "splhleveliipot": "splashhealingiipotion", - "healingiisplashpot": "splashhealingiipotion", - "healingstrongsplashpot": "splashhealingiipotion", - "healingleveliisplashpot": "splashhealingiipotion", - "healiisplashpot": "splashhealingiipotion", - "healstrongsplashpot": "splashhealingiipotion", - "healleveliisplashpot": "splashhealingiipotion", - "lifeiisplashpot": "splashhealingiipotion", - "lifestrongsplashpot": "splashhealingiipotion", - "lifeleveliisplashpot": "splashhealingiipotion", - "hiisplashpot": "splashhealingiipotion", - "hstrongsplashpot": "splashhealingiipotion", - "hleveliisplashpot": "splashhealingiipotion", - "lingerpothealingii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_healing", - "type": "INSTANT_HEAL", - "upgraded": true, - "extended": false - } - }, - "lingerpothealingstrong": "lingerpothealingii", - "lingerpothealinglevelii": "lingerpothealingii", - "lingerpothealii": "lingerpothealingii", - "lingerpothealstrong": "lingerpothealingii", - "lingerpotheallevelii": "lingerpothealingii", - "lingerpotlifeii": "lingerpothealingii", - "lingerpotlifestrong": "lingerpothealingii", - "lingerpotlifelevelii": "lingerpothealingii", - "lingerpothii": "lingerpothealingii", - "lingerpothstrong": "lingerpothealingii", - "lingerpothlevelii": "lingerpothealingii", - "healinglingerpotii": "lingerpothealingii", - "healinglingerpotstrong": "lingerpothealingii", - "healinglingerpotlevelii": "lingerpothealingii", - "heallingerpotii": "lingerpothealingii", - "heallingerpotstrong": "lingerpothealingii", - "heallingerpotlevelii": "lingerpothealingii", - "lifelingerpotii": "lingerpothealingii", - "lifelingerpotstrong": "lingerpothealingii", - "lifelingerpotlevelii": "lingerpothealingii", - "hlingerpotii": "lingerpothealingii", - "hlingerpotstrong": "lingerpothealingii", - "hlingerpotlevelii": "lingerpothealingii", - "aoepotionhealingii": "lingerpothealingii", - "aoepotionhealingstrong": "lingerpothealingii", - "aoepotionhealinglevelii": "lingerpothealingii", - "aoepotionhealii": "lingerpothealingii", - "aoepotionhealstrong": "lingerpothealingii", - "aoepotionheallevelii": "lingerpothealingii", - "aoepotionlifeii": "lingerpothealingii", - "aoepotionlifestrong": "lingerpothealingii", - "aoepotionlifelevelii": "lingerpothealingii", - "aoepotionhii": "lingerpothealingii", - "aoepotionhstrong": "lingerpothealingii", - "aoepotionhlevelii": "lingerpothealingii", - "healingaoepoiontii": "lingerpothealingii", - "healingaoepoiontstrong": "lingerpothealingii", - "healingaoepoiontlevelii": "lingerpothealingii", - "healaoepoiontii": "lingerpothealingii", - "healaoepoiontstrong": "lingerpothealingii", - "healaoepoiontlevelii": "lingerpothealingii", - "lifeaoepoiontii": "lingerpothealingii", - "lifeaoepoiontstrong": "lingerpothealingii", - "lifeaoepoiontlevelii": "lingerpothealingii", - "haoepoiontii": "lingerpothealingii", - "haoepoiontstrong": "lingerpothealingii", - "haoepoiontlevelii": "lingerpothealingii", - "aoepothealingii": "lingerpothealingii", - "aoepothealingstrong": "lingerpothealingii", - "aoepothealinglevelii": "lingerpothealingii", - "aoepothealii": "lingerpothealingii", - "aoepothealstrong": "lingerpothealingii", - "aoepotheallevelii": "lingerpothealingii", - "aoepotlifeii": "lingerpothealingii", - "aoepotlifestrong": "lingerpothealingii", - "aoepotlifelevelii": "lingerpothealingii", - "aoepothii": "lingerpothealingii", - "aoepothstrong": "lingerpothealingii", - "aoepothlevelii": "lingerpothealingii", - "healingaoepotii": "lingerpothealingii", - "healingaoepotstrong": "lingerpothealingii", - "healingaoepotlevelii": "lingerpothealingii", - "healaoepotii": "lingerpothealingii", - "healaoepotstrong": "lingerpothealingii", - "healaoepotlevelii": "lingerpothealingii", - "lifeaoepotii": "lingerpothealingii", - "lifeaoepotstrong": "lingerpothealingii", - "lifeaoepotlevelii": "lingerpothealingii", - "haoepotii": "lingerpothealingii", - "haoepotstrong": "lingerpothealingii", - "haoepotlevelii": "lingerpothealingii", - "areapotionhealingii": "lingerpothealingii", - "areapotionhealingstrong": "lingerpothealingii", - "areapotionhealinglevelii": "lingerpothealingii", - "areapotionhealii": "lingerpothealingii", - "areapotionhealstrong": "lingerpothealingii", - "areapotionheallevelii": "lingerpothealingii", - "areapotionlifeii": "lingerpothealingii", - "areapotionlifestrong": "lingerpothealingii", - "areapotionlifelevelii": "lingerpothealingii", - "areapotionhii": "lingerpothealingii", - "areapotionhstrong": "lingerpothealingii", - "areapotionhlevelii": "lingerpothealingii", - "healingareapotionii": "lingerpothealingii", - "healingareapotionstrong": "lingerpothealingii", - "healingareapotionlevelii": "lingerpothealingii", - "healareapotionii": "lingerpothealingii", - "healareapotionstrong": "lingerpothealingii", - "healareapotionlevelii": "lingerpothealingii", - "lifeareapotionii": "lingerpothealingii", - "lifeareapotionstrong": "lingerpothealingii", - "lifeareapotionlevelii": "lingerpothealingii", - "hareapotionii": "lingerpothealingii", - "hareapotionstrong": "lingerpothealingii", - "hareapotionlevelii": "lingerpothealingii", - "areapothealingii": "lingerpothealingii", - "areapothealingstrong": "lingerpothealingii", - "areapothealinglevelii": "lingerpothealingii", - "areapothealii": "lingerpothealingii", - "areapothealstrong": "lingerpothealingii", - "areapotheallevelii": "lingerpothealingii", - "areapotlifeii": "lingerpothealingii", - "areapotlifestrong": "lingerpothealingii", - "areapotlifelevelii": "lingerpothealingii", - "areapothii": "lingerpothealingii", - "areapothstrong": "lingerpothealingii", - "areapothlevelii": "lingerpothealingii", - "healingareapotii": "lingerpothealingii", - "healingareapotstrong": "lingerpothealingii", - "healingareapotlevelii": "lingerpothealingii", - "healareapotii": "lingerpothealingii", - "healareapotstrong": "lingerpothealingii", - "healareapotlevelii": "lingerpothealingii", - "lifeareapotii": "lingerpothealingii", - "lifeareapotstrong": "lingerpothealingii", - "lifeareapotlevelii": "lingerpothealingii", - "hareapotii": "lingerpothealingii", - "hareapotstrong": "lingerpothealingii", - "hareapotlevelii": "lingerpothealingii", - "cloudpotionhealingii": "lingerpothealingii", - "cloudpotionhealingstrong": "lingerpothealingii", - "cloudpotionhealinglevelii": "lingerpothealingii", - "cloudpotionhealii": "lingerpothealingii", - "cloudpotionhealstrong": "lingerpothealingii", - "cloudpotionheallevelii": "lingerpothealingii", - "cloudpotionlifeii": "lingerpothealingii", - "cloudpotionlifestrong": "lingerpothealingii", - "cloudpotionlifelevelii": "lingerpothealingii", - "cloudpotionhii": "lingerpothealingii", - "cloudpotionhstrong": "lingerpothealingii", - "cloudpotionhlevelii": "lingerpothealingii", - "healingcloudpotionii": "lingerpothealingii", - "healingcloudpotionstrong": "lingerpothealingii", - "healingcloudpotionlevelii": "lingerpothealingii", - "healcloudpotionii": "lingerpothealingii", - "healcloudpotionstrong": "lingerpothealingii", - "healcloudpotionlevelii": "lingerpothealingii", - "lifecloudpotionii": "lingerpothealingii", - "lifecloudpotionstrong": "lingerpothealingii", - "lifecloudpotionlevelii": "lingerpothealingii", - "hcloudpotionii": "lingerpothealingii", - "hcloudpotionstrong": "lingerpothealingii", - "hcloudpotionlevelii": "lingerpothealingii", - "cloudpothealingii": "lingerpothealingii", - "cloudpothealingstrong": "lingerpothealingii", - "cloudpothealinglevelii": "lingerpothealingii", - "cloudpothealii": "lingerpothealingii", - "cloudpothealstrong": "lingerpothealingii", - "cloudpotheallevelii": "lingerpothealingii", - "cloudpotlifeii": "lingerpothealingii", - "cloudpotlifestrong": "lingerpothealingii", - "cloudpotlifelevelii": "lingerpothealingii", - "cloudpothii": "lingerpothealingii", - "cloudpothstrong": "lingerpothealingii", - "cloudpothlevelii": "lingerpothealingii", - "healingcloudpotii": "lingerpothealingii", - "healingcloudpotstrong": "lingerpothealingii", - "healingcloudpotlevelii": "lingerpothealingii", - "healcloudpotii": "lingerpothealingii", - "healcloudpotstrong": "lingerpothealingii", - "healcloudpotlevelii": "lingerpothealingii", - "lifecloudpotii": "lingerpothealingii", - "lifecloudpotstrong": "lingerpothealingii", - "lifecloudpotlevelii": "lingerpothealingii", - "hcloudpotii": "lingerpothealingii", - "hcloudpotstrong": "lingerpothealingii", - "hcloudpotlevelii": "lingerpothealingii", - "arrowhealingii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_healing", - "type": "INSTANT_HEAL", - "upgraded": true, - "extended": false - } - }, - "arrowhealingstrong": "arrowhealingii", - "arrowhealinglevelii": "arrowhealingii", - "arrowhealii": "arrowhealingii", - "arrowhealstrong": "arrowhealingii", - "arrowheallevelii": "arrowhealingii", - "arrowlifeii": "arrowhealingii", - "arrowlifestrong": "arrowhealingii", - "arrowlifelevelii": "arrowhealingii", - "arrowhii": "arrowhealingii", - "arrowhstrong": "arrowhealingii", - "arrowhlevelii": "arrowhealingii", - "healingarrowii": "arrowhealingii", - "healingarrowstrong": "arrowhealingii", - "healingarrowlevelii": "arrowhealingii", - "healarrowii": "arrowhealingii", - "healarrowstrong": "arrowhealingii", - "healarrowlevelii": "arrowhealingii", - "lifearrowii": "arrowhealingii", - "lifearrowstrong": "arrowhealingii", - "lifearrowlevelii": "arrowhealingii", - "harrowii": "arrowhealingii", - "harrowstrong": "arrowhealingii", - "harrowlevelii": "arrowhealingii", - "harmingpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "harming", - "type": "INSTANT_DAMAGE", - "upgraded": false, - "extended": false - } - }, - "damagepotion": "harmingpotion", - "dmgpotion": "harmingpotion", - "dpotion": "harmingpotion", - "harmingpot": "harmingpotion", - "damagepot": "harmingpotion", - "dmgpot": "harmingpotion", - "dpot": "harmingpotion", - "potionofharming": "harmingpotion", - "potionofdamage": "harmingpotion", - "potionofdmg": "harmingpotion", - "potionofd": "harmingpotion", - "potofharming": "harmingpotion", - "potofdamage": "harmingpotion", - "potofdmg": "harmingpotion", - "potofd": "harmingpotion", - "splashharmingpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "harming", - "type": "INSTANT_DAMAGE", - "upgraded": false, - "extended": false - } - }, - "splashdamagepotion": "splashharmingpotion", - "splashdmgpotion": "splashharmingpotion", - "splashdpotion": "splashharmingpotion", - "splharmingpotion": "splashharmingpotion", - "spldamagepotion": "splashharmingpotion", - "spldmgpotion": "splashharmingpotion", - "spldpotion": "splashharmingpotion", - "harmingsplashpotion": "splashharmingpotion", - "damagesplashpotion": "splashharmingpotion", - "dmgsplashpotion": "splashharmingpotion", - "dsplashpotion": "splashharmingpotion", - "splashharmingpot": "splashharmingpotion", - "splashdamagepot": "splashharmingpotion", - "splashdmgpot": "splashharmingpotion", - "splashdpot": "splashharmingpotion", - "splharmingpot": "splashharmingpotion", - "spldamagepot": "splashharmingpotion", - "spldmgpot": "splashharmingpotion", - "spldpot": "splashharmingpotion", - "harmingsplashpot": "splashharmingpotion", - "damagesplashpot": "splashharmingpotion", - "dmgsplashpot": "splashharmingpotion", - "dsplashpot": "splashharmingpotion", - "lingerpotharming": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "harming", - "type": "INSTANT_DAMAGE", - "upgraded": false, - "extended": false - } - }, - "lingerpotdamage": "lingerpotharming", - "lingerpotdmg": "lingerpotharming", - "lingerpotd": "lingerpotharming", - "harminglingerpot": "lingerpotharming", - "damagelingerpot": "lingerpotharming", - "dmglingerpot": "lingerpotharming", - "dlingerpot": "lingerpotharming", - "aoepotionharming": "lingerpotharming", - "aoepotiondamage": "lingerpotharming", - "aoepotiondmg": "lingerpotharming", - "aoepotiond": "lingerpotharming", - "harmingaoepoiont": "lingerpotharming", - "damageaoepoiont": "lingerpotharming", - "dmgaoepoiont": "lingerpotharming", - "daoepoiont": "lingerpotharming", - "aoepotharming": "lingerpotharming", - "aoepotdamage": "lingerpotharming", - "aoepotdmg": "lingerpotharming", - "aoepotd": "lingerpotharming", - "harmingaoepot": "lingerpotharming", - "damageaoepot": "lingerpotharming", - "dmgaoepot": "lingerpotharming", - "daoepot": "lingerpotharming", - "areapotionharming": "lingerpotharming", - "areapotiondamage": "lingerpotharming", - "areapotiondmg": "lingerpotharming", - "areapotiond": "lingerpotharming", - "harmingareapotion": "lingerpotharming", - "damageareapotion": "lingerpotharming", - "dmgareapotion": "lingerpotharming", - "dareapotion": "lingerpotharming", - "areapotharming": "lingerpotharming", - "areapotdamage": "lingerpotharming", - "areapotdmg": "lingerpotharming", - "areapotd": "lingerpotharming", - "harmingareapot": "lingerpotharming", - "damageareapot": "lingerpotharming", - "dmgareapot": "lingerpotharming", - "dareapot": "lingerpotharming", - "cloudpotionharming": "lingerpotharming", - "cloudpotiondamage": "lingerpotharming", - "cloudpotiondmg": "lingerpotharming", - "cloudpotiond": "lingerpotharming", - "harmingcloudpotion": "lingerpotharming", - "damagecloudpotion": "lingerpotharming", - "dmgcloudpotion": "lingerpotharming", - "dcloudpotion": "lingerpotharming", - "cloudpotharming": "lingerpotharming", - "cloudpotdamage": "lingerpotharming", - "cloudpotdmg": "lingerpotharming", - "cloudpotd": "lingerpotharming", - "harmingcloudpot": "lingerpotharming", - "damagecloudpot": "lingerpotharming", - "dmgcloudpot": "lingerpotharming", - "dcloudpot": "lingerpotharming", - "arrowharming": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "harming", - "type": "INSTANT_DAMAGE", - "upgraded": false, - "extended": false - } - }, - "arrowdamage": "arrowharming", - "arrowdmg": "arrowharming", - "arrowd": "arrowharming", - "harmingarrow": "arrowharming", - "damagearrow": "arrowharming", - "dmgarrow": "arrowharming", - "darrow": "arrowharming", - "harmingiipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_harming", - "type": "INSTANT_DAMAGE", - "upgraded": true, - "extended": false - } - }, - "harmingstrongpotion": "harmingiipotion", - "harmingleveliipotion": "harmingiipotion", - "damageiipotion": "harmingiipotion", - "damagestrongpotion": "harmingiipotion", - "damageleveliipotion": "harmingiipotion", - "dmgiipotion": "harmingiipotion", - "dmgstrongpotion": "harmingiipotion", - "dmgleveliipotion": "harmingiipotion", - "diipotion": "harmingiipotion", - "dstrongpotion": "harmingiipotion", - "dleveliipotion": "harmingiipotion", - "harmingiipot": "harmingiipotion", - "harmingstrongpot": "harmingiipotion", - "harmingleveliipot": "harmingiipotion", - "damageiipot": "harmingiipotion", - "damagestrongpot": "harmingiipotion", - "damageleveliipot": "harmingiipotion", - "dmgiipot": "harmingiipotion", - "dmgstrongpot": "harmingiipotion", - "dmgleveliipot": "harmingiipotion", - "diipot": "harmingiipotion", - "dstrongpot": "harmingiipotion", - "dleveliipot": "harmingiipotion", - "potionofharmingii": "harmingiipotion", - "potionofharmingstrong": "harmingiipotion", - "potionofharminglevelii": "harmingiipotion", - "potionofdamageii": "harmingiipotion", - "potionofdamagestrong": "harmingiipotion", - "potionofdamagelevelii": "harmingiipotion", - "potionofdmgii": "harmingiipotion", - "potionofdmgstrong": "harmingiipotion", - "potionofdmglevelii": "harmingiipotion", - "potionofdii": "harmingiipotion", - "potionofdstrong": "harmingiipotion", - "potionofdlevelii": "harmingiipotion", - "potofharmingii": "harmingiipotion", - "potofharmingstrong": "harmingiipotion", - "potofharminglevelii": "harmingiipotion", - "potofdamageii": "harmingiipotion", - "potofdamagestrong": "harmingiipotion", - "potofdamagelevelii": "harmingiipotion", - "potofdmgii": "harmingiipotion", - "potofdmgstrong": "harmingiipotion", - "potofdmglevelii": "harmingiipotion", - "potofdii": "harmingiipotion", - "potofdstrong": "harmingiipotion", - "potofdlevelii": "harmingiipotion", - "splashharmingiipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_harming", - "type": "INSTANT_DAMAGE", - "upgraded": true, - "extended": false - } - }, - "splashharmingstrongpotion": "splashharmingiipotion", - "splashharmingleveliipotion": "splashharmingiipotion", - "splashdamageiipotion": "splashharmingiipotion", - "splashdamagestrongpotion": "splashharmingiipotion", - "splashdamageleveliipotion": "splashharmingiipotion", - "splashdmgiipotion": "splashharmingiipotion", - "splashdmgstrongpotion": "splashharmingiipotion", - "splashdmgleveliipotion": "splashharmingiipotion", - "splashdiipotion": "splashharmingiipotion", - "splashdstrongpotion": "splashharmingiipotion", - "splashdleveliipotion": "splashharmingiipotion", - "splharmingiipotion": "splashharmingiipotion", - "splharmingstrongpotion": "splashharmingiipotion", - "splharmingleveliipotion": "splashharmingiipotion", - "spldamageiipotion": "splashharmingiipotion", - "spldamagestrongpotion": "splashharmingiipotion", - "spldamageleveliipotion": "splashharmingiipotion", - "spldmgiipotion": "splashharmingiipotion", - "spldmgstrongpotion": "splashharmingiipotion", - "spldmgleveliipotion": "splashharmingiipotion", - "spldiipotion": "splashharmingiipotion", - "spldstrongpotion": "splashharmingiipotion", - "spldleveliipotion": "splashharmingiipotion", - "harmingiisplashpotion": "splashharmingiipotion", - "harmingstrongsplashpotion": "splashharmingiipotion", - "harmingleveliisplashpotion": "splashharmingiipotion", - "damageiisplashpotion": "splashharmingiipotion", - "damagestrongsplashpotion": "splashharmingiipotion", - "damageleveliisplashpotion": "splashharmingiipotion", - "dmgiisplashpotion": "splashharmingiipotion", - "dmgstrongsplashpotion": "splashharmingiipotion", - "dmgleveliisplashpotion": "splashharmingiipotion", - "diisplashpotion": "splashharmingiipotion", - "dstrongsplashpotion": "splashharmingiipotion", - "dleveliisplashpotion": "splashharmingiipotion", - "splashharmingiipot": "splashharmingiipotion", - "splashharmingstrongpot": "splashharmingiipotion", - "splashharmingleveliipot": "splashharmingiipotion", - "splashdamageiipot": "splashharmingiipotion", - "splashdamagestrongpot": "splashharmingiipotion", - "splashdamageleveliipot": "splashharmingiipotion", - "splashdmgiipot": "splashharmingiipotion", - "splashdmgstrongpot": "splashharmingiipotion", - "splashdmgleveliipot": "splashharmingiipotion", - "splashdiipot": "splashharmingiipotion", - "splashdstrongpot": "splashharmingiipotion", - "splashdleveliipot": "splashharmingiipotion", - "splharmingiipot": "splashharmingiipotion", - "splharmingstrongpot": "splashharmingiipotion", - "splharmingleveliipot": "splashharmingiipotion", - "spldamageiipot": "splashharmingiipotion", - "spldamagestrongpot": "splashharmingiipotion", - "spldamageleveliipot": "splashharmingiipotion", - "spldmgiipot": "splashharmingiipotion", - "spldmgstrongpot": "splashharmingiipotion", - "spldmgleveliipot": "splashharmingiipotion", - "spldiipot": "splashharmingiipotion", - "spldstrongpot": "splashharmingiipotion", - "spldleveliipot": "splashharmingiipotion", - "harmingiisplashpot": "splashharmingiipotion", - "harmingstrongsplashpot": "splashharmingiipotion", - "harmingleveliisplashpot": "splashharmingiipotion", - "damageiisplashpot": "splashharmingiipotion", - "damagestrongsplashpot": "splashharmingiipotion", - "damageleveliisplashpot": "splashharmingiipotion", - "dmgiisplashpot": "splashharmingiipotion", - "dmgstrongsplashpot": "splashharmingiipotion", - "dmgleveliisplashpot": "splashharmingiipotion", - "diisplashpot": "splashharmingiipotion", - "dstrongsplashpot": "splashharmingiipotion", - "dleveliisplashpot": "splashharmingiipotion", - "lingerpotharmingii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_harming", - "type": "INSTANT_DAMAGE", - "upgraded": true, - "extended": false - } - }, - "lingerpotharmingstrong": "lingerpotharmingii", - "lingerpotharminglevelii": "lingerpotharmingii", - "lingerpotdamageii": "lingerpotharmingii", - "lingerpotdamagestrong": "lingerpotharmingii", - "lingerpotdamagelevelii": "lingerpotharmingii", - "lingerpotdmgii": "lingerpotharmingii", - "lingerpotdmgstrong": "lingerpotharmingii", - "lingerpotdmglevelii": "lingerpotharmingii", - "lingerpotdii": "lingerpotharmingii", - "lingerpotdstrong": "lingerpotharmingii", - "lingerpotdlevelii": "lingerpotharmingii", - "harminglingerpotii": "lingerpotharmingii", - "harminglingerpotstrong": "lingerpotharmingii", - "harminglingerpotlevelii": "lingerpotharmingii", - "damagelingerpotii": "lingerpotharmingii", - "damagelingerpotstrong": "lingerpotharmingii", - "damagelingerpotlevelii": "lingerpotharmingii", - "dmglingerpotii": "lingerpotharmingii", - "dmglingerpotstrong": "lingerpotharmingii", - "dmglingerpotlevelii": "lingerpotharmingii", - "dlingerpotii": "lingerpotharmingii", - "dlingerpotstrong": "lingerpotharmingii", - "dlingerpotlevelii": "lingerpotharmingii", - "aoepotionharmingii": "lingerpotharmingii", - "aoepotionharmingstrong": "lingerpotharmingii", - "aoepotionharminglevelii": "lingerpotharmingii", - "aoepotiondamageii": "lingerpotharmingii", - "aoepotiondamagestrong": "lingerpotharmingii", - "aoepotiondamagelevelii": "lingerpotharmingii", - "aoepotiondmgii": "lingerpotharmingii", - "aoepotiondmgstrong": "lingerpotharmingii", - "aoepotiondmglevelii": "lingerpotharmingii", - "aoepotiondii": "lingerpotharmingii", - "aoepotiondstrong": "lingerpotharmingii", - "aoepotiondlevelii": "lingerpotharmingii", - "harmingaoepoiontii": "lingerpotharmingii", - "harmingaoepoiontstrong": "lingerpotharmingii", - "harmingaoepoiontlevelii": "lingerpotharmingii", - "damageaoepoiontii": "lingerpotharmingii", - "damageaoepoiontstrong": "lingerpotharmingii", - "damageaoepoiontlevelii": "lingerpotharmingii", - "dmgaoepoiontii": "lingerpotharmingii", - "dmgaoepoiontstrong": "lingerpotharmingii", - "dmgaoepoiontlevelii": "lingerpotharmingii", - "daoepoiontii": "lingerpotharmingii", - "daoepoiontstrong": "lingerpotharmingii", - "daoepoiontlevelii": "lingerpotharmingii", - "aoepotharmingii": "lingerpotharmingii", - "aoepotharmingstrong": "lingerpotharmingii", - "aoepotharminglevelii": "lingerpotharmingii", - "aoepotdamageii": "lingerpotharmingii", - "aoepotdamagestrong": "lingerpotharmingii", - "aoepotdamagelevelii": "lingerpotharmingii", - "aoepotdmgii": "lingerpotharmingii", - "aoepotdmgstrong": "lingerpotharmingii", - "aoepotdmglevelii": "lingerpotharmingii", - "aoepotdii": "lingerpotharmingii", - "aoepotdstrong": "lingerpotharmingii", - "aoepotdlevelii": "lingerpotharmingii", - "harmingaoepotii": "lingerpotharmingii", - "harmingaoepotstrong": "lingerpotharmingii", - "harmingaoepotlevelii": "lingerpotharmingii", - "damageaoepotii": "lingerpotharmingii", - "damageaoepotstrong": "lingerpotharmingii", - "damageaoepotlevelii": "lingerpotharmingii", - "dmgaoepotii": "lingerpotharmingii", - "dmgaoepotstrong": "lingerpotharmingii", - "dmgaoepotlevelii": "lingerpotharmingii", - "daoepotii": "lingerpotharmingii", - "daoepotstrong": "lingerpotharmingii", - "daoepotlevelii": "lingerpotharmingii", - "areapotionharmingii": "lingerpotharmingii", - "areapotionharmingstrong": "lingerpotharmingii", - "areapotionharminglevelii": "lingerpotharmingii", - "areapotiondamageii": "lingerpotharmingii", - "areapotiondamagestrong": "lingerpotharmingii", - "areapotiondamagelevelii": "lingerpotharmingii", - "areapotiondmgii": "lingerpotharmingii", - "areapotiondmgstrong": "lingerpotharmingii", - "areapotiondmglevelii": "lingerpotharmingii", - "areapotiondii": "lingerpotharmingii", - "areapotiondstrong": "lingerpotharmingii", - "areapotiondlevelii": "lingerpotharmingii", - "harmingareapotionii": "lingerpotharmingii", - "harmingareapotionstrong": "lingerpotharmingii", - "harmingareapotionlevelii": "lingerpotharmingii", - "damageareapotionii": "lingerpotharmingii", - "damageareapotionstrong": "lingerpotharmingii", - "damageareapotionlevelii": "lingerpotharmingii", - "dmgareapotionii": "lingerpotharmingii", - "dmgareapotionstrong": "lingerpotharmingii", - "dmgareapotionlevelii": "lingerpotharmingii", - "dareapotionii": "lingerpotharmingii", - "dareapotionstrong": "lingerpotharmingii", - "dareapotionlevelii": "lingerpotharmingii", - "areapotharmingii": "lingerpotharmingii", - "areapotharmingstrong": "lingerpotharmingii", - "areapotharminglevelii": "lingerpotharmingii", - "areapotdamageii": "lingerpotharmingii", - "areapotdamagestrong": "lingerpotharmingii", - "areapotdamagelevelii": "lingerpotharmingii", - "areapotdmgii": "lingerpotharmingii", - "areapotdmgstrong": "lingerpotharmingii", - "areapotdmglevelii": "lingerpotharmingii", - "areapotdii": "lingerpotharmingii", - "areapotdstrong": "lingerpotharmingii", - "areapotdlevelii": "lingerpotharmingii", - "harmingareapotii": "lingerpotharmingii", - "harmingareapotstrong": "lingerpotharmingii", - "harmingareapotlevelii": "lingerpotharmingii", - "damageareapotii": "lingerpotharmingii", - "damageareapotstrong": "lingerpotharmingii", - "damageareapotlevelii": "lingerpotharmingii", - "dmgareapotii": "lingerpotharmingii", - "dmgareapotstrong": "lingerpotharmingii", - "dmgareapotlevelii": "lingerpotharmingii", - "dareapotii": "lingerpotharmingii", - "dareapotstrong": "lingerpotharmingii", - "dareapotlevelii": "lingerpotharmingii", - "cloudpotionharmingii": "lingerpotharmingii", - "cloudpotionharmingstrong": "lingerpotharmingii", - "cloudpotionharminglevelii": "lingerpotharmingii", - "cloudpotiondamageii": "lingerpotharmingii", - "cloudpotiondamagestrong": "lingerpotharmingii", - "cloudpotiondamagelevelii": "lingerpotharmingii", - "cloudpotiondmgii": "lingerpotharmingii", - "cloudpotiondmgstrong": "lingerpotharmingii", - "cloudpotiondmglevelii": "lingerpotharmingii", - "cloudpotiondii": "lingerpotharmingii", - "cloudpotiondstrong": "lingerpotharmingii", - "cloudpotiondlevelii": "lingerpotharmingii", - "harmingcloudpotionii": "lingerpotharmingii", - "harmingcloudpotionstrong": "lingerpotharmingii", - "harmingcloudpotionlevelii": "lingerpotharmingii", - "damagecloudpotionii": "lingerpotharmingii", - "damagecloudpotionstrong": "lingerpotharmingii", - "damagecloudpotionlevelii": "lingerpotharmingii", - "dmgcloudpotionii": "lingerpotharmingii", - "dmgcloudpotionstrong": "lingerpotharmingii", - "dmgcloudpotionlevelii": "lingerpotharmingii", - "dcloudpotionii": "lingerpotharmingii", - "dcloudpotionstrong": "lingerpotharmingii", - "dcloudpotionlevelii": "lingerpotharmingii", - "cloudpotharmingii": "lingerpotharmingii", - "cloudpotharmingstrong": "lingerpotharmingii", - "cloudpotharminglevelii": "lingerpotharmingii", - "cloudpotdamageii": "lingerpotharmingii", - "cloudpotdamagestrong": "lingerpotharmingii", - "cloudpotdamagelevelii": "lingerpotharmingii", - "cloudpotdmgii": "lingerpotharmingii", - "cloudpotdmgstrong": "lingerpotharmingii", - "cloudpotdmglevelii": "lingerpotharmingii", - "cloudpotdii": "lingerpotharmingii", - "cloudpotdstrong": "lingerpotharmingii", - "cloudpotdlevelii": "lingerpotharmingii", - "harmingcloudpotii": "lingerpotharmingii", - "harmingcloudpotstrong": "lingerpotharmingii", - "harmingcloudpotlevelii": "lingerpotharmingii", - "damagecloudpotii": "lingerpotharmingii", - "damagecloudpotstrong": "lingerpotharmingii", - "damagecloudpotlevelii": "lingerpotharmingii", - "dmgcloudpotii": "lingerpotharmingii", - "dmgcloudpotstrong": "lingerpotharmingii", - "dmgcloudpotlevelii": "lingerpotharmingii", - "dcloudpotii": "lingerpotharmingii", - "dcloudpotstrong": "lingerpotharmingii", - "dcloudpotlevelii": "lingerpotharmingii", - "arrowharmingii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_harming", - "type": "INSTANT_DAMAGE", - "upgraded": true, - "extended": false - } - }, - "arrowharmingstrong": "arrowharmingii", - "arrowharminglevelii": "arrowharmingii", - "arrowdamageii": "arrowharmingii", - "arrowdamagestrong": "arrowharmingii", - "arrowdamagelevelii": "arrowharmingii", - "arrowdmgii": "arrowharmingii", - "arrowdmgstrong": "arrowharmingii", - "arrowdmglevelii": "arrowharmingii", - "arrowdii": "arrowharmingii", - "arrowdstrong": "arrowharmingii", - "arrowdlevelii": "arrowharmingii", - "harmingarrowii": "arrowharmingii", - "harmingarrowstrong": "arrowharmingii", - "harmingarrowlevelii": "arrowharmingii", - "damagearrowii": "arrowharmingii", - "damagearrowstrong": "arrowharmingii", - "damagearrowlevelii": "arrowharmingii", - "dmgarrowii": "arrowharmingii", - "dmgarrowstrong": "arrowharmingii", - "dmgarrowlevelii": "arrowharmingii", - "darrowii": "arrowharmingii", - "darrowstrong": "arrowharmingii", - "darrowlevelii": "arrowharmingii", - "poisonpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "poison", - "type": "POISON", - "upgraded": false, - "extended": false - } - }, - "acidpotion": "poisonpotion", - "ppotion": "poisonpotion", - "poisonpot": "poisonpotion", - "acidpot": "poisonpotion", - "ppot": "poisonpotion", - "potionofpoison": "poisonpotion", - "potionofacid": "poisonpotion", - "potionofp": "poisonpotion", - "potofpoison": "poisonpotion", - "potofacid": "poisonpotion", - "potofp": "poisonpotion", - "splashpoisonpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "poison", - "type": "POISON", - "upgraded": false, - "extended": false - } - }, - "splashacidpotion": "splashpoisonpotion", - "splashppotion": "splashpoisonpotion", - "splpoisonpotion": "splashpoisonpotion", - "splacidpotion": "splashpoisonpotion", - "splppotion": "splashpoisonpotion", - "poisonsplashpotion": "splashpoisonpotion", - "acidsplashpotion": "splashpoisonpotion", - "psplashpotion": "splashpoisonpotion", - "splashpoisonpot": "splashpoisonpotion", - "splashacidpot": "splashpoisonpotion", - "splashppot": "splashpoisonpotion", - "splpoisonpot": "splashpoisonpotion", - "splacidpot": "splashpoisonpotion", - "splppot": "splashpoisonpotion", - "poisonsplashpot": "splashpoisonpotion", - "acidsplashpot": "splashpoisonpotion", - "psplashpot": "splashpoisonpotion", - "lingerpotpoison": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "poison", - "type": "POISON", - "upgraded": false, - "extended": false - } - }, - "lingerpotacid": "lingerpotpoison", - "lingerpotp": "lingerpotpoison", - "poisonlingerpot": "lingerpotpoison", - "acidlingerpot": "lingerpotpoison", - "plingerpot": "lingerpotpoison", - "aoepotionpoison": "lingerpotpoison", - "aoepotionacid": "lingerpotpoison", - "aoepotionp": "lingerpotpoison", - "poisonaoepoiont": "lingerpotpoison", - "acidaoepoiont": "lingerpotpoison", - "paoepoiont": "lingerpotpoison", - "aoepotpoison": "lingerpotpoison", - "aoepotacid": "lingerpotpoison", - "aoepotp": "lingerpotpoison", - "poisonaoepot": "lingerpotpoison", - "acidaoepot": "lingerpotpoison", - "paoepot": "lingerpotpoison", - "areapotionpoison": "lingerpotpoison", - "areapotionacid": "lingerpotpoison", - "areapotionp": "lingerpotpoison", - "poisonareapotion": "lingerpotpoison", - "acidareapotion": "lingerpotpoison", - "pareapotion": "lingerpotpoison", - "areapotpoison": "lingerpotpoison", - "areapotacid": "lingerpotpoison", - "areapotp": "lingerpotpoison", - "poisonareapot": "lingerpotpoison", - "acidareapot": "lingerpotpoison", - "pareapot": "lingerpotpoison", - "cloudpotionpoison": "lingerpotpoison", - "cloudpotionacid": "lingerpotpoison", - "cloudpotionp": "lingerpotpoison", - "poisoncloudpotion": "lingerpotpoison", - "acidcloudpotion": "lingerpotpoison", - "pcloudpotion": "lingerpotpoison", - "cloudpotpoison": "lingerpotpoison", - "cloudpotacid": "lingerpotpoison", - "cloudpotp": "lingerpotpoison", - "poisoncloudpot": "lingerpotpoison", - "acidcloudpot": "lingerpotpoison", - "pcloudpot": "lingerpotpoison", - "arrowpoison": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "poison", - "type": "POISON", - "upgraded": false, - "extended": false - } - }, - "arrowacid": "arrowpoison", - "arrowp": "arrowpoison", - "poisonarrow": "arrowpoison", - "acidarrow": "arrowpoison", - "parrow": "arrowpoison", - "poisoniipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_poison", - "type": "POISON", - "upgraded": true, - "extended": false - } - }, - "poisonstrongpotion": "poisoniipotion", - "poisonleveliipotion": "poisoniipotion", - "acidiipotion": "poisoniipotion", - "acidstrongpotion": "poisoniipotion", - "acidleveliipotion": "poisoniipotion", - "piipotion": "poisoniipotion", - "pstrongpotion": "poisoniipotion", - "pleveliipotion": "poisoniipotion", - "poisoniipot": "poisoniipotion", - "poisonstrongpot": "poisoniipotion", - "poisonleveliipot": "poisoniipotion", - "acidiipot": "poisoniipotion", - "acidstrongpot": "poisoniipotion", - "acidleveliipot": "poisoniipotion", - "piipot": "poisoniipotion", - "pstrongpot": "poisoniipotion", - "pleveliipot": "poisoniipotion", - "potionofpoisonii": "poisoniipotion", - "potionofpoisonstrong": "poisoniipotion", - "potionofpoisonlevelii": "poisoniipotion", - "potionofacidii": "poisoniipotion", - "potionofacidstrong": "poisoniipotion", - "potionofacidlevelii": "poisoniipotion", - "potionofpii": "poisoniipotion", - "potionofpstrong": "poisoniipotion", - "potionofplevelii": "poisoniipotion", - "potofpoisonii": "poisoniipotion", - "potofpoisonstrong": "poisoniipotion", - "potofpoisonlevelii": "poisoniipotion", - "potofacidii": "poisoniipotion", - "potofacidstrong": "poisoniipotion", - "potofacidlevelii": "poisoniipotion", - "potofpii": "poisoniipotion", - "potofpstrong": "poisoniipotion", - "potofplevelii": "poisoniipotion", - "splashpoisoniipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_poison", - "type": "POISON", - "upgraded": true, - "extended": false - } - }, - "splashpoisonstrongpotion": "splashpoisoniipotion", - "splashpoisonleveliipotion": "splashpoisoniipotion", - "splashacidiipotion": "splashpoisoniipotion", - "splashacidstrongpotion": "splashpoisoniipotion", - "splashacidleveliipotion": "splashpoisoniipotion", - "splashpiipotion": "splashpoisoniipotion", - "splashpstrongpotion": "splashpoisoniipotion", - "splashpleveliipotion": "splashpoisoniipotion", - "splpoisoniipotion": "splashpoisoniipotion", - "splpoisonstrongpotion": "splashpoisoniipotion", - "splpoisonleveliipotion": "splashpoisoniipotion", - "splacidiipotion": "splashpoisoniipotion", - "splacidstrongpotion": "splashpoisoniipotion", - "splacidleveliipotion": "splashpoisoniipotion", - "splpiipotion": "splashpoisoniipotion", - "splpstrongpotion": "splashpoisoniipotion", - "splpleveliipotion": "splashpoisoniipotion", - "poisoniisplashpotion": "splashpoisoniipotion", - "poisonstrongsplashpotion": "splashpoisoniipotion", - "poisonleveliisplashpotion": "splashpoisoniipotion", - "acidiisplashpotion": "splashpoisoniipotion", - "acidstrongsplashpotion": "splashpoisoniipotion", - "acidleveliisplashpotion": "splashpoisoniipotion", - "piisplashpotion": "splashpoisoniipotion", - "pstrongsplashpotion": "splashpoisoniipotion", - "pleveliisplashpotion": "splashpoisoniipotion", - "splashpoisoniipot": "splashpoisoniipotion", - "splashpoisonstrongpot": "splashpoisoniipotion", - "splashpoisonleveliipot": "splashpoisoniipotion", - "splashacidiipot": "splashpoisoniipotion", - "splashacidstrongpot": "splashpoisoniipotion", - "splashacidleveliipot": "splashpoisoniipotion", - "splashpiipot": "splashpoisoniipotion", - "splashpstrongpot": "splashpoisoniipotion", - "splashpleveliipot": "splashpoisoniipotion", - "splpoisoniipot": "splashpoisoniipotion", - "splpoisonstrongpot": "splashpoisoniipotion", - "splpoisonleveliipot": "splashpoisoniipotion", - "splacidiipot": "splashpoisoniipotion", - "splacidstrongpot": "splashpoisoniipotion", - "splacidleveliipot": "splashpoisoniipotion", - "splpiipot": "splashpoisoniipotion", - "splpstrongpot": "splashpoisoniipotion", - "splpleveliipot": "splashpoisoniipotion", - "poisoniisplashpot": "splashpoisoniipotion", - "poisonstrongsplashpot": "splashpoisoniipotion", - "poisonleveliisplashpot": "splashpoisoniipotion", - "acidiisplashpot": "splashpoisoniipotion", - "acidstrongsplashpot": "splashpoisoniipotion", - "acidleveliisplashpot": "splashpoisoniipotion", - "piisplashpot": "splashpoisoniipotion", - "pstrongsplashpot": "splashpoisoniipotion", - "pleveliisplashpot": "splashpoisoniipotion", - "lingerpotpoisonii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_poison", - "type": "POISON", - "upgraded": true, - "extended": false - } - }, - "lingerpotpoisonstrong": "lingerpotpoisonii", - "lingerpotpoisonlevelii": "lingerpotpoisonii", - "lingerpotacidii": "lingerpotpoisonii", - "lingerpotacidstrong": "lingerpotpoisonii", - "lingerpotacidlevelii": "lingerpotpoisonii", - "lingerpotpii": "lingerpotpoisonii", - "lingerpotpstrong": "lingerpotpoisonii", - "lingerpotplevelii": "lingerpotpoisonii", - "poisonlingerpotii": "lingerpotpoisonii", - "poisonlingerpotstrong": "lingerpotpoisonii", - "poisonlingerpotlevelii": "lingerpotpoisonii", - "acidlingerpotii": "lingerpotpoisonii", - "acidlingerpotstrong": "lingerpotpoisonii", - "acidlingerpotlevelii": "lingerpotpoisonii", - "plingerpotii": "lingerpotpoisonii", - "plingerpotstrong": "lingerpotpoisonii", - "plingerpotlevelii": "lingerpotpoisonii", - "aoepotionpoisonii": "lingerpotpoisonii", - "aoepotionpoisonstrong": "lingerpotpoisonii", - "aoepotionpoisonlevelii": "lingerpotpoisonii", - "aoepotionacidii": "lingerpotpoisonii", - "aoepotionacidstrong": "lingerpotpoisonii", - "aoepotionacidlevelii": "lingerpotpoisonii", - "aoepotionpii": "lingerpotpoisonii", - "aoepotionpstrong": "lingerpotpoisonii", - "aoepotionplevelii": "lingerpotpoisonii", - "poisonaoepoiontii": "lingerpotpoisonii", - "poisonaoepoiontstrong": "lingerpotpoisonii", - "poisonaoepoiontlevelii": "lingerpotpoisonii", - "acidaoepoiontii": "lingerpotpoisonii", - "acidaoepoiontstrong": "lingerpotpoisonii", - "acidaoepoiontlevelii": "lingerpotpoisonii", - "paoepoiontii": "lingerpotpoisonii", - "paoepoiontstrong": "lingerpotpoisonii", - "paoepoiontlevelii": "lingerpotpoisonii", - "aoepotpoisonii": "lingerpotpoisonii", - "aoepotpoisonstrong": "lingerpotpoisonii", - "aoepotpoisonlevelii": "lingerpotpoisonii", - "aoepotacidii": "lingerpotpoisonii", - "aoepotacidstrong": "lingerpotpoisonii", - "aoepotacidlevelii": "lingerpotpoisonii", - "aoepotpii": "lingerpotpoisonii", - "aoepotpstrong": "lingerpotpoisonii", - "aoepotplevelii": "lingerpotpoisonii", - "poisonaoepotii": "lingerpotpoisonii", - "poisonaoepotstrong": "lingerpotpoisonii", - "poisonaoepotlevelii": "lingerpotpoisonii", - "acidaoepotii": "lingerpotpoisonii", - "acidaoepotstrong": "lingerpotpoisonii", - "acidaoepotlevelii": "lingerpotpoisonii", - "paoepotii": "lingerpotpoisonii", - "paoepotstrong": "lingerpotpoisonii", - "paoepotlevelii": "lingerpotpoisonii", - "areapotionpoisonii": "lingerpotpoisonii", - "areapotionpoisonstrong": "lingerpotpoisonii", - "areapotionpoisonlevelii": "lingerpotpoisonii", - "areapotionacidii": "lingerpotpoisonii", - "areapotionacidstrong": "lingerpotpoisonii", - "areapotionacidlevelii": "lingerpotpoisonii", - "areapotionpii": "lingerpotpoisonii", - "areapotionpstrong": "lingerpotpoisonii", - "areapotionplevelii": "lingerpotpoisonii", - "poisonareapotionii": "lingerpotpoisonii", - "poisonareapotionstrong": "lingerpotpoisonii", - "poisonareapotionlevelii": "lingerpotpoisonii", - "acidareapotionii": "lingerpotpoisonii", - "acidareapotionstrong": "lingerpotpoisonii", - "acidareapotionlevelii": "lingerpotpoisonii", - "pareapotionii": "lingerpotpoisonii", - "pareapotionstrong": "lingerpotpoisonii", - "pareapotionlevelii": "lingerpotpoisonii", - "areapotpoisonii": "lingerpotpoisonii", - "areapotpoisonstrong": "lingerpotpoisonii", - "areapotpoisonlevelii": "lingerpotpoisonii", - "areapotacidii": "lingerpotpoisonii", - "areapotacidstrong": "lingerpotpoisonii", - "areapotacidlevelii": "lingerpotpoisonii", - "areapotpii": "lingerpotpoisonii", - "areapotpstrong": "lingerpotpoisonii", - "areapotplevelii": "lingerpotpoisonii", - "poisonareapotii": "lingerpotpoisonii", - "poisonareapotstrong": "lingerpotpoisonii", - "poisonareapotlevelii": "lingerpotpoisonii", - "acidareapotii": "lingerpotpoisonii", - "acidareapotstrong": "lingerpotpoisonii", - "acidareapotlevelii": "lingerpotpoisonii", - "pareapotii": "lingerpotpoisonii", - "pareapotstrong": "lingerpotpoisonii", - "pareapotlevelii": "lingerpotpoisonii", - "cloudpotionpoisonii": "lingerpotpoisonii", - "cloudpotionpoisonstrong": "lingerpotpoisonii", - "cloudpotionpoisonlevelii": "lingerpotpoisonii", - "cloudpotionacidii": "lingerpotpoisonii", - "cloudpotionacidstrong": "lingerpotpoisonii", - "cloudpotionacidlevelii": "lingerpotpoisonii", - "cloudpotionpii": "lingerpotpoisonii", - "cloudpotionpstrong": "lingerpotpoisonii", - "cloudpotionplevelii": "lingerpotpoisonii", - "poisoncloudpotionii": "lingerpotpoisonii", - "poisoncloudpotionstrong": "lingerpotpoisonii", - "poisoncloudpotionlevelii": "lingerpotpoisonii", - "acidcloudpotionii": "lingerpotpoisonii", - "acidcloudpotionstrong": "lingerpotpoisonii", - "acidcloudpotionlevelii": "lingerpotpoisonii", - "pcloudpotionii": "lingerpotpoisonii", - "pcloudpotionstrong": "lingerpotpoisonii", - "pcloudpotionlevelii": "lingerpotpoisonii", - "cloudpotpoisonii": "lingerpotpoisonii", - "cloudpotpoisonstrong": "lingerpotpoisonii", - "cloudpotpoisonlevelii": "lingerpotpoisonii", - "cloudpotacidii": "lingerpotpoisonii", - "cloudpotacidstrong": "lingerpotpoisonii", - "cloudpotacidlevelii": "lingerpotpoisonii", - "cloudpotpii": "lingerpotpoisonii", - "cloudpotpstrong": "lingerpotpoisonii", - "cloudpotplevelii": "lingerpotpoisonii", - "poisoncloudpotii": "lingerpotpoisonii", - "poisoncloudpotstrong": "lingerpotpoisonii", - "poisoncloudpotlevelii": "lingerpotpoisonii", - "acidcloudpotii": "lingerpotpoisonii", - "acidcloudpotstrong": "lingerpotpoisonii", - "acidcloudpotlevelii": "lingerpotpoisonii", - "pcloudpotii": "lingerpotpoisonii", - "pcloudpotstrong": "lingerpotpoisonii", - "pcloudpotlevelii": "lingerpotpoisonii", - "arrowpoisonii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_poison", - "type": "POISON", - "upgraded": true, - "extended": false - } - }, - "arrowpoisonstrong": "arrowpoisonii", - "arrowpoisonlevelii": "arrowpoisonii", - "arrowacidii": "arrowpoisonii", - "arrowacidstrong": "arrowpoisonii", - "arrowacidlevelii": "arrowpoisonii", - "arrowpii": "arrowpoisonii", - "arrowpstrong": "arrowpoisonii", - "arrowplevelii": "arrowpoisonii", - "poisonarrowii": "arrowpoisonii", - "poisonarrowstrong": "arrowpoisonii", - "poisonarrowlevelii": "arrowpoisonii", - "acidarrowii": "arrowpoisonii", - "acidarrowstrong": "arrowpoisonii", - "acidarrowlevelii": "arrowpoisonii", - "parrowii": "arrowpoisonii", - "parrowstrong": "arrowpoisonii", - "parrowlevelii": "arrowpoisonii", - "poison2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_poison", - "type": "POISON", - "upgraded": false, - "extended": true - } - }, - "poisonlongpotion": "poison2potion", - "poisonextendedpotion": "poison2potion", - "poisonexpotion": "poison2potion", - "poisonlevel2potion": "poison2potion", - "acid2potion": "poison2potion", - "acidlongpotion": "poison2potion", - "acidextendedpotion": "poison2potion", - "acidexpotion": "poison2potion", - "acidlevel2potion": "poison2potion", - "p2potion": "poison2potion", - "plongpotion": "poison2potion", - "pextendedpotion": "poison2potion", - "pexpotion": "poison2potion", - "plevel2potion": "poison2potion", - "poison2pot": "poison2potion", - "poisonlongpot": "poison2potion", - "poisonextendedpot": "poison2potion", - "poisonexpot": "poison2potion", - "poisonlevel2pot": "poison2potion", - "acid2pot": "poison2potion", - "acidlongpot": "poison2potion", - "acidextendedpot": "poison2potion", - "acidexpot": "poison2potion", - "acidlevel2pot": "poison2potion", - "p2pot": "poison2potion", - "plongpot": "poison2potion", - "pextendedpot": "poison2potion", - "pexpot": "poison2potion", - "plevel2pot": "poison2potion", - "potionofpoison2": "poison2potion", - "potionofpoisonlong": "poison2potion", - "potionofpoisonextended": "poison2potion", - "potionofpoisonex": "poison2potion", - "potionofpoisonlevel2": "poison2potion", - "potionofacid2": "poison2potion", - "potionofacidlong": "poison2potion", - "potionofacidextended": "poison2potion", - "potionofacidex": "poison2potion", - "potionofacidlevel2": "poison2potion", - "potionofp2": "poison2potion", - "potionofplong": "poison2potion", - "potionofpextended": "poison2potion", - "potionofpex": "poison2potion", - "potionofplevel2": "poison2potion", - "potofpoison2": "poison2potion", - "potofpoisonlong": "poison2potion", - "potofpoisonextended": "poison2potion", - "potofpoisonex": "poison2potion", - "potofpoisonlevel2": "poison2potion", - "potofacid2": "poison2potion", - "potofacidlong": "poison2potion", - "potofacidextended": "poison2potion", - "potofacidex": "poison2potion", - "potofacidlevel2": "poison2potion", - "potofp2": "poison2potion", - "potofplong": "poison2potion", - "potofpextended": "poison2potion", - "potofpex": "poison2potion", - "potofplevel2": "poison2potion", - "splashpoison2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_poison", - "type": "POISON", - "upgraded": false, - "extended": true - } - }, - "splashpoisonlongpotion": "splashpoison2potion", - "splashpoisonextendedpotion": "splashpoison2potion", - "splashpoisonexpotion": "splashpoison2potion", - "splashpoisonlevel2potion": "splashpoison2potion", - "splashacid2potion": "splashpoison2potion", - "splashacidlongpotion": "splashpoison2potion", - "splashacidextendedpotion": "splashpoison2potion", - "splashacidexpotion": "splashpoison2potion", - "splashacidlevel2potion": "splashpoison2potion", - "splashp2potion": "splashpoison2potion", - "splashplongpotion": "splashpoison2potion", - "splashpextendedpotion": "splashpoison2potion", - "splashpexpotion": "splashpoison2potion", - "splashplevel2potion": "splashpoison2potion", - "splpoison2potion": "splashpoison2potion", - "splpoisonlongpotion": "splashpoison2potion", - "splpoisonextendedpotion": "splashpoison2potion", - "splpoisonexpotion": "splashpoison2potion", - "splpoisonlevel2potion": "splashpoison2potion", - "splacid2potion": "splashpoison2potion", - "splacidlongpotion": "splashpoison2potion", - "splacidextendedpotion": "splashpoison2potion", - "splacidexpotion": "splashpoison2potion", - "splacidlevel2potion": "splashpoison2potion", - "splp2potion": "splashpoison2potion", - "splplongpotion": "splashpoison2potion", - "splpextendedpotion": "splashpoison2potion", - "splpexpotion": "splashpoison2potion", - "splplevel2potion": "splashpoison2potion", - "poison2splashpotion": "splashpoison2potion", - "poisonlongsplashpotion": "splashpoison2potion", - "poisonextendedsplashpotion": "splashpoison2potion", - "poisonexsplashpotion": "splashpoison2potion", - "poisonlevel2splashpotion": "splashpoison2potion", - "acid2splashpotion": "splashpoison2potion", - "acidlongsplashpotion": "splashpoison2potion", - "acidextendedsplashpotion": "splashpoison2potion", - "acidexsplashpotion": "splashpoison2potion", - "acidlevel2splashpotion": "splashpoison2potion", - "p2splashpotion": "splashpoison2potion", - "plongsplashpotion": "splashpoison2potion", - "pextendedsplashpotion": "splashpoison2potion", - "pexsplashpotion": "splashpoison2potion", - "plevel2splashpotion": "splashpoison2potion", - "splashpoison2pot": "splashpoison2potion", - "splashpoisonlongpot": "splashpoison2potion", - "splashpoisonextendedpot": "splashpoison2potion", - "splashpoisonexpot": "splashpoison2potion", - "splashpoisonlevel2pot": "splashpoison2potion", - "splashacid2pot": "splashpoison2potion", - "splashacidlongpot": "splashpoison2potion", - "splashacidextendedpot": "splashpoison2potion", - "splashacidexpot": "splashpoison2potion", - "splashacidlevel2pot": "splashpoison2potion", - "splashp2pot": "splashpoison2potion", - "splashplongpot": "splashpoison2potion", - "splashpextendedpot": "splashpoison2potion", - "splashpexpot": "splashpoison2potion", - "splashplevel2pot": "splashpoison2potion", - "splpoison2pot": "splashpoison2potion", - "splpoisonlongpot": "splashpoison2potion", - "splpoisonextendedpot": "splashpoison2potion", - "splpoisonexpot": "splashpoison2potion", - "splpoisonlevel2pot": "splashpoison2potion", - "splacid2pot": "splashpoison2potion", - "splacidlongpot": "splashpoison2potion", - "splacidextendedpot": "splashpoison2potion", - "splacidexpot": "splashpoison2potion", - "splacidlevel2pot": "splashpoison2potion", - "splp2pot": "splashpoison2potion", - "splplongpot": "splashpoison2potion", - "splpextendedpot": "splashpoison2potion", - "splpexpot": "splashpoison2potion", - "splplevel2pot": "splashpoison2potion", - "poison2splashpot": "splashpoison2potion", - "poisonlongsplashpot": "splashpoison2potion", - "poisonextendedsplashpot": "splashpoison2potion", - "poisonexsplashpot": "splashpoison2potion", - "poisonlevel2splashpot": "splashpoison2potion", - "acid2splashpot": "splashpoison2potion", - "acidlongsplashpot": "splashpoison2potion", - "acidextendedsplashpot": "splashpoison2potion", - "acidexsplashpot": "splashpoison2potion", - "acidlevel2splashpot": "splashpoison2potion", - "p2splashpot": "splashpoison2potion", - "plongsplashpot": "splashpoison2potion", - "pextendedsplashpot": "splashpoison2potion", - "pexsplashpot": "splashpoison2potion", - "plevel2splashpot": "splashpoison2potion", - "lingerpotpoison2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_poison", - "type": "POISON", - "upgraded": false, - "extended": true - } - }, - "lingerpotpoisonlong": "lingerpotpoison2", - "lingerpotpoisonextended": "lingerpotpoison2", - "lingerpotpoisonex": "lingerpotpoison2", - "lingerpotpoisonlevel2": "lingerpotpoison2", - "lingerpotacid2": "lingerpotpoison2", - "lingerpotacidlong": "lingerpotpoison2", - "lingerpotacidextended": "lingerpotpoison2", - "lingerpotacidex": "lingerpotpoison2", - "lingerpotacidlevel2": "lingerpotpoison2", - "lingerpotp2": "lingerpotpoison2", - "lingerpotplong": "lingerpotpoison2", - "lingerpotpextended": "lingerpotpoison2", - "lingerpotpex": "lingerpotpoison2", - "lingerpotplevel2": "lingerpotpoison2", - "poisonlingerpot2": "lingerpotpoison2", - "poisonlingerpotlong": "lingerpotpoison2", - "poisonlingerpotextended": "lingerpotpoison2", - "poisonlingerpotex": "lingerpotpoison2", - "poisonlingerpotlevel2": "lingerpotpoison2", - "acidlingerpot2": "lingerpotpoison2", - "acidlingerpotlong": "lingerpotpoison2", - "acidlingerpotextended": "lingerpotpoison2", - "acidlingerpotex": "lingerpotpoison2", - "acidlingerpotlevel2": "lingerpotpoison2", - "plingerpot2": "lingerpotpoison2", - "plingerpotlong": "lingerpotpoison2", - "plingerpotextended": "lingerpotpoison2", - "plingerpotex": "lingerpotpoison2", - "plingerpotlevel2": "lingerpotpoison2", - "aoepotionpoison2": "lingerpotpoison2", - "aoepotionpoisonlong": "lingerpotpoison2", - "aoepotionpoisonextended": "lingerpotpoison2", - "aoepotionpoisonex": "lingerpotpoison2", - "aoepotionpoisonlevel2": "lingerpotpoison2", - "aoepotionacid2": "lingerpotpoison2", - "aoepotionacidlong": "lingerpotpoison2", - "aoepotionacidextended": "lingerpotpoison2", - "aoepotionacidex": "lingerpotpoison2", - "aoepotionacidlevel2": "lingerpotpoison2", - "aoepotionp2": "lingerpotpoison2", - "aoepotionplong": "lingerpotpoison2", - "aoepotionpextended": "lingerpotpoison2", - "aoepotionpex": "lingerpotpoison2", - "aoepotionplevel2": "lingerpotpoison2", - "poisonaoepoiont2": "lingerpotpoison2", - "poisonaoepoiontlong": "lingerpotpoison2", - "poisonaoepoiontextended": "lingerpotpoison2", - "poisonaoepoiontex": "lingerpotpoison2", - "poisonaoepoiontlevel2": "lingerpotpoison2", - "acidaoepoiont2": "lingerpotpoison2", - "acidaoepoiontlong": "lingerpotpoison2", - "acidaoepoiontextended": "lingerpotpoison2", - "acidaoepoiontex": "lingerpotpoison2", - "acidaoepoiontlevel2": "lingerpotpoison2", - "paoepoiont2": "lingerpotpoison2", - "paoepoiontlong": "lingerpotpoison2", - "paoepoiontextended": "lingerpotpoison2", - "paoepoiontex": "lingerpotpoison2", - "paoepoiontlevel2": "lingerpotpoison2", - "aoepotpoison2": "lingerpotpoison2", - "aoepotpoisonlong": "lingerpotpoison2", - "aoepotpoisonextended": "lingerpotpoison2", - "aoepotpoisonex": "lingerpotpoison2", - "aoepotpoisonlevel2": "lingerpotpoison2", - "aoepotacid2": "lingerpotpoison2", - "aoepotacidlong": "lingerpotpoison2", - "aoepotacidextended": "lingerpotpoison2", - "aoepotacidex": "lingerpotpoison2", - "aoepotacidlevel2": "lingerpotpoison2", - "aoepotp2": "lingerpotpoison2", - "aoepotplong": "lingerpotpoison2", - "aoepotpextended": "lingerpotpoison2", - "aoepotpex": "lingerpotpoison2", - "aoepotplevel2": "lingerpotpoison2", - "poisonaoepot2": "lingerpotpoison2", - "poisonaoepotlong": "lingerpotpoison2", - "poisonaoepotextended": "lingerpotpoison2", - "poisonaoepotex": "lingerpotpoison2", - "poisonaoepotlevel2": "lingerpotpoison2", - "acidaoepot2": "lingerpotpoison2", - "acidaoepotlong": "lingerpotpoison2", - "acidaoepotextended": "lingerpotpoison2", - "acidaoepotex": "lingerpotpoison2", - "acidaoepotlevel2": "lingerpotpoison2", - "paoepot2": "lingerpotpoison2", - "paoepotlong": "lingerpotpoison2", - "paoepotextended": "lingerpotpoison2", - "paoepotex": "lingerpotpoison2", - "paoepotlevel2": "lingerpotpoison2", - "areapotionpoison2": "lingerpotpoison2", - "areapotionpoisonlong": "lingerpotpoison2", - "areapotionpoisonextended": "lingerpotpoison2", - "areapotionpoisonex": "lingerpotpoison2", - "areapotionpoisonlevel2": "lingerpotpoison2", - "areapotionacid2": "lingerpotpoison2", - "areapotionacidlong": "lingerpotpoison2", - "areapotionacidextended": "lingerpotpoison2", - "areapotionacidex": "lingerpotpoison2", - "areapotionacidlevel2": "lingerpotpoison2", - "areapotionp2": "lingerpotpoison2", - "areapotionplong": "lingerpotpoison2", - "areapotionpextended": "lingerpotpoison2", - "areapotionpex": "lingerpotpoison2", - "areapotionplevel2": "lingerpotpoison2", - "poisonareapotion2": "lingerpotpoison2", - "poisonareapotionlong": "lingerpotpoison2", - "poisonareapotionextended": "lingerpotpoison2", - "poisonareapotionex": "lingerpotpoison2", - "poisonareapotionlevel2": "lingerpotpoison2", - "acidareapotion2": "lingerpotpoison2", - "acidareapotionlong": "lingerpotpoison2", - "acidareapotionextended": "lingerpotpoison2", - "acidareapotionex": "lingerpotpoison2", - "acidareapotionlevel2": "lingerpotpoison2", - "pareapotion2": "lingerpotpoison2", - "pareapotionlong": "lingerpotpoison2", - "pareapotionextended": "lingerpotpoison2", - "pareapotionex": "lingerpotpoison2", - "pareapotionlevel2": "lingerpotpoison2", - "areapotpoison2": "lingerpotpoison2", - "areapotpoisonlong": "lingerpotpoison2", - "areapotpoisonextended": "lingerpotpoison2", - "areapotpoisonex": "lingerpotpoison2", - "areapotpoisonlevel2": "lingerpotpoison2", - "areapotacid2": "lingerpotpoison2", - "areapotacidlong": "lingerpotpoison2", - "areapotacidextended": "lingerpotpoison2", - "areapotacidex": "lingerpotpoison2", - "areapotacidlevel2": "lingerpotpoison2", - "areapotp2": "lingerpotpoison2", - "areapotplong": "lingerpotpoison2", - "areapotpextended": "lingerpotpoison2", - "areapotpex": "lingerpotpoison2", - "areapotplevel2": "lingerpotpoison2", - "poisonareapot2": "lingerpotpoison2", - "poisonareapotlong": "lingerpotpoison2", - "poisonareapotextended": "lingerpotpoison2", - "poisonareapotex": "lingerpotpoison2", - "poisonareapotlevel2": "lingerpotpoison2", - "acidareapot2": "lingerpotpoison2", - "acidareapotlong": "lingerpotpoison2", - "acidareapotextended": "lingerpotpoison2", - "acidareapotex": "lingerpotpoison2", - "acidareapotlevel2": "lingerpotpoison2", - "pareapot2": "lingerpotpoison2", - "pareapotlong": "lingerpotpoison2", - "pareapotextended": "lingerpotpoison2", - "pareapotex": "lingerpotpoison2", - "pareapotlevel2": "lingerpotpoison2", - "cloudpotionpoison2": "lingerpotpoison2", - "cloudpotionpoisonlong": "lingerpotpoison2", - "cloudpotionpoisonextended": "lingerpotpoison2", - "cloudpotionpoisonex": "lingerpotpoison2", - "cloudpotionpoisonlevel2": "lingerpotpoison2", - "cloudpotionacid2": "lingerpotpoison2", - "cloudpotionacidlong": "lingerpotpoison2", - "cloudpotionacidextended": "lingerpotpoison2", - "cloudpotionacidex": "lingerpotpoison2", - "cloudpotionacidlevel2": "lingerpotpoison2", - "cloudpotionp2": "lingerpotpoison2", - "cloudpotionplong": "lingerpotpoison2", - "cloudpotionpextended": "lingerpotpoison2", - "cloudpotionpex": "lingerpotpoison2", - "cloudpotionplevel2": "lingerpotpoison2", - "poisoncloudpotion2": "lingerpotpoison2", - "poisoncloudpotionlong": "lingerpotpoison2", - "poisoncloudpotionextended": "lingerpotpoison2", - "poisoncloudpotionex": "lingerpotpoison2", - "poisoncloudpotionlevel2": "lingerpotpoison2", - "acidcloudpotion2": "lingerpotpoison2", - "acidcloudpotionlong": "lingerpotpoison2", - "acidcloudpotionextended": "lingerpotpoison2", - "acidcloudpotionex": "lingerpotpoison2", - "acidcloudpotionlevel2": "lingerpotpoison2", - "pcloudpotion2": "lingerpotpoison2", - "pcloudpotionlong": "lingerpotpoison2", - "pcloudpotionextended": "lingerpotpoison2", - "pcloudpotionex": "lingerpotpoison2", - "pcloudpotionlevel2": "lingerpotpoison2", - "cloudpotpoison2": "lingerpotpoison2", - "cloudpotpoisonlong": "lingerpotpoison2", - "cloudpotpoisonextended": "lingerpotpoison2", - "cloudpotpoisonex": "lingerpotpoison2", - "cloudpotpoisonlevel2": "lingerpotpoison2", - "cloudpotacid2": "lingerpotpoison2", - "cloudpotacidlong": "lingerpotpoison2", - "cloudpotacidextended": "lingerpotpoison2", - "cloudpotacidex": "lingerpotpoison2", - "cloudpotacidlevel2": "lingerpotpoison2", - "cloudpotp2": "lingerpotpoison2", - "cloudpotplong": "lingerpotpoison2", - "cloudpotpextended": "lingerpotpoison2", - "cloudpotpex": "lingerpotpoison2", - "cloudpotplevel2": "lingerpotpoison2", - "poisoncloudpot2": "lingerpotpoison2", - "poisoncloudpotlong": "lingerpotpoison2", - "poisoncloudpotextended": "lingerpotpoison2", - "poisoncloudpotex": "lingerpotpoison2", - "poisoncloudpotlevel2": "lingerpotpoison2", - "acidcloudpot2": "lingerpotpoison2", - "acidcloudpotlong": "lingerpotpoison2", - "acidcloudpotextended": "lingerpotpoison2", - "acidcloudpotex": "lingerpotpoison2", - "acidcloudpotlevel2": "lingerpotpoison2", - "pcloudpot2": "lingerpotpoison2", - "pcloudpotlong": "lingerpotpoison2", - "pcloudpotextended": "lingerpotpoison2", - "pcloudpotex": "lingerpotpoison2", - "pcloudpotlevel2": "lingerpotpoison2", - "arrowpoison2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_poison", - "type": "POISON", - "upgraded": false, - "extended": true - } - }, - "arrowpoisonlong": "arrowpoison2", - "arrowpoisonextended": "arrowpoison2", - "arrowpoisonex": "arrowpoison2", - "arrowpoisonlevel2": "arrowpoison2", - "arrowacid2": "arrowpoison2", - "arrowacidlong": "arrowpoison2", - "arrowacidextended": "arrowpoison2", - "arrowacidex": "arrowpoison2", - "arrowacidlevel2": "arrowpoison2", - "arrowp2": "arrowpoison2", - "arrowplong": "arrowpoison2", - "arrowpextended": "arrowpoison2", - "arrowpex": "arrowpoison2", - "arrowplevel2": "arrowpoison2", - "poisonarrow2": "arrowpoison2", - "poisonarrowlong": "arrowpoison2", - "poisonarrowextended": "arrowpoison2", - "poisonarrowex": "arrowpoison2", - "poisonarrowlevel2": "arrowpoison2", - "acidarrow2": "arrowpoison2", - "acidarrowlong": "arrowpoison2", - "acidarrowextended": "arrowpoison2", - "acidarrowex": "arrowpoison2", - "acidarrowlevel2": "arrowpoison2", - "parrow2": "arrowpoison2", - "parrowlong": "arrowpoison2", - "parrowextended": "arrowpoison2", - "parrowex": "arrowpoison2", - "parrowlevel2": "arrowpoison2", - "regenerationpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "regeneration", - "type": "REGEN", - "upgraded": false, - "extended": false - } - }, - "regeneratepotion": "regenerationpotion", - "regenpotion": "regenerationpotion", - "regenerationpot": "regenerationpotion", - "regeneratepot": "regenerationpotion", - "regenpot": "regenerationpotion", - "potionofregeneration": "regenerationpotion", - "potionofregenerate": "regenerationpotion", - "potionofregen": "regenerationpotion", - "potofregeneration": "regenerationpotion", - "potofregenerate": "regenerationpotion", - "potofregen": "regenerationpotion", - "splashregenerationpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "regeneration", - "type": "REGEN", - "upgraded": false, - "extended": false - } - }, - "splashregeneratepotion": "splashregenerationpotion", - "splashregenpotion": "splashregenerationpotion", - "splregenerationpotion": "splashregenerationpotion", - "splregeneratepotion": "splashregenerationpotion", - "splregenpotion": "splashregenerationpotion", - "regenerationsplashpotion": "splashregenerationpotion", - "regeneratesplashpotion": "splashregenerationpotion", - "regensplashpotion": "splashregenerationpotion", - "splashregenerationpot": "splashregenerationpotion", - "splashregeneratepot": "splashregenerationpotion", - "splashregenpot": "splashregenerationpotion", - "splregenerationpot": "splashregenerationpotion", - "splregeneratepot": "splashregenerationpotion", - "splregenpot": "splashregenerationpotion", - "regenerationsplashpot": "splashregenerationpotion", - "regeneratesplashpot": "splashregenerationpotion", - "regensplashpot": "splashregenerationpotion", - "lingerpotregeneration": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "regeneration", - "type": "REGEN", - "upgraded": false, - "extended": false - } - }, - "lingerpotregenerate": "lingerpotregeneration", - "lingerpotregen": "lingerpotregeneration", - "regenerationlingerpot": "lingerpotregeneration", - "regeneratelingerpot": "lingerpotregeneration", - "regenlingerpot": "lingerpotregeneration", - "aoepotionregeneration": "lingerpotregeneration", - "aoepotionregenerate": "lingerpotregeneration", - "aoepotionregen": "lingerpotregeneration", - "regenerationaoepoiont": "lingerpotregeneration", - "regenerateaoepoiont": "lingerpotregeneration", - "regenaoepoiont": "lingerpotregeneration", - "aoepotregeneration": "lingerpotregeneration", - "aoepotregenerate": "lingerpotregeneration", - "aoepotregen": "lingerpotregeneration", - "regenerationaoepot": "lingerpotregeneration", - "regenerateaoepot": "lingerpotregeneration", - "regenaoepot": "lingerpotregeneration", - "areapotionregeneration": "lingerpotregeneration", - "areapotionregenerate": "lingerpotregeneration", - "areapotionregen": "lingerpotregeneration", - "regenerationareapotion": "lingerpotregeneration", - "regenerateareapotion": "lingerpotregeneration", - "regenareapotion": "lingerpotregeneration", - "areapotregeneration": "lingerpotregeneration", - "areapotregenerate": "lingerpotregeneration", - "areapotregen": "lingerpotregeneration", - "regenerationareapot": "lingerpotregeneration", - "regenerateareapot": "lingerpotregeneration", - "regenareapot": "lingerpotregeneration", - "cloudpotionregeneration": "lingerpotregeneration", - "cloudpotionregenerate": "lingerpotregeneration", - "cloudpotionregen": "lingerpotregeneration", - "regenerationcloudpotion": "lingerpotregeneration", - "regeneratecloudpotion": "lingerpotregeneration", - "regencloudpotion": "lingerpotregeneration", - "cloudpotregeneration": "lingerpotregeneration", - "cloudpotregenerate": "lingerpotregeneration", - "cloudpotregen": "lingerpotregeneration", - "regenerationcloudpot": "lingerpotregeneration", - "regeneratecloudpot": "lingerpotregeneration", - "regencloudpot": "lingerpotregeneration", - "arrowregeneration": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "regeneration", - "type": "REGEN", - "upgraded": false, - "extended": false - } - }, - "arrowregenerate": "arrowregeneration", - "arrowregen": "arrowregeneration", - "regenerationarrow": "arrowregeneration", - "regeneratearrow": "arrowregeneration", - "regenarrow": "arrowregeneration", - "regenerationiipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_regeneration", - "type": "REGEN", - "upgraded": true, - "extended": false - } - }, - "regenerationstrongpotion": "regenerationiipotion", - "regenerationleveliipotion": "regenerationiipotion", - "regenerateiipotion": "regenerationiipotion", - "regeneratestrongpotion": "regenerationiipotion", - "regenerateleveliipotion": "regenerationiipotion", - "regeniipotion": "regenerationiipotion", - "regenstrongpotion": "regenerationiipotion", - "regenleveliipotion": "regenerationiipotion", - "regenerationiipot": "regenerationiipotion", - "regenerationstrongpot": "regenerationiipotion", - "regenerationleveliipot": "regenerationiipotion", - "regenerateiipot": "regenerationiipotion", - "regeneratestrongpot": "regenerationiipotion", - "regenerateleveliipot": "regenerationiipotion", - "regeniipot": "regenerationiipotion", - "regenstrongpot": "regenerationiipotion", - "regenleveliipot": "regenerationiipotion", - "potionofregenerationii": "regenerationiipotion", - "potionofregenerationstrong": "regenerationiipotion", - "potionofregenerationlevelii": "regenerationiipotion", - "potionofregenerateii": "regenerationiipotion", - "potionofregeneratestrong": "regenerationiipotion", - "potionofregeneratelevelii": "regenerationiipotion", - "potionofregenii": "regenerationiipotion", - "potionofregenstrong": "regenerationiipotion", - "potionofregenlevelii": "regenerationiipotion", - "potofregenerationii": "regenerationiipotion", - "potofregenerationstrong": "regenerationiipotion", - "potofregenerationlevelii": "regenerationiipotion", - "potofregenerateii": "regenerationiipotion", - "potofregeneratestrong": "regenerationiipotion", - "potofregeneratelevelii": "regenerationiipotion", - "potofregenii": "regenerationiipotion", - "potofregenstrong": "regenerationiipotion", - "potofregenlevelii": "regenerationiipotion", - "splashregenerationiipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_regeneration", - "type": "REGEN", - "upgraded": true, - "extended": false - } - }, - "splashregenerationstrongpotion": "splashregenerationiipotion", - "splashregenerationleveliipotion": "splashregenerationiipotion", - "splashregenerateiipotion": "splashregenerationiipotion", - "splashregeneratestrongpotion": "splashregenerationiipotion", - "splashregenerateleveliipotion": "splashregenerationiipotion", - "splashregeniipotion": "splashregenerationiipotion", - "splashregenstrongpotion": "splashregenerationiipotion", - "splashregenleveliipotion": "splashregenerationiipotion", - "splregenerationiipotion": "splashregenerationiipotion", - "splregenerationstrongpotion": "splashregenerationiipotion", - "splregenerationleveliipotion": "splashregenerationiipotion", - "splregenerateiipotion": "splashregenerationiipotion", - "splregeneratestrongpotion": "splashregenerationiipotion", - "splregenerateleveliipotion": "splashregenerationiipotion", - "splregeniipotion": "splashregenerationiipotion", - "splregenstrongpotion": "splashregenerationiipotion", - "splregenleveliipotion": "splashregenerationiipotion", - "regenerationiisplashpotion": "splashregenerationiipotion", - "regenerationstrongsplashpotion": "splashregenerationiipotion", - "regenerationleveliisplashpotion": "splashregenerationiipotion", - "regenerateiisplashpotion": "splashregenerationiipotion", - "regeneratestrongsplashpotion": "splashregenerationiipotion", - "regenerateleveliisplashpotion": "splashregenerationiipotion", - "regeniisplashpotion": "splashregenerationiipotion", - "regenstrongsplashpotion": "splashregenerationiipotion", - "regenleveliisplashpotion": "splashregenerationiipotion", - "splashregenerationiipot": "splashregenerationiipotion", - "splashregenerationstrongpot": "splashregenerationiipotion", - "splashregenerationleveliipot": "splashregenerationiipotion", - "splashregenerateiipot": "splashregenerationiipotion", - "splashregeneratestrongpot": "splashregenerationiipotion", - "splashregenerateleveliipot": "splashregenerationiipotion", - "splashregeniipot": "splashregenerationiipotion", - "splashregenstrongpot": "splashregenerationiipotion", - "splashregenleveliipot": "splashregenerationiipotion", - "splregenerationiipot": "splashregenerationiipotion", - "splregenerationstrongpot": "splashregenerationiipotion", - "splregenerationleveliipot": "splashregenerationiipotion", - "splregenerateiipot": "splashregenerationiipotion", - "splregeneratestrongpot": "splashregenerationiipotion", - "splregenerateleveliipot": "splashregenerationiipotion", - "splregeniipot": "splashregenerationiipotion", - "splregenstrongpot": "splashregenerationiipotion", - "splregenleveliipot": "splashregenerationiipotion", - "regenerationiisplashpot": "splashregenerationiipotion", - "regenerationstrongsplashpot": "splashregenerationiipotion", - "regenerationleveliisplashpot": "splashregenerationiipotion", - "regenerateiisplashpot": "splashregenerationiipotion", - "regeneratestrongsplashpot": "splashregenerationiipotion", - "regenerateleveliisplashpot": "splashregenerationiipotion", - "regeniisplashpot": "splashregenerationiipotion", - "regenstrongsplashpot": "splashregenerationiipotion", - "regenleveliisplashpot": "splashregenerationiipotion", - "lingerpotregenerationii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_regeneration", - "type": "REGEN", - "upgraded": true, - "extended": false - } - }, - "lingerpotregenerationstrong": "lingerpotregenerationii", - "lingerpotregenerationlevelii": "lingerpotregenerationii", - "lingerpotregenerateii": "lingerpotregenerationii", - "lingerpotregeneratestrong": "lingerpotregenerationii", - "lingerpotregeneratelevelii": "lingerpotregenerationii", - "lingerpotregenii": "lingerpotregenerationii", - "lingerpotregenstrong": "lingerpotregenerationii", - "lingerpotregenlevelii": "lingerpotregenerationii", - "regenerationlingerpotii": "lingerpotregenerationii", - "regenerationlingerpotstrong": "lingerpotregenerationii", - "regenerationlingerpotlevelii": "lingerpotregenerationii", - "regeneratelingerpotii": "lingerpotregenerationii", - "regeneratelingerpotstrong": "lingerpotregenerationii", - "regeneratelingerpotlevelii": "lingerpotregenerationii", - "regenlingerpotii": "lingerpotregenerationii", - "regenlingerpotstrong": "lingerpotregenerationii", - "regenlingerpotlevelii": "lingerpotregenerationii", - "aoepotionregenerationii": "lingerpotregenerationii", - "aoepotionregenerationstrong": "lingerpotregenerationii", - "aoepotionregenerationlevelii": "lingerpotregenerationii", - "aoepotionregenerateii": "lingerpotregenerationii", - "aoepotionregeneratestrong": "lingerpotregenerationii", - "aoepotionregeneratelevelii": "lingerpotregenerationii", - "aoepotionregenii": "lingerpotregenerationii", - "aoepotionregenstrong": "lingerpotregenerationii", - "aoepotionregenlevelii": "lingerpotregenerationii", - "regenerationaoepoiontii": "lingerpotregenerationii", - "regenerationaoepoiontstrong": "lingerpotregenerationii", - "regenerationaoepoiontlevelii": "lingerpotregenerationii", - "regenerateaoepoiontii": "lingerpotregenerationii", - "regenerateaoepoiontstrong": "lingerpotregenerationii", - "regenerateaoepoiontlevelii": "lingerpotregenerationii", - "regenaoepoiontii": "lingerpotregenerationii", - "regenaoepoiontstrong": "lingerpotregenerationii", - "regenaoepoiontlevelii": "lingerpotregenerationii", - "aoepotregenerationii": "lingerpotregenerationii", - "aoepotregenerationstrong": "lingerpotregenerationii", - "aoepotregenerationlevelii": "lingerpotregenerationii", - "aoepotregenerateii": "lingerpotregenerationii", - "aoepotregeneratestrong": "lingerpotregenerationii", - "aoepotregeneratelevelii": "lingerpotregenerationii", - "aoepotregenii": "lingerpotregenerationii", - "aoepotregenstrong": "lingerpotregenerationii", - "aoepotregenlevelii": "lingerpotregenerationii", - "regenerationaoepotii": "lingerpotregenerationii", - "regenerationaoepotstrong": "lingerpotregenerationii", - "regenerationaoepotlevelii": "lingerpotregenerationii", - "regenerateaoepotii": "lingerpotregenerationii", - "regenerateaoepotstrong": "lingerpotregenerationii", - "regenerateaoepotlevelii": "lingerpotregenerationii", - "regenaoepotii": "lingerpotregenerationii", - "regenaoepotstrong": "lingerpotregenerationii", - "regenaoepotlevelii": "lingerpotregenerationii", - "areapotionregenerationii": "lingerpotregenerationii", - "areapotionregenerationstrong": "lingerpotregenerationii", - "areapotionregenerationlevelii": "lingerpotregenerationii", - "areapotionregenerateii": "lingerpotregenerationii", - "areapotionregeneratestrong": "lingerpotregenerationii", - "areapotionregeneratelevelii": "lingerpotregenerationii", - "areapotionregenii": "lingerpotregenerationii", - "areapotionregenstrong": "lingerpotregenerationii", - "areapotionregenlevelii": "lingerpotregenerationii", - "regenerationareapotionii": "lingerpotregenerationii", - "regenerationareapotionstrong": "lingerpotregenerationii", - "regenerationareapotionlevelii": "lingerpotregenerationii", - "regenerateareapotionii": "lingerpotregenerationii", - "regenerateareapotionstrong": "lingerpotregenerationii", - "regenerateareapotionlevelii": "lingerpotregenerationii", - "regenareapotionii": "lingerpotregenerationii", - "regenareapotionstrong": "lingerpotregenerationii", - "regenareapotionlevelii": "lingerpotregenerationii", - "areapotregenerationii": "lingerpotregenerationii", - "areapotregenerationstrong": "lingerpotregenerationii", - "areapotregenerationlevelii": "lingerpotregenerationii", - "areapotregenerateii": "lingerpotregenerationii", - "areapotregeneratestrong": "lingerpotregenerationii", - "areapotregeneratelevelii": "lingerpotregenerationii", - "areapotregenii": "lingerpotregenerationii", - "areapotregenstrong": "lingerpotregenerationii", - "areapotregenlevelii": "lingerpotregenerationii", - "regenerationareapotii": "lingerpotregenerationii", - "regenerationareapotstrong": "lingerpotregenerationii", - "regenerationareapotlevelii": "lingerpotregenerationii", - "regenerateareapotii": "lingerpotregenerationii", - "regenerateareapotstrong": "lingerpotregenerationii", - "regenerateareapotlevelii": "lingerpotregenerationii", - "regenareapotii": "lingerpotregenerationii", - "regenareapotstrong": "lingerpotregenerationii", - "regenareapotlevelii": "lingerpotregenerationii", - "cloudpotionregenerationii": "lingerpotregenerationii", - "cloudpotionregenerationstrong": "lingerpotregenerationii", - "cloudpotionregenerationlevelii": "lingerpotregenerationii", - "cloudpotionregenerateii": "lingerpotregenerationii", - "cloudpotionregeneratestrong": "lingerpotregenerationii", - "cloudpotionregeneratelevelii": "lingerpotregenerationii", - "cloudpotionregenii": "lingerpotregenerationii", - "cloudpotionregenstrong": "lingerpotregenerationii", - "cloudpotionregenlevelii": "lingerpotregenerationii", - "regenerationcloudpotionii": "lingerpotregenerationii", - "regenerationcloudpotionstrong": "lingerpotregenerationii", - "regenerationcloudpotionlevelii": "lingerpotregenerationii", - "regeneratecloudpotionii": "lingerpotregenerationii", - "regeneratecloudpotionstrong": "lingerpotregenerationii", - "regeneratecloudpotionlevelii": "lingerpotregenerationii", - "regencloudpotionii": "lingerpotregenerationii", - "regencloudpotionstrong": "lingerpotregenerationii", - "regencloudpotionlevelii": "lingerpotregenerationii", - "cloudpotregenerationii": "lingerpotregenerationii", - "cloudpotregenerationstrong": "lingerpotregenerationii", - "cloudpotregenerationlevelii": "lingerpotregenerationii", - "cloudpotregenerateii": "lingerpotregenerationii", - "cloudpotregeneratestrong": "lingerpotregenerationii", - "cloudpotregeneratelevelii": "lingerpotregenerationii", - "cloudpotregenii": "lingerpotregenerationii", - "cloudpotregenstrong": "lingerpotregenerationii", - "cloudpotregenlevelii": "lingerpotregenerationii", - "regenerationcloudpotii": "lingerpotregenerationii", - "regenerationcloudpotstrong": "lingerpotregenerationii", - "regenerationcloudpotlevelii": "lingerpotregenerationii", - "regeneratecloudpotii": "lingerpotregenerationii", - "regeneratecloudpotstrong": "lingerpotregenerationii", - "regeneratecloudpotlevelii": "lingerpotregenerationii", - "regencloudpotii": "lingerpotregenerationii", - "regencloudpotstrong": "lingerpotregenerationii", - "regencloudpotlevelii": "lingerpotregenerationii", - "arrowregenerationii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_regeneration", - "type": "REGEN", - "upgraded": true, - "extended": false - } - }, - "arrowregenerationstrong": "arrowregenerationii", - "arrowregenerationlevelii": "arrowregenerationii", - "arrowregenerateii": "arrowregenerationii", - "arrowregeneratestrong": "arrowregenerationii", - "arrowregeneratelevelii": "arrowregenerationii", - "arrowregenii": "arrowregenerationii", - "arrowregenstrong": "arrowregenerationii", - "arrowregenlevelii": "arrowregenerationii", - "regenerationarrowii": "arrowregenerationii", - "regenerationarrowstrong": "arrowregenerationii", - "regenerationarrowlevelii": "arrowregenerationii", - "regeneratearrowii": "arrowregenerationii", - "regeneratearrowstrong": "arrowregenerationii", - "regeneratearrowlevelii": "arrowregenerationii", - "regenarrowii": "arrowregenerationii", - "regenarrowstrong": "arrowregenerationii", - "regenarrowlevelii": "arrowregenerationii", - "regeneration2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_regeneration", - "type": "REGEN", - "upgraded": false, - "extended": true - } - }, - "regenerationlongpotion": "regeneration2potion", - "regenerationextendedpotion": "regeneration2potion", - "regenerationexpotion": "regeneration2potion", - "regenerationlevel2potion": "regeneration2potion", - "regenerate2potion": "regeneration2potion", - "regeneratelongpotion": "regeneration2potion", - "regenerateextendedpotion": "regeneration2potion", - "regenerateexpotion": "regeneration2potion", - "regeneratelevel2potion": "regeneration2potion", - "regen2potion": "regeneration2potion", - "regenlongpotion": "regeneration2potion", - "regenextendedpotion": "regeneration2potion", - "regenexpotion": "regeneration2potion", - "regenlevel2potion": "regeneration2potion", - "regeneration2pot": "regeneration2potion", - "regenerationlongpot": "regeneration2potion", - "regenerationextendedpot": "regeneration2potion", - "regenerationexpot": "regeneration2potion", - "regenerationlevel2pot": "regeneration2potion", - "regenerate2pot": "regeneration2potion", - "regeneratelongpot": "regeneration2potion", - "regenerateextendedpot": "regeneration2potion", - "regenerateexpot": "regeneration2potion", - "regeneratelevel2pot": "regeneration2potion", - "regen2pot": "regeneration2potion", - "regenlongpot": "regeneration2potion", - "regenextendedpot": "regeneration2potion", - "regenexpot": "regeneration2potion", - "regenlevel2pot": "regeneration2potion", - "potionofregeneration2": "regeneration2potion", - "potionofregenerationlong": "regeneration2potion", - "potionofregenerationextended": "regeneration2potion", - "potionofregenerationex": "regeneration2potion", - "potionofregenerationlevel2": "regeneration2potion", - "potionofregenerate2": "regeneration2potion", - "potionofregeneratelong": "regeneration2potion", - "potionofregenerateextended": "regeneration2potion", - "potionofregenerateex": "regeneration2potion", - "potionofregeneratelevel2": "regeneration2potion", - "potionofregen2": "regeneration2potion", - "potionofregenlong": "regeneration2potion", - "potionofregenextended": "regeneration2potion", - "potionofregenex": "regeneration2potion", - "potionofregenlevel2": "regeneration2potion", - "potofregeneration2": "regeneration2potion", - "potofregenerationlong": "regeneration2potion", - "potofregenerationextended": "regeneration2potion", - "potofregenerationex": "regeneration2potion", - "potofregenerationlevel2": "regeneration2potion", - "potofregenerate2": "regeneration2potion", - "potofregeneratelong": "regeneration2potion", - "potofregenerateextended": "regeneration2potion", - "potofregenerateex": "regeneration2potion", - "potofregeneratelevel2": "regeneration2potion", - "potofregen2": "regeneration2potion", - "potofregenlong": "regeneration2potion", - "potofregenextended": "regeneration2potion", - "potofregenex": "regeneration2potion", - "potofregenlevel2": "regeneration2potion", - "splashregeneration2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_regeneration", - "type": "REGEN", - "upgraded": false, - "extended": true - } - }, - "splashregenerationlongpotion": "splashregeneration2potion", - "splashregenerationextendedpotion": "splashregeneration2potion", - "splashregenerationexpotion": "splashregeneration2potion", - "splashregenerationlevel2potion": "splashregeneration2potion", - "splashregenerate2potion": "splashregeneration2potion", - "splashregeneratelongpotion": "splashregeneration2potion", - "splashregenerateextendedpotion": "splashregeneration2potion", - "splashregenerateexpotion": "splashregeneration2potion", - "splashregeneratelevel2potion": "splashregeneration2potion", - "splashregen2potion": "splashregeneration2potion", - "splashregenlongpotion": "splashregeneration2potion", - "splashregenextendedpotion": "splashregeneration2potion", - "splashregenexpotion": "splashregeneration2potion", - "splashregenlevel2potion": "splashregeneration2potion", - "splregeneration2potion": "splashregeneration2potion", - "splregenerationlongpotion": "splashregeneration2potion", - "splregenerationextendedpotion": "splashregeneration2potion", - "splregenerationexpotion": "splashregeneration2potion", - "splregenerationlevel2potion": "splashregeneration2potion", - "splregenerate2potion": "splashregeneration2potion", - "splregeneratelongpotion": "splashregeneration2potion", - "splregenerateextendedpotion": "splashregeneration2potion", - "splregenerateexpotion": "splashregeneration2potion", - "splregeneratelevel2potion": "splashregeneration2potion", - "splregen2potion": "splashregeneration2potion", - "splregenlongpotion": "splashregeneration2potion", - "splregenextendedpotion": "splashregeneration2potion", - "splregenexpotion": "splashregeneration2potion", - "splregenlevel2potion": "splashregeneration2potion", - "regeneration2splashpotion": "splashregeneration2potion", - "regenerationlongsplashpotion": "splashregeneration2potion", - "regenerationextendedsplashpotion": "splashregeneration2potion", - "regenerationexsplashpotion": "splashregeneration2potion", - "regenerationlevel2splashpotion": "splashregeneration2potion", - "regenerate2splashpotion": "splashregeneration2potion", - "regeneratelongsplashpotion": "splashregeneration2potion", - "regenerateextendedsplashpotion": "splashregeneration2potion", - "regenerateexsplashpotion": "splashregeneration2potion", - "regeneratelevel2splashpotion": "splashregeneration2potion", - "regen2splashpotion": "splashregeneration2potion", - "regenlongsplashpotion": "splashregeneration2potion", - "regenextendedsplashpotion": "splashregeneration2potion", - "regenexsplashpotion": "splashregeneration2potion", - "regenlevel2splashpotion": "splashregeneration2potion", - "splashregeneration2pot": "splashregeneration2potion", - "splashregenerationlongpot": "splashregeneration2potion", - "splashregenerationextendedpot": "splashregeneration2potion", - "splashregenerationexpot": "splashregeneration2potion", - "splashregenerationlevel2pot": "splashregeneration2potion", - "splashregenerate2pot": "splashregeneration2potion", - "splashregeneratelongpot": "splashregeneration2potion", - "splashregenerateextendedpot": "splashregeneration2potion", - "splashregenerateexpot": "splashregeneration2potion", - "splashregeneratelevel2pot": "splashregeneration2potion", - "splashregen2pot": "splashregeneration2potion", - "splashregenlongpot": "splashregeneration2potion", - "splashregenextendedpot": "splashregeneration2potion", - "splashregenexpot": "splashregeneration2potion", - "splashregenlevel2pot": "splashregeneration2potion", - "splregeneration2pot": "splashregeneration2potion", - "splregenerationlongpot": "splashregeneration2potion", - "splregenerationextendedpot": "splashregeneration2potion", - "splregenerationexpot": "splashregeneration2potion", - "splregenerationlevel2pot": "splashregeneration2potion", - "splregenerate2pot": "splashregeneration2potion", - "splregeneratelongpot": "splashregeneration2potion", - "splregenerateextendedpot": "splashregeneration2potion", - "splregenerateexpot": "splashregeneration2potion", - "splregeneratelevel2pot": "splashregeneration2potion", - "splregen2pot": "splashregeneration2potion", - "splregenlongpot": "splashregeneration2potion", - "splregenextendedpot": "splashregeneration2potion", - "splregenexpot": "splashregeneration2potion", - "splregenlevel2pot": "splashregeneration2potion", - "regeneration2splashpot": "splashregeneration2potion", - "regenerationlongsplashpot": "splashregeneration2potion", - "regenerationextendedsplashpot": "splashregeneration2potion", - "regenerationexsplashpot": "splashregeneration2potion", - "regenerationlevel2splashpot": "splashregeneration2potion", - "regenerate2splashpot": "splashregeneration2potion", - "regeneratelongsplashpot": "splashregeneration2potion", - "regenerateextendedsplashpot": "splashregeneration2potion", - "regenerateexsplashpot": "splashregeneration2potion", - "regeneratelevel2splashpot": "splashregeneration2potion", - "regen2splashpot": "splashregeneration2potion", - "regenlongsplashpot": "splashregeneration2potion", - "regenextendedsplashpot": "splashregeneration2potion", - "regenexsplashpot": "splashregeneration2potion", - "regenlevel2splashpot": "splashregeneration2potion", - "lingerpotregeneration2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_regeneration", - "type": "REGEN", - "upgraded": false, - "extended": true - } - }, - "lingerpotregenerationlong": "lingerpotregeneration2", - "lingerpotregenerationextended": "lingerpotregeneration2", - "lingerpotregenerationex": "lingerpotregeneration2", - "lingerpotregenerationlevel2": "lingerpotregeneration2", - "lingerpotregenerate2": "lingerpotregeneration2", - "lingerpotregeneratelong": "lingerpotregeneration2", - "lingerpotregenerateextended": "lingerpotregeneration2", - "lingerpotregenerateex": "lingerpotregeneration2", - "lingerpotregeneratelevel2": "lingerpotregeneration2", - "lingerpotregen2": "lingerpotregeneration2", - "lingerpotregenlong": "lingerpotregeneration2", - "lingerpotregenextended": "lingerpotregeneration2", - "lingerpotregenex": "lingerpotregeneration2", - "lingerpotregenlevel2": "lingerpotregeneration2", - "regenerationlingerpot2": "lingerpotregeneration2", - "regenerationlingerpotlong": "lingerpotregeneration2", - "regenerationlingerpotextended": "lingerpotregeneration2", - "regenerationlingerpotex": "lingerpotregeneration2", - "regenerationlingerpotlevel2": "lingerpotregeneration2", - "regeneratelingerpot2": "lingerpotregeneration2", - "regeneratelingerpotlong": "lingerpotregeneration2", - "regeneratelingerpotextended": "lingerpotregeneration2", - "regeneratelingerpotex": "lingerpotregeneration2", - "regeneratelingerpotlevel2": "lingerpotregeneration2", - "regenlingerpot2": "lingerpotregeneration2", - "regenlingerpotlong": "lingerpotregeneration2", - "regenlingerpotextended": "lingerpotregeneration2", - "regenlingerpotex": "lingerpotregeneration2", - "regenlingerpotlevel2": "lingerpotregeneration2", - "aoepotionregeneration2": "lingerpotregeneration2", - "aoepotionregenerationlong": "lingerpotregeneration2", - "aoepotionregenerationextended": "lingerpotregeneration2", - "aoepotionregenerationex": "lingerpotregeneration2", - "aoepotionregenerationlevel2": "lingerpotregeneration2", - "aoepotionregenerate2": "lingerpotregeneration2", - "aoepotionregeneratelong": "lingerpotregeneration2", - "aoepotionregenerateextended": "lingerpotregeneration2", - "aoepotionregenerateex": "lingerpotregeneration2", - "aoepotionregeneratelevel2": "lingerpotregeneration2", - "aoepotionregen2": "lingerpotregeneration2", - "aoepotionregenlong": "lingerpotregeneration2", - "aoepotionregenextended": "lingerpotregeneration2", - "aoepotionregenex": "lingerpotregeneration2", - "aoepotionregenlevel2": "lingerpotregeneration2", - "regenerationaoepoiont2": "lingerpotregeneration2", - "regenerationaoepoiontlong": "lingerpotregeneration2", - "regenerationaoepoiontextended": "lingerpotregeneration2", - "regenerationaoepoiontex": "lingerpotregeneration2", - "regenerationaoepoiontlevel2": "lingerpotregeneration2", - "regenerateaoepoiont2": "lingerpotregeneration2", - "regenerateaoepoiontlong": "lingerpotregeneration2", - "regenerateaoepoiontextended": "lingerpotregeneration2", - "regenerateaoepoiontex": "lingerpotregeneration2", - "regenerateaoepoiontlevel2": "lingerpotregeneration2", - "regenaoepoiont2": "lingerpotregeneration2", - "regenaoepoiontlong": "lingerpotregeneration2", - "regenaoepoiontextended": "lingerpotregeneration2", - "regenaoepoiontex": "lingerpotregeneration2", - "regenaoepoiontlevel2": "lingerpotregeneration2", - "aoepotregeneration2": "lingerpotregeneration2", - "aoepotregenerationlong": "lingerpotregeneration2", - "aoepotregenerationextended": "lingerpotregeneration2", - "aoepotregenerationex": "lingerpotregeneration2", - "aoepotregenerationlevel2": "lingerpotregeneration2", - "aoepotregenerate2": "lingerpotregeneration2", - "aoepotregeneratelong": "lingerpotregeneration2", - "aoepotregenerateextended": "lingerpotregeneration2", - "aoepotregenerateex": "lingerpotregeneration2", - "aoepotregeneratelevel2": "lingerpotregeneration2", - "aoepotregen2": "lingerpotregeneration2", - "aoepotregenlong": "lingerpotregeneration2", - "aoepotregenextended": "lingerpotregeneration2", - "aoepotregenex": "lingerpotregeneration2", - "aoepotregenlevel2": "lingerpotregeneration2", - "regenerationaoepot2": "lingerpotregeneration2", - "regenerationaoepotlong": "lingerpotregeneration2", - "regenerationaoepotextended": "lingerpotregeneration2", - "regenerationaoepotex": "lingerpotregeneration2", - "regenerationaoepotlevel2": "lingerpotregeneration2", - "regenerateaoepot2": "lingerpotregeneration2", - "regenerateaoepotlong": "lingerpotregeneration2", - "regenerateaoepotextended": "lingerpotregeneration2", - "regenerateaoepotex": "lingerpotregeneration2", - "regenerateaoepotlevel2": "lingerpotregeneration2", - "regenaoepot2": "lingerpotregeneration2", - "regenaoepotlong": "lingerpotregeneration2", - "regenaoepotextended": "lingerpotregeneration2", - "regenaoepotex": "lingerpotregeneration2", - "regenaoepotlevel2": "lingerpotregeneration2", - "areapotionregeneration2": "lingerpotregeneration2", - "areapotionregenerationlong": "lingerpotregeneration2", - "areapotionregenerationextended": "lingerpotregeneration2", - "areapotionregenerationex": "lingerpotregeneration2", - "areapotionregenerationlevel2": "lingerpotregeneration2", - "areapotionregenerate2": "lingerpotregeneration2", - "areapotionregeneratelong": "lingerpotregeneration2", - "areapotionregenerateextended": "lingerpotregeneration2", - "areapotionregenerateex": "lingerpotregeneration2", - "areapotionregeneratelevel2": "lingerpotregeneration2", - "areapotionregen2": "lingerpotregeneration2", - "areapotionregenlong": "lingerpotregeneration2", - "areapotionregenextended": "lingerpotregeneration2", - "areapotionregenex": "lingerpotregeneration2", - "areapotionregenlevel2": "lingerpotregeneration2", - "regenerationareapotion2": "lingerpotregeneration2", - "regenerationareapotionlong": "lingerpotregeneration2", - "regenerationareapotionextended": "lingerpotregeneration2", - "regenerationareapotionex": "lingerpotregeneration2", - "regenerationareapotionlevel2": "lingerpotregeneration2", - "regenerateareapotion2": "lingerpotregeneration2", - "regenerateareapotionlong": "lingerpotregeneration2", - "regenerateareapotionextended": "lingerpotregeneration2", - "regenerateareapotionex": "lingerpotregeneration2", - "regenerateareapotionlevel2": "lingerpotregeneration2", - "regenareapotion2": "lingerpotregeneration2", - "regenareapotionlong": "lingerpotregeneration2", - "regenareapotionextended": "lingerpotregeneration2", - "regenareapotionex": "lingerpotregeneration2", - "regenareapotionlevel2": "lingerpotregeneration2", - "areapotregeneration2": "lingerpotregeneration2", - "areapotregenerationlong": "lingerpotregeneration2", - "areapotregenerationextended": "lingerpotregeneration2", - "areapotregenerationex": "lingerpotregeneration2", - "areapotregenerationlevel2": "lingerpotregeneration2", - "areapotregenerate2": "lingerpotregeneration2", - "areapotregeneratelong": "lingerpotregeneration2", - "areapotregenerateextended": "lingerpotregeneration2", - "areapotregenerateex": "lingerpotregeneration2", - "areapotregeneratelevel2": "lingerpotregeneration2", - "areapotregen2": "lingerpotregeneration2", - "areapotregenlong": "lingerpotregeneration2", - "areapotregenextended": "lingerpotregeneration2", - "areapotregenex": "lingerpotregeneration2", - "areapotregenlevel2": "lingerpotregeneration2", - "regenerationareapot2": "lingerpotregeneration2", - "regenerationareapotlong": "lingerpotregeneration2", - "regenerationareapotextended": "lingerpotregeneration2", - "regenerationareapotex": "lingerpotregeneration2", - "regenerationareapotlevel2": "lingerpotregeneration2", - "regenerateareapot2": "lingerpotregeneration2", - "regenerateareapotlong": "lingerpotregeneration2", - "regenerateareapotextended": "lingerpotregeneration2", - "regenerateareapotex": "lingerpotregeneration2", - "regenerateareapotlevel2": "lingerpotregeneration2", - "regenareapot2": "lingerpotregeneration2", - "regenareapotlong": "lingerpotregeneration2", - "regenareapotextended": "lingerpotregeneration2", - "regenareapotex": "lingerpotregeneration2", - "regenareapotlevel2": "lingerpotregeneration2", - "cloudpotionregeneration2": "lingerpotregeneration2", - "cloudpotionregenerationlong": "lingerpotregeneration2", - "cloudpotionregenerationextended": "lingerpotregeneration2", - "cloudpotionregenerationex": "lingerpotregeneration2", - "cloudpotionregenerationlevel2": "lingerpotregeneration2", - "cloudpotionregenerate2": "lingerpotregeneration2", - "cloudpotionregeneratelong": "lingerpotregeneration2", - "cloudpotionregenerateextended": "lingerpotregeneration2", - "cloudpotionregenerateex": "lingerpotregeneration2", - "cloudpotionregeneratelevel2": "lingerpotregeneration2", - "cloudpotionregen2": "lingerpotregeneration2", - "cloudpotionregenlong": "lingerpotregeneration2", - "cloudpotionregenextended": "lingerpotregeneration2", - "cloudpotionregenex": "lingerpotregeneration2", - "cloudpotionregenlevel2": "lingerpotregeneration2", - "regenerationcloudpotion2": "lingerpotregeneration2", - "regenerationcloudpotionlong": "lingerpotregeneration2", - "regenerationcloudpotionextended": "lingerpotregeneration2", - "regenerationcloudpotionex": "lingerpotregeneration2", - "regenerationcloudpotionlevel2": "lingerpotregeneration2", - "regeneratecloudpotion2": "lingerpotregeneration2", - "regeneratecloudpotionlong": "lingerpotregeneration2", - "regeneratecloudpotionextended": "lingerpotregeneration2", - "regeneratecloudpotionex": "lingerpotregeneration2", - "regeneratecloudpotionlevel2": "lingerpotregeneration2", - "regencloudpotion2": "lingerpotregeneration2", - "regencloudpotionlong": "lingerpotregeneration2", - "regencloudpotionextended": "lingerpotregeneration2", - "regencloudpotionex": "lingerpotregeneration2", - "regencloudpotionlevel2": "lingerpotregeneration2", - "cloudpotregeneration2": "lingerpotregeneration2", - "cloudpotregenerationlong": "lingerpotregeneration2", - "cloudpotregenerationextended": "lingerpotregeneration2", - "cloudpotregenerationex": "lingerpotregeneration2", - "cloudpotregenerationlevel2": "lingerpotregeneration2", - "cloudpotregenerate2": "lingerpotregeneration2", - "cloudpotregeneratelong": "lingerpotregeneration2", - "cloudpotregenerateextended": "lingerpotregeneration2", - "cloudpotregenerateex": "lingerpotregeneration2", - "cloudpotregeneratelevel2": "lingerpotregeneration2", - "cloudpotregen2": "lingerpotregeneration2", - "cloudpotregenlong": "lingerpotregeneration2", - "cloudpotregenextended": "lingerpotregeneration2", - "cloudpotregenex": "lingerpotregeneration2", - "cloudpotregenlevel2": "lingerpotregeneration2", - "regenerationcloudpot2": "lingerpotregeneration2", - "regenerationcloudpotlong": "lingerpotregeneration2", - "regenerationcloudpotextended": "lingerpotregeneration2", - "regenerationcloudpotex": "lingerpotregeneration2", - "regenerationcloudpotlevel2": "lingerpotregeneration2", - "regeneratecloudpot2": "lingerpotregeneration2", - "regeneratecloudpotlong": "lingerpotregeneration2", - "regeneratecloudpotextended": "lingerpotregeneration2", - "regeneratecloudpotex": "lingerpotregeneration2", - "regeneratecloudpotlevel2": "lingerpotregeneration2", - "regencloudpot2": "lingerpotregeneration2", - "regencloudpotlong": "lingerpotregeneration2", - "regencloudpotextended": "lingerpotregeneration2", - "regencloudpotex": "lingerpotregeneration2", - "regencloudpotlevel2": "lingerpotregeneration2", - "arrowregeneration2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_regeneration", - "type": "REGEN", - "upgraded": false, - "extended": true - } - }, - "arrowregenerationlong": "arrowregeneration2", - "arrowregenerationextended": "arrowregeneration2", - "arrowregenerationex": "arrowregeneration2", - "arrowregenerationlevel2": "arrowregeneration2", - "arrowregenerate2": "arrowregeneration2", - "arrowregeneratelong": "arrowregeneration2", - "arrowregenerateextended": "arrowregeneration2", - "arrowregenerateex": "arrowregeneration2", - "arrowregeneratelevel2": "arrowregeneration2", - "arrowregen2": "arrowregeneration2", - "arrowregenlong": "arrowregeneration2", - "arrowregenextended": "arrowregeneration2", - "arrowregenex": "arrowregeneration2", - "arrowregenlevel2": "arrowregeneration2", - "regenerationarrow2": "arrowregeneration2", - "regenerationarrowlong": "arrowregeneration2", - "regenerationarrowextended": "arrowregeneration2", - "regenerationarrowex": "arrowregeneration2", - "regenerationarrowlevel2": "arrowregeneration2", - "regeneratearrow2": "arrowregeneration2", - "regeneratearrowlong": "arrowregeneration2", - "regeneratearrowextended": "arrowregeneration2", - "regeneratearrowex": "arrowregeneration2", - "regeneratearrowlevel2": "arrowregeneration2", - "regenarrow2": "arrowregeneration2", - "regenarrowlong": "arrowregeneration2", - "regenarrowextended": "arrowregeneration2", - "regenarrowex": "arrowregeneration2", - "regenarrowlevel2": "arrowregeneration2", - "strengthpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strength", - "type": "STRENGTH", - "upgraded": false, - "extended": false - } - }, - "strongpotion": "strengthpotion", - "strpotion": "strengthpotion", - "strengthpot": "strengthpotion", - "strongpot": "strengthpotion", - "strpot": "strengthpotion", - "potionofstrength": "strengthpotion", - "potionofstrong": "strengthpotion", - "potionofstr": "strengthpotion", - "potofstrength": "strengthpotion", - "potofstrong": "strengthpotion", - "potofstr": "strengthpotion", - "splashstrengthpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strength", - "type": "STRENGTH", - "upgraded": false, - "extended": false - } - }, - "splashstrongpotion": "splashstrengthpotion", - "splashstrpotion": "splashstrengthpotion", - "splstrengthpotion": "splashstrengthpotion", - "splstrongpotion": "splashstrengthpotion", - "splstrpotion": "splashstrengthpotion", - "strengthsplashpotion": "splashstrengthpotion", - "strongsplashpotion": "splashstrengthpotion", - "strsplashpotion": "splashstrengthpotion", - "splashstrengthpot": "splashstrengthpotion", - "splashstrongpot": "splashstrengthpotion", - "splashstrpot": "splashstrengthpotion", - "splstrengthpot": "splashstrengthpotion", - "splstrongpot": "splashstrengthpotion", - "splstrpot": "splashstrengthpotion", - "strengthsplashpot": "splashstrengthpotion", - "strongsplashpot": "splashstrengthpotion", - "strsplashpot": "splashstrengthpotion", - "lingerpotstrength": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strength", - "type": "STRENGTH", - "upgraded": false, - "extended": false - } - }, - "lingerpotstrong": "lingerpotstrength", - "lingerpotstr": "lingerpotstrength", - "strengthlingerpot": "lingerpotstrength", - "stronglingerpot": "lingerpotstrength", - "strlingerpot": "lingerpotstrength", - "aoepotionstrength": "lingerpotstrength", - "aoepotionstrong": "lingerpotstrength", - "aoepotionstr": "lingerpotstrength", - "strengthaoepoiont": "lingerpotstrength", - "strongaoepoiont": "lingerpotstrength", - "straoepoiont": "lingerpotstrength", - "aoepotstrength": "lingerpotstrength", - "aoepotstrong": "lingerpotstrength", - "aoepotstr": "lingerpotstrength", - "strengthaoepot": "lingerpotstrength", - "strongaoepot": "lingerpotstrength", - "straoepot": "lingerpotstrength", - "areapotionstrength": "lingerpotstrength", - "areapotionstrong": "lingerpotstrength", - "areapotionstr": "lingerpotstrength", - "strengthareapotion": "lingerpotstrength", - "strongareapotion": "lingerpotstrength", - "strareapotion": "lingerpotstrength", - "areapotstrength": "lingerpotstrength", - "areapotstrong": "lingerpotstrength", - "areapotstr": "lingerpotstrength", - "strengthareapot": "lingerpotstrength", - "strongareapot": "lingerpotstrength", - "strareapot": "lingerpotstrength", - "cloudpotionstrength": "lingerpotstrength", - "cloudpotionstrong": "lingerpotstrength", - "cloudpotionstr": "lingerpotstrength", - "strengthcloudpotion": "lingerpotstrength", - "strongcloudpotion": "lingerpotstrength", - "strcloudpotion": "lingerpotstrength", - "cloudpotstrength": "lingerpotstrength", - "cloudpotstrong": "lingerpotstrength", - "cloudpotstr": "lingerpotstrength", - "strengthcloudpot": "lingerpotstrength", - "strongcloudpot": "lingerpotstrength", - "strcloudpot": "lingerpotstrength", - "arrowstrength": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strength", - "type": "STRENGTH", - "upgraded": false, - "extended": false - } - }, - "arrowstrong": "arrowstrength", - "arrowstr": "arrowstrength", - "strengtharrow": "arrowstrength", - "strongarrow": "arrowstrength", - "strarrow": "arrowstrength", - "strengthiipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_strength", - "type": "STRENGTH", - "upgraded": true, - "extended": false - } - }, - "strengthstrongpotion": "strengthiipotion", - "strengthleveliipotion": "strengthiipotion", - "strongiipotion": "strengthiipotion", - "strongstrongpotion": "strengthiipotion", - "strongleveliipotion": "strengthiipotion", - "striipotion": "strengthiipotion", - "strstrongpotion": "strengthiipotion", - "strleveliipotion": "strengthiipotion", - "strengthiipot": "strengthiipotion", - "strengthstrongpot": "strengthiipotion", - "strengthleveliipot": "strengthiipotion", - "strongiipot": "strengthiipotion", - "strongstrongpot": "strengthiipotion", - "strongleveliipot": "strengthiipotion", - "striipot": "strengthiipotion", - "strstrongpot": "strengthiipotion", - "strleveliipot": "strengthiipotion", - "potionofstrengthii": "strengthiipotion", - "potionofstrengthstrong": "strengthiipotion", - "potionofstrengthlevelii": "strengthiipotion", - "potionofstrongii": "strengthiipotion", - "potionofstrongstrong": "strengthiipotion", - "potionofstronglevelii": "strengthiipotion", - "potionofstrii": "strengthiipotion", - "potionofstrstrong": "strengthiipotion", - "potionofstrlevelii": "strengthiipotion", - "potofstrengthii": "strengthiipotion", - "potofstrengthstrong": "strengthiipotion", - "potofstrengthlevelii": "strengthiipotion", - "potofstrongii": "strengthiipotion", - "potofstrongstrong": "strengthiipotion", - "potofstronglevelii": "strengthiipotion", - "potofstrii": "strengthiipotion", - "potofstrstrong": "strengthiipotion", - "potofstrlevelii": "strengthiipotion", - "splashstrengthiipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_strength", - "type": "STRENGTH", - "upgraded": true, - "extended": false - } - }, - "splashstrengthstrongpotion": "splashstrengthiipotion", - "splashstrengthleveliipotion": "splashstrengthiipotion", - "splashstrongiipotion": "splashstrengthiipotion", - "splashstrongstrongpotion": "splashstrengthiipotion", - "splashstrongleveliipotion": "splashstrengthiipotion", - "splashstriipotion": "splashstrengthiipotion", - "splashstrstrongpotion": "splashstrengthiipotion", - "splashstrleveliipotion": "splashstrengthiipotion", - "splstrengthiipotion": "splashstrengthiipotion", - "splstrengthstrongpotion": "splashstrengthiipotion", - "splstrengthleveliipotion": "splashstrengthiipotion", - "splstrongiipotion": "splashstrengthiipotion", - "splstrongstrongpotion": "splashstrengthiipotion", - "splstrongleveliipotion": "splashstrengthiipotion", - "splstriipotion": "splashstrengthiipotion", - "splstrstrongpotion": "splashstrengthiipotion", - "splstrleveliipotion": "splashstrengthiipotion", - "strengthiisplashpotion": "splashstrengthiipotion", - "strengthstrongsplashpotion": "splashstrengthiipotion", - "strengthleveliisplashpotion": "splashstrengthiipotion", - "strongiisplashpotion": "splashstrengthiipotion", - "strongstrongsplashpotion": "splashstrengthiipotion", - "strongleveliisplashpotion": "splashstrengthiipotion", - "striisplashpotion": "splashstrengthiipotion", - "strstrongsplashpotion": "splashstrengthiipotion", - "strleveliisplashpotion": "splashstrengthiipotion", - "splashstrengthiipot": "splashstrengthiipotion", - "splashstrengthstrongpot": "splashstrengthiipotion", - "splashstrengthleveliipot": "splashstrengthiipotion", - "splashstrongiipot": "splashstrengthiipotion", - "splashstrongstrongpot": "splashstrengthiipotion", - "splashstrongleveliipot": "splashstrengthiipotion", - "splashstriipot": "splashstrengthiipotion", - "splashstrstrongpot": "splashstrengthiipotion", - "splashstrleveliipot": "splashstrengthiipotion", - "splstrengthiipot": "splashstrengthiipotion", - "splstrengthstrongpot": "splashstrengthiipotion", - "splstrengthleveliipot": "splashstrengthiipotion", - "splstrongiipot": "splashstrengthiipotion", - "splstrongstrongpot": "splashstrengthiipotion", - "splstrongleveliipot": "splashstrengthiipotion", - "splstriipot": "splashstrengthiipotion", - "splstrstrongpot": "splashstrengthiipotion", - "splstrleveliipot": "splashstrengthiipotion", - "strengthiisplashpot": "splashstrengthiipotion", - "strengthstrongsplashpot": "splashstrengthiipotion", - "strengthleveliisplashpot": "splashstrengthiipotion", - "strongiisplashpot": "splashstrengthiipotion", - "strongstrongsplashpot": "splashstrengthiipotion", - "strongleveliisplashpot": "splashstrengthiipotion", - "striisplashpot": "splashstrengthiipotion", - "strstrongsplashpot": "splashstrengthiipotion", - "strleveliisplashpot": "splashstrengthiipotion", - "lingerpotstrengthii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_strength", - "type": "STRENGTH", - "upgraded": true, - "extended": false - } - }, - "lingerpotstrengthstrong": "lingerpotstrengthii", - "lingerpotstrengthlevelii": "lingerpotstrengthii", - "lingerpotstrongii": "lingerpotstrengthii", - "lingerpotstrongstrong": "lingerpotstrengthii", - "lingerpotstronglevelii": "lingerpotstrengthii", - "lingerpotstrii": "lingerpotstrengthii", - "lingerpotstrstrong": "lingerpotstrengthii", - "lingerpotstrlevelii": "lingerpotstrengthii", - "strengthlingerpotii": "lingerpotstrengthii", - "strengthlingerpotstrong": "lingerpotstrengthii", - "strengthlingerpotlevelii": "lingerpotstrengthii", - "stronglingerpotii": "lingerpotstrengthii", - "stronglingerpotstrong": "lingerpotstrengthii", - "stronglingerpotlevelii": "lingerpotstrengthii", - "strlingerpotii": "lingerpotstrengthii", - "strlingerpotstrong": "lingerpotstrengthii", - "strlingerpotlevelii": "lingerpotstrengthii", - "aoepotionstrengthii": "lingerpotstrengthii", - "aoepotionstrengthstrong": "lingerpotstrengthii", - "aoepotionstrengthlevelii": "lingerpotstrengthii", - "aoepotionstrongii": "lingerpotstrengthii", - "aoepotionstrongstrong": "lingerpotstrengthii", - "aoepotionstronglevelii": "lingerpotstrengthii", - "aoepotionstrii": "lingerpotstrengthii", - "aoepotionstrstrong": "lingerpotstrengthii", - "aoepotionstrlevelii": "lingerpotstrengthii", - "strengthaoepoiontii": "lingerpotstrengthii", - "strengthaoepoiontstrong": "lingerpotstrengthii", - "strengthaoepoiontlevelii": "lingerpotstrengthii", - "strongaoepoiontii": "lingerpotstrengthii", - "strongaoepoiontstrong": "lingerpotstrengthii", - "strongaoepoiontlevelii": "lingerpotstrengthii", - "straoepoiontii": "lingerpotstrengthii", - "straoepoiontstrong": "lingerpotstrengthii", - "straoepoiontlevelii": "lingerpotstrengthii", - "aoepotstrengthii": "lingerpotstrengthii", - "aoepotstrengthstrong": "lingerpotstrengthii", - "aoepotstrengthlevelii": "lingerpotstrengthii", - "aoepotstrongii": "lingerpotstrengthii", - "aoepotstrongstrong": "lingerpotstrengthii", - "aoepotstronglevelii": "lingerpotstrengthii", - "aoepotstrii": "lingerpotstrengthii", - "aoepotstrstrong": "lingerpotstrengthii", - "aoepotstrlevelii": "lingerpotstrengthii", - "strengthaoepotii": "lingerpotstrengthii", - "strengthaoepotstrong": "lingerpotstrengthii", - "strengthaoepotlevelii": "lingerpotstrengthii", - "strongaoepotii": "lingerpotstrengthii", - "strongaoepotstrong": "lingerpotstrengthii", - "strongaoepotlevelii": "lingerpotstrengthii", - "straoepotii": "lingerpotstrengthii", - "straoepotstrong": "lingerpotstrengthii", - "straoepotlevelii": "lingerpotstrengthii", - "areapotionstrengthii": "lingerpotstrengthii", - "areapotionstrengthstrong": "lingerpotstrengthii", - "areapotionstrengthlevelii": "lingerpotstrengthii", - "areapotionstrongii": "lingerpotstrengthii", - "areapotionstrongstrong": "lingerpotstrengthii", - "areapotionstronglevelii": "lingerpotstrengthii", - "areapotionstrii": "lingerpotstrengthii", - "areapotionstrstrong": "lingerpotstrengthii", - "areapotionstrlevelii": "lingerpotstrengthii", - "strengthareapotionii": "lingerpotstrengthii", - "strengthareapotionstrong": "lingerpotstrengthii", - "strengthareapotionlevelii": "lingerpotstrengthii", - "strongareapotionii": "lingerpotstrengthii", - "strongareapotionstrong": "lingerpotstrengthii", - "strongareapotionlevelii": "lingerpotstrengthii", - "strareapotionii": "lingerpotstrengthii", - "strareapotionstrong": "lingerpotstrengthii", - "strareapotionlevelii": "lingerpotstrengthii", - "areapotstrengthii": "lingerpotstrengthii", - "areapotstrengthstrong": "lingerpotstrengthii", - "areapotstrengthlevelii": "lingerpotstrengthii", - "areapotstrongii": "lingerpotstrengthii", - "areapotstrongstrong": "lingerpotstrengthii", - "areapotstronglevelii": "lingerpotstrengthii", - "areapotstrii": "lingerpotstrengthii", - "areapotstrstrong": "lingerpotstrengthii", - "areapotstrlevelii": "lingerpotstrengthii", - "strengthareapotii": "lingerpotstrengthii", - "strengthareapotstrong": "lingerpotstrengthii", - "strengthareapotlevelii": "lingerpotstrengthii", - "strongareapotii": "lingerpotstrengthii", - "strongareapotstrong": "lingerpotstrengthii", - "strongareapotlevelii": "lingerpotstrengthii", - "strareapotii": "lingerpotstrengthii", - "strareapotstrong": "lingerpotstrengthii", - "strareapotlevelii": "lingerpotstrengthii", - "cloudpotionstrengthii": "lingerpotstrengthii", - "cloudpotionstrengthstrong": "lingerpotstrengthii", - "cloudpotionstrengthlevelii": "lingerpotstrengthii", - "cloudpotionstrongii": "lingerpotstrengthii", - "cloudpotionstrongstrong": "lingerpotstrengthii", - "cloudpotionstronglevelii": "lingerpotstrengthii", - "cloudpotionstrii": "lingerpotstrengthii", - "cloudpotionstrstrong": "lingerpotstrengthii", - "cloudpotionstrlevelii": "lingerpotstrengthii", - "strengthcloudpotionii": "lingerpotstrengthii", - "strengthcloudpotionstrong": "lingerpotstrengthii", - "strengthcloudpotionlevelii": "lingerpotstrengthii", - "strongcloudpotionii": "lingerpotstrengthii", - "strongcloudpotionstrong": "lingerpotstrengthii", - "strongcloudpotionlevelii": "lingerpotstrengthii", - "strcloudpotionii": "lingerpotstrengthii", - "strcloudpotionstrong": "lingerpotstrengthii", - "strcloudpotionlevelii": "lingerpotstrengthii", - "cloudpotstrengthii": "lingerpotstrengthii", - "cloudpotstrengthstrong": "lingerpotstrengthii", - "cloudpotstrengthlevelii": "lingerpotstrengthii", - "cloudpotstrongii": "lingerpotstrengthii", - "cloudpotstrongstrong": "lingerpotstrengthii", - "cloudpotstronglevelii": "lingerpotstrengthii", - "cloudpotstrii": "lingerpotstrengthii", - "cloudpotstrstrong": "lingerpotstrengthii", - "cloudpotstrlevelii": "lingerpotstrengthii", - "strengthcloudpotii": "lingerpotstrengthii", - "strengthcloudpotstrong": "lingerpotstrengthii", - "strengthcloudpotlevelii": "lingerpotstrengthii", - "strongcloudpotii": "lingerpotstrengthii", - "strongcloudpotstrong": "lingerpotstrengthii", - "strongcloudpotlevelii": "lingerpotstrengthii", - "strcloudpotii": "lingerpotstrengthii", - "strcloudpotstrong": "lingerpotstrengthii", - "strcloudpotlevelii": "lingerpotstrengthii", - "arrowstrengthii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_strength", - "type": "STRENGTH", - "upgraded": true, - "extended": false - } - }, - "arrowstrengthstrong": "arrowstrengthii", - "arrowstrengthlevelii": "arrowstrengthii", - "arrowstrongii": "arrowstrengthii", - "arrowstrongstrong": "arrowstrengthii", - "arrowstronglevelii": "arrowstrengthii", - "arrowstrii": "arrowstrengthii", - "arrowstrstrong": "arrowstrengthii", - "arrowstrlevelii": "arrowstrengthii", - "strengtharrowii": "arrowstrengthii", - "strengtharrowstrong": "arrowstrengthii", - "strengtharrowlevelii": "arrowstrengthii", - "strongarrowii": "arrowstrengthii", - "strongarrowstrong": "arrowstrengthii", - "strongarrowlevelii": "arrowstrengthii", - "strarrowii": "arrowstrengthii", - "strarrowstrong": "arrowstrengthii", - "strarrowlevelii": "arrowstrengthii", - "strength2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_strength", - "type": "STRENGTH", - "upgraded": false, - "extended": true - } - }, - "strengthlongpotion": "strength2potion", - "strengthextendedpotion": "strength2potion", - "strengthexpotion": "strength2potion", - "strengthlevel2potion": "strength2potion", - "strong2potion": "strength2potion", - "stronglongpotion": "strength2potion", - "strongextendedpotion": "strength2potion", - "strongexpotion": "strength2potion", - "stronglevel2potion": "strength2potion", - "str2potion": "strength2potion", - "strlongpotion": "strength2potion", - "strextendedpotion": "strength2potion", - "strexpotion": "strength2potion", - "strlevel2potion": "strength2potion", - "strength2pot": "strength2potion", - "strengthlongpot": "strength2potion", - "strengthextendedpot": "strength2potion", - "strengthexpot": "strength2potion", - "strengthlevel2pot": "strength2potion", - "strong2pot": "strength2potion", - "stronglongpot": "strength2potion", - "strongextendedpot": "strength2potion", - "strongexpot": "strength2potion", - "stronglevel2pot": "strength2potion", - "str2pot": "strength2potion", - "strlongpot": "strength2potion", - "strextendedpot": "strength2potion", - "strexpot": "strength2potion", - "strlevel2pot": "strength2potion", - "potionofstrength2": "strength2potion", - "potionofstrengthlong": "strength2potion", - "potionofstrengthextended": "strength2potion", - "potionofstrengthex": "strength2potion", - "potionofstrengthlevel2": "strength2potion", - "potionofstrong2": "strength2potion", - "potionofstronglong": "strength2potion", - "potionofstrongextended": "strength2potion", - "potionofstrongex": "strength2potion", - "potionofstronglevel2": "strength2potion", - "potionofstr2": "strength2potion", - "potionofstrlong": "strength2potion", - "potionofstrextended": "strength2potion", - "potionofstrex": "strength2potion", - "potionofstrlevel2": "strength2potion", - "potofstrength2": "strength2potion", - "potofstrengthlong": "strength2potion", - "potofstrengthextended": "strength2potion", - "potofstrengthex": "strength2potion", - "potofstrengthlevel2": "strength2potion", - "potofstrong2": "strength2potion", - "potofstronglong": "strength2potion", - "potofstrongextended": "strength2potion", - "potofstrongex": "strength2potion", - "potofstronglevel2": "strength2potion", - "potofstr2": "strength2potion", - "potofstrlong": "strength2potion", - "potofstrextended": "strength2potion", - "potofstrex": "strength2potion", - "potofstrlevel2": "strength2potion", - "splashstrength2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_strength", - "type": "STRENGTH", - "upgraded": false, - "extended": true - } - }, - "splashstrengthlongpotion": "splashstrength2potion", - "splashstrengthextendedpotion": "splashstrength2potion", - "splashstrengthexpotion": "splashstrength2potion", - "splashstrengthlevel2potion": "splashstrength2potion", - "splashstrong2potion": "splashstrength2potion", - "splashstronglongpotion": "splashstrength2potion", - "splashstrongextendedpotion": "splashstrength2potion", - "splashstrongexpotion": "splashstrength2potion", - "splashstronglevel2potion": "splashstrength2potion", - "splashstr2potion": "splashstrength2potion", - "splashstrlongpotion": "splashstrength2potion", - "splashstrextendedpotion": "splashstrength2potion", - "splashstrexpotion": "splashstrength2potion", - "splashstrlevel2potion": "splashstrength2potion", - "splstrength2potion": "splashstrength2potion", - "splstrengthlongpotion": "splashstrength2potion", - "splstrengthextendedpotion": "splashstrength2potion", - "splstrengthexpotion": "splashstrength2potion", - "splstrengthlevel2potion": "splashstrength2potion", - "splstrong2potion": "splashstrength2potion", - "splstronglongpotion": "splashstrength2potion", - "splstrongextendedpotion": "splashstrength2potion", - "splstrongexpotion": "splashstrength2potion", - "splstronglevel2potion": "splashstrength2potion", - "splstr2potion": "splashstrength2potion", - "splstrlongpotion": "splashstrength2potion", - "splstrextendedpotion": "splashstrength2potion", - "splstrexpotion": "splashstrength2potion", - "splstrlevel2potion": "splashstrength2potion", - "strength2splashpotion": "splashstrength2potion", - "strengthlongsplashpotion": "splashstrength2potion", - "strengthextendedsplashpotion": "splashstrength2potion", - "strengthexsplashpotion": "splashstrength2potion", - "strengthlevel2splashpotion": "splashstrength2potion", - "strong2splashpotion": "splashstrength2potion", - "stronglongsplashpotion": "splashstrength2potion", - "strongextendedsplashpotion": "splashstrength2potion", - "strongexsplashpotion": "splashstrength2potion", - "stronglevel2splashpotion": "splashstrength2potion", - "str2splashpotion": "splashstrength2potion", - "strlongsplashpotion": "splashstrength2potion", - "strextendedsplashpotion": "splashstrength2potion", - "strexsplashpotion": "splashstrength2potion", - "strlevel2splashpotion": "splashstrength2potion", - "splashstrength2pot": "splashstrength2potion", - "splashstrengthlongpot": "splashstrength2potion", - "splashstrengthextendedpot": "splashstrength2potion", - "splashstrengthexpot": "splashstrength2potion", - "splashstrengthlevel2pot": "splashstrength2potion", - "splashstrong2pot": "splashstrength2potion", - "splashstronglongpot": "splashstrength2potion", - "splashstrongextendedpot": "splashstrength2potion", - "splashstrongexpot": "splashstrength2potion", - "splashstronglevel2pot": "splashstrength2potion", - "splashstr2pot": "splashstrength2potion", - "splashstrlongpot": "splashstrength2potion", - "splashstrextendedpot": "splashstrength2potion", - "splashstrexpot": "splashstrength2potion", - "splashstrlevel2pot": "splashstrength2potion", - "splstrength2pot": "splashstrength2potion", - "splstrengthlongpot": "splashstrength2potion", - "splstrengthextendedpot": "splashstrength2potion", - "splstrengthexpot": "splashstrength2potion", - "splstrengthlevel2pot": "splashstrength2potion", - "splstrong2pot": "splashstrength2potion", - "splstronglongpot": "splashstrength2potion", - "splstrongextendedpot": "splashstrength2potion", - "splstrongexpot": "splashstrength2potion", - "splstronglevel2pot": "splashstrength2potion", - "splstr2pot": "splashstrength2potion", - "splstrlongpot": "splashstrength2potion", - "splstrextendedpot": "splashstrength2potion", - "splstrexpot": "splashstrength2potion", - "splstrlevel2pot": "splashstrength2potion", - "strength2splashpot": "splashstrength2potion", - "strengthlongsplashpot": "splashstrength2potion", - "strengthextendedsplashpot": "splashstrength2potion", - "strengthexsplashpot": "splashstrength2potion", - "strengthlevel2splashpot": "splashstrength2potion", - "strong2splashpot": "splashstrength2potion", - "stronglongsplashpot": "splashstrength2potion", - "strongextendedsplashpot": "splashstrength2potion", - "strongexsplashpot": "splashstrength2potion", - "stronglevel2splashpot": "splashstrength2potion", - "str2splashpot": "splashstrength2potion", - "strlongsplashpot": "splashstrength2potion", - "strextendedsplashpot": "splashstrength2potion", - "strexsplashpot": "splashstrength2potion", - "strlevel2splashpot": "splashstrength2potion", - "lingerpotstrength2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_strength", - "type": "STRENGTH", - "upgraded": false, - "extended": true - } - }, - "lingerpotstrengthlong": "lingerpotstrength2", - "lingerpotstrengthextended": "lingerpotstrength2", - "lingerpotstrengthex": "lingerpotstrength2", - "lingerpotstrengthlevel2": "lingerpotstrength2", - "lingerpotstrong2": "lingerpotstrength2", - "lingerpotstronglong": "lingerpotstrength2", - "lingerpotstrongextended": "lingerpotstrength2", - "lingerpotstrongex": "lingerpotstrength2", - "lingerpotstronglevel2": "lingerpotstrength2", - "lingerpotstr2": "lingerpotstrength2", - "lingerpotstrlong": "lingerpotstrength2", - "lingerpotstrextended": "lingerpotstrength2", - "lingerpotstrex": "lingerpotstrength2", - "lingerpotstrlevel2": "lingerpotstrength2", - "strengthlingerpot2": "lingerpotstrength2", - "strengthlingerpotlong": "lingerpotstrength2", - "strengthlingerpotextended": "lingerpotstrength2", - "strengthlingerpotex": "lingerpotstrength2", - "strengthlingerpotlevel2": "lingerpotstrength2", - "stronglingerpot2": "lingerpotstrength2", - "stronglingerpotlong": "lingerpotstrength2", - "stronglingerpotextended": "lingerpotstrength2", - "stronglingerpotex": "lingerpotstrength2", - "stronglingerpotlevel2": "lingerpotstrength2", - "strlingerpot2": "lingerpotstrength2", - "strlingerpotlong": "lingerpotstrength2", - "strlingerpotextended": "lingerpotstrength2", - "strlingerpotex": "lingerpotstrength2", - "strlingerpotlevel2": "lingerpotstrength2", - "aoepotionstrength2": "lingerpotstrength2", - "aoepotionstrengthlong": "lingerpotstrength2", - "aoepotionstrengthextended": "lingerpotstrength2", - "aoepotionstrengthex": "lingerpotstrength2", - "aoepotionstrengthlevel2": "lingerpotstrength2", - "aoepotionstrong2": "lingerpotstrength2", - "aoepotionstronglong": "lingerpotstrength2", - "aoepotionstrongextended": "lingerpotstrength2", - "aoepotionstrongex": "lingerpotstrength2", - "aoepotionstronglevel2": "lingerpotstrength2", - "aoepotionstr2": "lingerpotstrength2", - "aoepotionstrlong": "lingerpotstrength2", - "aoepotionstrextended": "lingerpotstrength2", - "aoepotionstrex": "lingerpotstrength2", - "aoepotionstrlevel2": "lingerpotstrength2", - "strengthaoepoiont2": "lingerpotstrength2", - "strengthaoepoiontlong": "lingerpotstrength2", - "strengthaoepoiontextended": "lingerpotstrength2", - "strengthaoepoiontex": "lingerpotstrength2", - "strengthaoepoiontlevel2": "lingerpotstrength2", - "strongaoepoiont2": "lingerpotstrength2", - "strongaoepoiontlong": "lingerpotstrength2", - "strongaoepoiontextended": "lingerpotstrength2", - "strongaoepoiontex": "lingerpotstrength2", - "strongaoepoiontlevel2": "lingerpotstrength2", - "straoepoiont2": "lingerpotstrength2", - "straoepoiontlong": "lingerpotstrength2", - "straoepoiontextended": "lingerpotstrength2", - "straoepoiontex": "lingerpotstrength2", - "straoepoiontlevel2": "lingerpotstrength2", - "aoepotstrength2": "lingerpotstrength2", - "aoepotstrengthlong": "lingerpotstrength2", - "aoepotstrengthextended": "lingerpotstrength2", - "aoepotstrengthex": "lingerpotstrength2", - "aoepotstrengthlevel2": "lingerpotstrength2", - "aoepotstrong2": "lingerpotstrength2", - "aoepotstronglong": "lingerpotstrength2", - "aoepotstrongextended": "lingerpotstrength2", - "aoepotstrongex": "lingerpotstrength2", - "aoepotstronglevel2": "lingerpotstrength2", - "aoepotstr2": "lingerpotstrength2", - "aoepotstrlong": "lingerpotstrength2", - "aoepotstrextended": "lingerpotstrength2", - "aoepotstrex": "lingerpotstrength2", - "aoepotstrlevel2": "lingerpotstrength2", - "strengthaoepot2": "lingerpotstrength2", - "strengthaoepotlong": "lingerpotstrength2", - "strengthaoepotextended": "lingerpotstrength2", - "strengthaoepotex": "lingerpotstrength2", - "strengthaoepotlevel2": "lingerpotstrength2", - "strongaoepot2": "lingerpotstrength2", - "strongaoepotlong": "lingerpotstrength2", - "strongaoepotextended": "lingerpotstrength2", - "strongaoepotex": "lingerpotstrength2", - "strongaoepotlevel2": "lingerpotstrength2", - "straoepot2": "lingerpotstrength2", - "straoepotlong": "lingerpotstrength2", - "straoepotextended": "lingerpotstrength2", - "straoepotex": "lingerpotstrength2", - "straoepotlevel2": "lingerpotstrength2", - "areapotionstrength2": "lingerpotstrength2", - "areapotionstrengthlong": "lingerpotstrength2", - "areapotionstrengthextended": "lingerpotstrength2", - "areapotionstrengthex": "lingerpotstrength2", - "areapotionstrengthlevel2": "lingerpotstrength2", - "areapotionstrong2": "lingerpotstrength2", - "areapotionstronglong": "lingerpotstrength2", - "areapotionstrongextended": "lingerpotstrength2", - "areapotionstrongex": "lingerpotstrength2", - "areapotionstronglevel2": "lingerpotstrength2", - "areapotionstr2": "lingerpotstrength2", - "areapotionstrlong": "lingerpotstrength2", - "areapotionstrextended": "lingerpotstrength2", - "areapotionstrex": "lingerpotstrength2", - "areapotionstrlevel2": "lingerpotstrength2", - "strengthareapotion2": "lingerpotstrength2", - "strengthareapotionlong": "lingerpotstrength2", - "strengthareapotionextended": "lingerpotstrength2", - "strengthareapotionex": "lingerpotstrength2", - "strengthareapotionlevel2": "lingerpotstrength2", - "strongareapotion2": "lingerpotstrength2", - "strongareapotionlong": "lingerpotstrength2", - "strongareapotionextended": "lingerpotstrength2", - "strongareapotionex": "lingerpotstrength2", - "strongareapotionlevel2": "lingerpotstrength2", - "strareapotion2": "lingerpotstrength2", - "strareapotionlong": "lingerpotstrength2", - "strareapotionextended": "lingerpotstrength2", - "strareapotionex": "lingerpotstrength2", - "strareapotionlevel2": "lingerpotstrength2", - "areapotstrength2": "lingerpotstrength2", - "areapotstrengthlong": "lingerpotstrength2", - "areapotstrengthextended": "lingerpotstrength2", - "areapotstrengthex": "lingerpotstrength2", - "areapotstrengthlevel2": "lingerpotstrength2", - "areapotstrong2": "lingerpotstrength2", - "areapotstronglong": "lingerpotstrength2", - "areapotstrongextended": "lingerpotstrength2", - "areapotstrongex": "lingerpotstrength2", - "areapotstronglevel2": "lingerpotstrength2", - "areapotstr2": "lingerpotstrength2", - "areapotstrlong": "lingerpotstrength2", - "areapotstrextended": "lingerpotstrength2", - "areapotstrex": "lingerpotstrength2", - "areapotstrlevel2": "lingerpotstrength2", - "strengthareapot2": "lingerpotstrength2", - "strengthareapotlong": "lingerpotstrength2", - "strengthareapotextended": "lingerpotstrength2", - "strengthareapotex": "lingerpotstrength2", - "strengthareapotlevel2": "lingerpotstrength2", - "strongareapot2": "lingerpotstrength2", - "strongareapotlong": "lingerpotstrength2", - "strongareapotextended": "lingerpotstrength2", - "strongareapotex": "lingerpotstrength2", - "strongareapotlevel2": "lingerpotstrength2", - "strareapot2": "lingerpotstrength2", - "strareapotlong": "lingerpotstrength2", - "strareapotextended": "lingerpotstrength2", - "strareapotex": "lingerpotstrength2", - "strareapotlevel2": "lingerpotstrength2", - "cloudpotionstrength2": "lingerpotstrength2", - "cloudpotionstrengthlong": "lingerpotstrength2", - "cloudpotionstrengthextended": "lingerpotstrength2", - "cloudpotionstrengthex": "lingerpotstrength2", - "cloudpotionstrengthlevel2": "lingerpotstrength2", - "cloudpotionstrong2": "lingerpotstrength2", - "cloudpotionstronglong": "lingerpotstrength2", - "cloudpotionstrongextended": "lingerpotstrength2", - "cloudpotionstrongex": "lingerpotstrength2", - "cloudpotionstronglevel2": "lingerpotstrength2", - "cloudpotionstr2": "lingerpotstrength2", - "cloudpotionstrlong": "lingerpotstrength2", - "cloudpotionstrextended": "lingerpotstrength2", - "cloudpotionstrex": "lingerpotstrength2", - "cloudpotionstrlevel2": "lingerpotstrength2", - "strengthcloudpotion2": "lingerpotstrength2", - "strengthcloudpotionlong": "lingerpotstrength2", - "strengthcloudpotionextended": "lingerpotstrength2", - "strengthcloudpotionex": "lingerpotstrength2", - "strengthcloudpotionlevel2": "lingerpotstrength2", - "strongcloudpotion2": "lingerpotstrength2", - "strongcloudpotionlong": "lingerpotstrength2", - "strongcloudpotionextended": "lingerpotstrength2", - "strongcloudpotionex": "lingerpotstrength2", - "strongcloudpotionlevel2": "lingerpotstrength2", - "strcloudpotion2": "lingerpotstrength2", - "strcloudpotionlong": "lingerpotstrength2", - "strcloudpotionextended": "lingerpotstrength2", - "strcloudpotionex": "lingerpotstrength2", - "strcloudpotionlevel2": "lingerpotstrength2", - "cloudpotstrength2": "lingerpotstrength2", - "cloudpotstrengthlong": "lingerpotstrength2", - "cloudpotstrengthextended": "lingerpotstrength2", - "cloudpotstrengthex": "lingerpotstrength2", - "cloudpotstrengthlevel2": "lingerpotstrength2", - "cloudpotstrong2": "lingerpotstrength2", - "cloudpotstronglong": "lingerpotstrength2", - "cloudpotstrongextended": "lingerpotstrength2", - "cloudpotstrongex": "lingerpotstrength2", - "cloudpotstronglevel2": "lingerpotstrength2", - "cloudpotstr2": "lingerpotstrength2", - "cloudpotstrlong": "lingerpotstrength2", - "cloudpotstrextended": "lingerpotstrength2", - "cloudpotstrex": "lingerpotstrength2", - "cloudpotstrlevel2": "lingerpotstrength2", - "strengthcloudpot2": "lingerpotstrength2", - "strengthcloudpotlong": "lingerpotstrength2", - "strengthcloudpotextended": "lingerpotstrength2", - "strengthcloudpotex": "lingerpotstrength2", - "strengthcloudpotlevel2": "lingerpotstrength2", - "strongcloudpot2": "lingerpotstrength2", - "strongcloudpotlong": "lingerpotstrength2", - "strongcloudpotextended": "lingerpotstrength2", - "strongcloudpotex": "lingerpotstrength2", - "strongcloudpotlevel2": "lingerpotstrength2", - "strcloudpot2": "lingerpotstrength2", - "strcloudpotlong": "lingerpotstrength2", - "strcloudpotextended": "lingerpotstrength2", - "strcloudpotex": "lingerpotstrength2", - "strcloudpotlevel2": "lingerpotstrength2", - "arrowstrength2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_strength", - "type": "STRENGTH", - "upgraded": false, - "extended": true - } - }, - "arrowstrengthlong": "arrowstrength2", - "arrowstrengthextended": "arrowstrength2", - "arrowstrengthex": "arrowstrength2", - "arrowstrengthlevel2": "arrowstrength2", - "arrowstrong2": "arrowstrength2", - "arrowstronglong": "arrowstrength2", - "arrowstrongextended": "arrowstrength2", - "arrowstrongex": "arrowstrength2", - "arrowstronglevel2": "arrowstrength2", - "arrowstr2": "arrowstrength2", - "arrowstrlong": "arrowstrength2", - "arrowstrextended": "arrowstrength2", - "arrowstrex": "arrowstrength2", - "arrowstrlevel2": "arrowstrength2", - "strengtharrow2": "arrowstrength2", - "strengtharrowlong": "arrowstrength2", - "strengtharrowextended": "arrowstrength2", - "strengtharrowex": "arrowstrength2", - "strengtharrowlevel2": "arrowstrength2", - "strongarrow2": "arrowstrength2", - "strongarrowlong": "arrowstrength2", - "strongarrowextended": "arrowstrength2", - "strongarrowex": "arrowstrength2", - "strongarrowlevel2": "arrowstrength2", - "strarrow2": "arrowstrength2", - "strarrowlong": "arrowstrength2", - "strarrowextended": "arrowstrength2", - "strarrowex": "arrowstrength2", - "strarrowlevel2": "arrowstrength2", - "weaknesspotion": { - "material": "POTION", - "potionData": { - "vanillaType": "weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": false - } - }, - "weakpotion": "weaknesspotion", - "wepotion": "weaknesspotion", - "weaknesspot": "weaknesspotion", - "weakpot": "weaknesspotion", - "wepot": "weaknesspotion", - "potionofweakness": "weaknesspotion", - "potionofweak": "weaknesspotion", - "potionofwe": "weaknesspotion", - "potofweakness": "weaknesspotion", - "potofweak": "weaknesspotion", - "potofwe": "weaknesspotion", - "splashweaknesspotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": false - } - }, - "splashweakpotion": "splashweaknesspotion", - "splashwepotion": "splashweaknesspotion", - "splweaknesspotion": "splashweaknesspotion", - "splweakpotion": "splashweaknesspotion", - "splwepotion": "splashweaknesspotion", - "weaknesssplashpotion": "splashweaknesspotion", - "weaksplashpotion": "splashweaknesspotion", - "wesplashpotion": "splashweaknesspotion", - "splashweaknesspot": "splashweaknesspotion", - "splashweakpot": "splashweaknesspotion", - "splashwepot": "splashweaknesspotion", - "splweaknesspot": "splashweaknesspotion", - "splweakpot": "splashweaknesspotion", - "splwepot": "splashweaknesspotion", - "weaknesssplashpot": "splashweaknesspotion", - "weaksplashpot": "splashweaknesspotion", - "wesplashpot": "splashweaknesspotion", - "lingerpotweakness": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": false - } - }, - "lingerpotweak": "lingerpotweakness", - "lingerpotwe": "lingerpotweakness", - "weaknesslingerpot": "lingerpotweakness", - "weaklingerpot": "lingerpotweakness", - "welingerpot": "lingerpotweakness", - "aoepotionweakness": "lingerpotweakness", - "aoepotionweak": "lingerpotweakness", - "aoepotionwe": "lingerpotweakness", - "weaknessaoepoiont": "lingerpotweakness", - "weakaoepoiont": "lingerpotweakness", - "weaoepoiont": "lingerpotweakness", - "aoepotweakness": "lingerpotweakness", - "aoepotweak": "lingerpotweakness", - "aoepotwe": "lingerpotweakness", - "weaknessaoepot": "lingerpotweakness", - "weakaoepot": "lingerpotweakness", - "weaoepot": "lingerpotweakness", - "areapotionweakness": "lingerpotweakness", - "areapotionweak": "lingerpotweakness", - "areapotionwe": "lingerpotweakness", - "weaknessareapotion": "lingerpotweakness", - "weakareapotion": "lingerpotweakness", - "weareapotion": "lingerpotweakness", - "areapotweakness": "lingerpotweakness", - "areapotweak": "lingerpotweakness", - "areapotwe": "lingerpotweakness", - "weaknessareapot": "lingerpotweakness", - "weakareapot": "lingerpotweakness", - "weareapot": "lingerpotweakness", - "cloudpotionweakness": "lingerpotweakness", - "cloudpotionweak": "lingerpotweakness", - "cloudpotionwe": "lingerpotweakness", - "weaknesscloudpotion": "lingerpotweakness", - "weakcloudpotion": "lingerpotweakness", - "wecloudpotion": "lingerpotweakness", - "cloudpotweakness": "lingerpotweakness", - "cloudpotweak": "lingerpotweakness", - "cloudpotwe": "lingerpotweakness", - "weaknesscloudpot": "lingerpotweakness", - "weakcloudpot": "lingerpotweakness", - "wecloudpot": "lingerpotweakness", - "arrowweakness": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": false - } - }, - "arrowweak": "arrowweakness", - "arrowwe": "arrowweakness", - "weaknessarrow": "arrowweakness", - "weakarrow": "arrowweakness", - "wearrow": "arrowweakness", - "weakness2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": true - } - }, - "weaknesslongpotion": "weakness2potion", - "weaknessextendedpotion": "weakness2potion", - "weaknessexpotion": "weakness2potion", - "weaknesslevel2potion": "weakness2potion", - "weak2potion": "weakness2potion", - "weaklongpotion": "weakness2potion", - "weakextendedpotion": "weakness2potion", - "weakexpotion": "weakness2potion", - "weaklevel2potion": "weakness2potion", - "we2potion": "weakness2potion", - "welongpotion": "weakness2potion", - "weextendedpotion": "weakness2potion", - "weexpotion": "weakness2potion", - "welevel2potion": "weakness2potion", - "weakness2pot": "weakness2potion", - "weaknesslongpot": "weakness2potion", - "weaknessextendedpot": "weakness2potion", - "weaknessexpot": "weakness2potion", - "weaknesslevel2pot": "weakness2potion", - "weak2pot": "weakness2potion", - "weaklongpot": "weakness2potion", - "weakextendedpot": "weakness2potion", - "weakexpot": "weakness2potion", - "weaklevel2pot": "weakness2potion", - "we2pot": "weakness2potion", - "welongpot": "weakness2potion", - "weextendedpot": "weakness2potion", - "weexpot": "weakness2potion", - "welevel2pot": "weakness2potion", - "potionofweakness2": "weakness2potion", - "potionofweaknesslong": "weakness2potion", - "potionofweaknessextended": "weakness2potion", - "potionofweaknessex": "weakness2potion", - "potionofweaknesslevel2": "weakness2potion", - "potionofweak2": "weakness2potion", - "potionofweaklong": "weakness2potion", - "potionofweakextended": "weakness2potion", - "potionofweakex": "weakness2potion", - "potionofweaklevel2": "weakness2potion", - "potionofwe2": "weakness2potion", - "potionofwelong": "weakness2potion", - "potionofweextended": "weakness2potion", - "potionofweex": "weakness2potion", - "potionofwelevel2": "weakness2potion", - "potofweakness2": "weakness2potion", - "potofweaknesslong": "weakness2potion", - "potofweaknessextended": "weakness2potion", - "potofweaknessex": "weakness2potion", - "potofweaknesslevel2": "weakness2potion", - "potofweak2": "weakness2potion", - "potofweaklong": "weakness2potion", - "potofweakextended": "weakness2potion", - "potofweakex": "weakness2potion", - "potofweaklevel2": "weakness2potion", - "potofwe2": "weakness2potion", - "potofwelong": "weakness2potion", - "potofweextended": "weakness2potion", - "potofweex": "weakness2potion", - "potofwelevel2": "weakness2potion", - "splashweakness2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": true - } - }, - "splashweaknesslongpotion": "splashweakness2potion", - "splashweaknessextendedpotion": "splashweakness2potion", - "splashweaknessexpotion": "splashweakness2potion", - "splashweaknesslevel2potion": "splashweakness2potion", - "splashweak2potion": "splashweakness2potion", - "splashweaklongpotion": "splashweakness2potion", - "splashweakextendedpotion": "splashweakness2potion", - "splashweakexpotion": "splashweakness2potion", - "splashweaklevel2potion": "splashweakness2potion", - "splashwe2potion": "splashweakness2potion", - "splashwelongpotion": "splashweakness2potion", - "splashweextendedpotion": "splashweakness2potion", - "splashweexpotion": "splashweakness2potion", - "splashwelevel2potion": "splashweakness2potion", - "splweakness2potion": "splashweakness2potion", - "splweaknesslongpotion": "splashweakness2potion", - "splweaknessextendedpotion": "splashweakness2potion", - "splweaknessexpotion": "splashweakness2potion", - "splweaknesslevel2potion": "splashweakness2potion", - "splweak2potion": "splashweakness2potion", - "splweaklongpotion": "splashweakness2potion", - "splweakextendedpotion": "splashweakness2potion", - "splweakexpotion": "splashweakness2potion", - "splweaklevel2potion": "splashweakness2potion", - "splwe2potion": "splashweakness2potion", - "splwelongpotion": "splashweakness2potion", - "splweextendedpotion": "splashweakness2potion", - "splweexpotion": "splashweakness2potion", - "splwelevel2potion": "splashweakness2potion", - "weakness2splashpotion": "splashweakness2potion", - "weaknesslongsplashpotion": "splashweakness2potion", - "weaknessextendedsplashpotion": "splashweakness2potion", - "weaknessexsplashpotion": "splashweakness2potion", - "weaknesslevel2splashpotion": "splashweakness2potion", - "weak2splashpotion": "splashweakness2potion", - "weaklongsplashpotion": "splashweakness2potion", - "weakextendedsplashpotion": "splashweakness2potion", - "weakexsplashpotion": "splashweakness2potion", - "weaklevel2splashpotion": "splashweakness2potion", - "we2splashpotion": "splashweakness2potion", - "welongsplashpotion": "splashweakness2potion", - "weextendedsplashpotion": "splashweakness2potion", - "weexsplashpotion": "splashweakness2potion", - "welevel2splashpotion": "splashweakness2potion", - "splashweakness2pot": "splashweakness2potion", - "splashweaknesslongpot": "splashweakness2potion", - "splashweaknessextendedpot": "splashweakness2potion", - "splashweaknessexpot": "splashweakness2potion", - "splashweaknesslevel2pot": "splashweakness2potion", - "splashweak2pot": "splashweakness2potion", - "splashweaklongpot": "splashweakness2potion", - "splashweakextendedpot": "splashweakness2potion", - "splashweakexpot": "splashweakness2potion", - "splashweaklevel2pot": "splashweakness2potion", - "splashwe2pot": "splashweakness2potion", - "splashwelongpot": "splashweakness2potion", - "splashweextendedpot": "splashweakness2potion", - "splashweexpot": "splashweakness2potion", - "splashwelevel2pot": "splashweakness2potion", - "splweakness2pot": "splashweakness2potion", - "splweaknesslongpot": "splashweakness2potion", - "splweaknessextendedpot": "splashweakness2potion", - "splweaknessexpot": "splashweakness2potion", - "splweaknesslevel2pot": "splashweakness2potion", - "splweak2pot": "splashweakness2potion", - "splweaklongpot": "splashweakness2potion", - "splweakextendedpot": "splashweakness2potion", - "splweakexpot": "splashweakness2potion", - "splweaklevel2pot": "splashweakness2potion", - "splwe2pot": "splashweakness2potion", - "splwelongpot": "splashweakness2potion", - "splweextendedpot": "splashweakness2potion", - "splweexpot": "splashweakness2potion", - "splwelevel2pot": "splashweakness2potion", - "weakness2splashpot": "splashweakness2potion", - "weaknesslongsplashpot": "splashweakness2potion", - "weaknessextendedsplashpot": "splashweakness2potion", - "weaknessexsplashpot": "splashweakness2potion", - "weaknesslevel2splashpot": "splashweakness2potion", - "weak2splashpot": "splashweakness2potion", - "weaklongsplashpot": "splashweakness2potion", - "weakextendedsplashpot": "splashweakness2potion", - "weakexsplashpot": "splashweakness2potion", - "weaklevel2splashpot": "splashweakness2potion", - "we2splashpot": "splashweakness2potion", - "welongsplashpot": "splashweakness2potion", - "weextendedsplashpot": "splashweakness2potion", - "weexsplashpot": "splashweakness2potion", - "welevel2splashpot": "splashweakness2potion", - "lingerpotweakness2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": true - } - }, - "lingerpotweaknesslong": "lingerpotweakness2", - "lingerpotweaknessextended": "lingerpotweakness2", - "lingerpotweaknessex": "lingerpotweakness2", - "lingerpotweaknesslevel2": "lingerpotweakness2", - "lingerpotweak2": "lingerpotweakness2", - "lingerpotweaklong": "lingerpotweakness2", - "lingerpotweakextended": "lingerpotweakness2", - "lingerpotweakex": "lingerpotweakness2", - "lingerpotweaklevel2": "lingerpotweakness2", - "lingerpotwe2": "lingerpotweakness2", - "lingerpotwelong": "lingerpotweakness2", - "lingerpotweextended": "lingerpotweakness2", - "lingerpotweex": "lingerpotweakness2", - "lingerpotwelevel2": "lingerpotweakness2", - "weaknesslingerpot2": "lingerpotweakness2", - "weaknesslingerpotlong": "lingerpotweakness2", - "weaknesslingerpotextended": "lingerpotweakness2", - "weaknesslingerpotex": "lingerpotweakness2", - "weaknesslingerpotlevel2": "lingerpotweakness2", - "weaklingerpot2": "lingerpotweakness2", - "weaklingerpotlong": "lingerpotweakness2", - "weaklingerpotextended": "lingerpotweakness2", - "weaklingerpotex": "lingerpotweakness2", - "weaklingerpotlevel2": "lingerpotweakness2", - "welingerpot2": "lingerpotweakness2", - "welingerpotlong": "lingerpotweakness2", - "welingerpotextended": "lingerpotweakness2", - "welingerpotex": "lingerpotweakness2", - "welingerpotlevel2": "lingerpotweakness2", - "aoepotionweakness2": "lingerpotweakness2", - "aoepotionweaknesslong": "lingerpotweakness2", - "aoepotionweaknessextended": "lingerpotweakness2", - "aoepotionweaknessex": "lingerpotweakness2", - "aoepotionweaknesslevel2": "lingerpotweakness2", - "aoepotionweak2": "lingerpotweakness2", - "aoepotionweaklong": "lingerpotweakness2", - "aoepotionweakextended": "lingerpotweakness2", - "aoepotionweakex": "lingerpotweakness2", - "aoepotionweaklevel2": "lingerpotweakness2", - "aoepotionwe2": "lingerpotweakness2", - "aoepotionwelong": "lingerpotweakness2", - "aoepotionweextended": "lingerpotweakness2", - "aoepotionweex": "lingerpotweakness2", - "aoepotionwelevel2": "lingerpotweakness2", - "weaknessaoepoiont2": "lingerpotweakness2", - "weaknessaoepoiontlong": "lingerpotweakness2", - "weaknessaoepoiontextended": "lingerpotweakness2", - "weaknessaoepoiontex": "lingerpotweakness2", - "weaknessaoepoiontlevel2": "lingerpotweakness2", - "weakaoepoiont2": "lingerpotweakness2", - "weakaoepoiontlong": "lingerpotweakness2", - "weakaoepoiontextended": "lingerpotweakness2", - "weakaoepoiontex": "lingerpotweakness2", - "weakaoepoiontlevel2": "lingerpotweakness2", - "weaoepoiont2": "lingerpotweakness2", - "weaoepoiontlong": "lingerpotweakness2", - "weaoepoiontextended": "lingerpotweakness2", - "weaoepoiontex": "lingerpotweakness2", - "weaoepoiontlevel2": "lingerpotweakness2", - "aoepotweakness2": "lingerpotweakness2", - "aoepotweaknesslong": "lingerpotweakness2", - "aoepotweaknessextended": "lingerpotweakness2", - "aoepotweaknessex": "lingerpotweakness2", - "aoepotweaknesslevel2": "lingerpotweakness2", - "aoepotweak2": "lingerpotweakness2", - "aoepotweaklong": "lingerpotweakness2", - "aoepotweakextended": "lingerpotweakness2", - "aoepotweakex": "lingerpotweakness2", - "aoepotweaklevel2": "lingerpotweakness2", - "aoepotwe2": "lingerpotweakness2", - "aoepotwelong": "lingerpotweakness2", - "aoepotweextended": "lingerpotweakness2", - "aoepotweex": "lingerpotweakness2", - "aoepotwelevel2": "lingerpotweakness2", - "weaknessaoepot2": "lingerpotweakness2", - "weaknessaoepotlong": "lingerpotweakness2", - "weaknessaoepotextended": "lingerpotweakness2", - "weaknessaoepotex": "lingerpotweakness2", - "weaknessaoepotlevel2": "lingerpotweakness2", - "weakaoepot2": "lingerpotweakness2", - "weakaoepotlong": "lingerpotweakness2", - "weakaoepotextended": "lingerpotweakness2", - "weakaoepotex": "lingerpotweakness2", - "weakaoepotlevel2": "lingerpotweakness2", - "weaoepot2": "lingerpotweakness2", - "weaoepotlong": "lingerpotweakness2", - "weaoepotextended": "lingerpotweakness2", - "weaoepotex": "lingerpotweakness2", - "weaoepotlevel2": "lingerpotweakness2", - "areapotionweakness2": "lingerpotweakness2", - "areapotionweaknesslong": "lingerpotweakness2", - "areapotionweaknessextended": "lingerpotweakness2", - "areapotionweaknessex": "lingerpotweakness2", - "areapotionweaknesslevel2": "lingerpotweakness2", - "areapotionweak2": "lingerpotweakness2", - "areapotionweaklong": "lingerpotweakness2", - "areapotionweakextended": "lingerpotweakness2", - "areapotionweakex": "lingerpotweakness2", - "areapotionweaklevel2": "lingerpotweakness2", - "areapotionwe2": "lingerpotweakness2", - "areapotionwelong": "lingerpotweakness2", - "areapotionweextended": "lingerpotweakness2", - "areapotionweex": "lingerpotweakness2", - "areapotionwelevel2": "lingerpotweakness2", - "weaknessareapotion2": "lingerpotweakness2", - "weaknessareapotionlong": "lingerpotweakness2", - "weaknessareapotionextended": "lingerpotweakness2", - "weaknessareapotionex": "lingerpotweakness2", - "weaknessareapotionlevel2": "lingerpotweakness2", - "weakareapotion2": "lingerpotweakness2", - "weakareapotionlong": "lingerpotweakness2", - "weakareapotionextended": "lingerpotweakness2", - "weakareapotionex": "lingerpotweakness2", - "weakareapotionlevel2": "lingerpotweakness2", - "weareapotion2": "lingerpotweakness2", - "weareapotionlong": "lingerpotweakness2", - "weareapotionextended": "lingerpotweakness2", - "weareapotionex": "lingerpotweakness2", - "weareapotionlevel2": "lingerpotweakness2", - "areapotweakness2": "lingerpotweakness2", - "areapotweaknesslong": "lingerpotweakness2", - "areapotweaknessextended": "lingerpotweakness2", - "areapotweaknessex": "lingerpotweakness2", - "areapotweaknesslevel2": "lingerpotweakness2", - "areapotweak2": "lingerpotweakness2", - "areapotweaklong": "lingerpotweakness2", - "areapotweakextended": "lingerpotweakness2", - "areapotweakex": "lingerpotweakness2", - "areapotweaklevel2": "lingerpotweakness2", - "areapotwe2": "lingerpotweakness2", - "areapotwelong": "lingerpotweakness2", - "areapotweextended": "lingerpotweakness2", - "areapotweex": "lingerpotweakness2", - "areapotwelevel2": "lingerpotweakness2", - "weaknessareapot2": "lingerpotweakness2", - "weaknessareapotlong": "lingerpotweakness2", - "weaknessareapotextended": "lingerpotweakness2", - "weaknessareapotex": "lingerpotweakness2", - "weaknessareapotlevel2": "lingerpotweakness2", - "weakareapot2": "lingerpotweakness2", - "weakareapotlong": "lingerpotweakness2", - "weakareapotextended": "lingerpotweakness2", - "weakareapotex": "lingerpotweakness2", - "weakareapotlevel2": "lingerpotweakness2", - "weareapot2": "lingerpotweakness2", - "weareapotlong": "lingerpotweakness2", - "weareapotextended": "lingerpotweakness2", - "weareapotex": "lingerpotweakness2", - "weareapotlevel2": "lingerpotweakness2", - "cloudpotionweakness2": "lingerpotweakness2", - "cloudpotionweaknesslong": "lingerpotweakness2", - "cloudpotionweaknessextended": "lingerpotweakness2", - "cloudpotionweaknessex": "lingerpotweakness2", - "cloudpotionweaknesslevel2": "lingerpotweakness2", - "cloudpotionweak2": "lingerpotweakness2", - "cloudpotionweaklong": "lingerpotweakness2", - "cloudpotionweakextended": "lingerpotweakness2", - "cloudpotionweakex": "lingerpotweakness2", - "cloudpotionweaklevel2": "lingerpotweakness2", - "cloudpotionwe2": "lingerpotweakness2", - "cloudpotionwelong": "lingerpotweakness2", - "cloudpotionweextended": "lingerpotweakness2", - "cloudpotionweex": "lingerpotweakness2", - "cloudpotionwelevel2": "lingerpotweakness2", - "weaknesscloudpotion2": "lingerpotweakness2", - "weaknesscloudpotionlong": "lingerpotweakness2", - "weaknesscloudpotionextended": "lingerpotweakness2", - "weaknesscloudpotionex": "lingerpotweakness2", - "weaknesscloudpotionlevel2": "lingerpotweakness2", - "weakcloudpotion2": "lingerpotweakness2", - "weakcloudpotionlong": "lingerpotweakness2", - "weakcloudpotionextended": "lingerpotweakness2", - "weakcloudpotionex": "lingerpotweakness2", - "weakcloudpotionlevel2": "lingerpotweakness2", - "wecloudpotion2": "lingerpotweakness2", - "wecloudpotionlong": "lingerpotweakness2", - "wecloudpotionextended": "lingerpotweakness2", - "wecloudpotionex": "lingerpotweakness2", - "wecloudpotionlevel2": "lingerpotweakness2", - "cloudpotweakness2": "lingerpotweakness2", - "cloudpotweaknesslong": "lingerpotweakness2", - "cloudpotweaknessextended": "lingerpotweakness2", - "cloudpotweaknessex": "lingerpotweakness2", - "cloudpotweaknesslevel2": "lingerpotweakness2", - "cloudpotweak2": "lingerpotweakness2", - "cloudpotweaklong": "lingerpotweakness2", - "cloudpotweakextended": "lingerpotweakness2", - "cloudpotweakex": "lingerpotweakness2", - "cloudpotweaklevel2": "lingerpotweakness2", - "cloudpotwe2": "lingerpotweakness2", - "cloudpotwelong": "lingerpotweakness2", - "cloudpotweextended": "lingerpotweakness2", - "cloudpotweex": "lingerpotweakness2", - "cloudpotwelevel2": "lingerpotweakness2", - "weaknesscloudpot2": "lingerpotweakness2", - "weaknesscloudpotlong": "lingerpotweakness2", - "weaknesscloudpotextended": "lingerpotweakness2", - "weaknesscloudpotex": "lingerpotweakness2", - "weaknesscloudpotlevel2": "lingerpotweakness2", - "weakcloudpot2": "lingerpotweakness2", - "weakcloudpotlong": "lingerpotweakness2", - "weakcloudpotextended": "lingerpotweakness2", - "weakcloudpotex": "lingerpotweakness2", - "weakcloudpotlevel2": "lingerpotweakness2", - "wecloudpot2": "lingerpotweakness2", - "wecloudpotlong": "lingerpotweakness2", - "wecloudpotextended": "lingerpotweakness2", - "wecloudpotex": "lingerpotweakness2", - "wecloudpotlevel2": "lingerpotweakness2", - "arrowweakness2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_weakness", - "type": "WEAKNESS", - "upgraded": false, - "extended": true - } - }, - "arrowweaknesslong": "arrowweakness2", - "arrowweaknessextended": "arrowweakness2", - "arrowweaknessex": "arrowweakness2", - "arrowweaknesslevel2": "arrowweakness2", - "arrowweak2": "arrowweakness2", - "arrowweaklong": "arrowweakness2", - "arrowweakextended": "arrowweakness2", - "arrowweakex": "arrowweakness2", - "arrowweaklevel2": "arrowweakness2", - "arrowwe2": "arrowweakness2", - "arrowwelong": "arrowweakness2", - "arrowweextended": "arrowweakness2", - "arrowweex": "arrowweakness2", - "arrowwelevel2": "arrowweakness2", - "weaknessarrow2": "arrowweakness2", - "weaknessarrowlong": "arrowweakness2", - "weaknessarrowextended": "arrowweakness2", - "weaknessarrowex": "arrowweakness2", - "weaknessarrowlevel2": "arrowweakness2", - "weakarrow2": "arrowweakness2", - "weakarrowlong": "arrowweakness2", - "weakarrowextended": "arrowweakness2", - "weakarrowex": "arrowweakness2", - "weakarrowlevel2": "arrowweakness2", - "wearrow2": "arrowweakness2", - "wearrowlong": "arrowweakness2", - "wearrowextended": "arrowweakness2", - "wearrowex": "arrowweakness2", - "wearrowlevel2": "arrowweakness2", - "luckpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "luck", - "type": "LUCK", - "upgraded": false, - "extended": false - } - }, - "luckypotion": "luckpotion", - "luckpot": "luckpotion", - "luckypot": "luckpotion", - "potionofluck": "luckpotion", - "potionoflucky": "luckpotion", - "potofluck": "luckpotion", - "potoflucky": "luckpotion", - "splashluckpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "luck", - "type": "LUCK", - "upgraded": false, - "extended": false - } - }, - "splashluckypotion": "splashluckpotion", - "splluckpotion": "splashluckpotion", - "splluckypotion": "splashluckpotion", - "lucksplashpotion": "splashluckpotion", - "luckysplashpotion": "splashluckpotion", - "splashluckpot": "splashluckpotion", - "splashluckypot": "splashluckpotion", - "splluckpot": "splashluckpotion", - "splluckypot": "splashluckpotion", - "lucksplashpot": "splashluckpotion", - "luckysplashpot": "splashluckpotion", - "lingerpotluck": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "luck", - "type": "LUCK", - "upgraded": false, - "extended": false - } - }, - "lingerpotlucky": "lingerpotluck", - "lucklingerpot": "lingerpotluck", - "luckylingerpot": "lingerpotluck", - "aoepotionluck": "lingerpotluck", - "aoepotionlucky": "lingerpotluck", - "luckaoepoiont": "lingerpotluck", - "luckyaoepoiont": "lingerpotluck", - "aoepotluck": "lingerpotluck", - "aoepotlucky": "lingerpotluck", - "luckaoepot": "lingerpotluck", - "luckyaoepot": "lingerpotluck", - "areapotionluck": "lingerpotluck", - "areapotionlucky": "lingerpotluck", - "luckareapotion": "lingerpotluck", - "luckyareapotion": "lingerpotluck", - "areapotluck": "lingerpotluck", - "areapotlucky": "lingerpotluck", - "luckareapot": "lingerpotluck", - "luckyareapot": "lingerpotluck", - "cloudpotionluck": "lingerpotluck", - "cloudpotionlucky": "lingerpotluck", - "luckcloudpotion": "lingerpotluck", - "luckycloudpotion": "lingerpotluck", - "cloudpotluck": "lingerpotluck", - "cloudpotlucky": "lingerpotluck", - "luckcloudpot": "lingerpotluck", - "luckycloudpot": "lingerpotluck", - "arrowluck": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "luck", - "type": "LUCK", - "upgraded": false, - "extended": false - } - }, - "arrowlucky": "arrowluck", - "luckarrow": "arrowluck", - "luckyarrow": "arrowluck", - "turtlemasterpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": false - } - }, - "turtlepotion": "turtlemasterpotion", - "tmpotion": "turtlemasterpotion", - "turtlemasterpot": "turtlemasterpotion", - "turtlepot": "turtlemasterpotion", - "tmpot": "turtlemasterpotion", - "potionofturtlemaster": "turtlemasterpotion", - "potionofturtle": "turtlemasterpotion", - "potionoftm": "turtlemasterpotion", - "potofturtlemaster": "turtlemasterpotion", - "potofturtle": "turtlemasterpotion", - "potoftm": "turtlemasterpotion", - "splashturtlemasterpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": false - } - }, - "splashturtlepotion": "splashturtlemasterpotion", - "splashtmpotion": "splashturtlemasterpotion", - "splturtlemasterpotion": "splashturtlemasterpotion", - "splturtlepotion": "splashturtlemasterpotion", - "spltmpotion": "splashturtlemasterpotion", - "turtlemastersplashpotion": "splashturtlemasterpotion", - "turtlesplashpotion": "splashturtlemasterpotion", - "tmsplashpotion": "splashturtlemasterpotion", - "splashturtlemasterpot": "splashturtlemasterpotion", - "splashturtlepot": "splashturtlemasterpotion", - "splashtmpot": "splashturtlemasterpotion", - "splturtlemasterpot": "splashturtlemasterpotion", - "splturtlepot": "splashturtlemasterpotion", - "spltmpot": "splashturtlemasterpotion", - "turtlemastersplashpot": "splashturtlemasterpotion", - "turtlesplashpot": "splashturtlemasterpotion", - "tmsplashpot": "splashturtlemasterpotion", - "lingerpotturtlemaster": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": false - } - }, - "lingerpotturtle": "lingerpotturtlemaster", - "lingerpottm": "lingerpotturtlemaster", - "turtlemasterlingerpot": "lingerpotturtlemaster", - "turtlelingerpot": "lingerpotturtlemaster", - "tmlingerpot": "lingerpotturtlemaster", - "aoepotionturtlemaster": "lingerpotturtlemaster", - "aoepotionturtle": "lingerpotturtlemaster", - "aoepotiontm": "lingerpotturtlemaster", - "turtlemasteraoepoiont": "lingerpotturtlemaster", - "turtleaoepoiont": "lingerpotturtlemaster", - "tmaoepoiont": "lingerpotturtlemaster", - "aoepotturtlemaster": "lingerpotturtlemaster", - "aoepotturtle": "lingerpotturtlemaster", - "aoepottm": "lingerpotturtlemaster", - "turtlemasteraoepot": "lingerpotturtlemaster", - "turtleaoepot": "lingerpotturtlemaster", - "tmaoepot": "lingerpotturtlemaster", - "areapotionturtlemaster": "lingerpotturtlemaster", - "areapotionturtle": "lingerpotturtlemaster", - "areapotiontm": "lingerpotturtlemaster", - "turtlemasterareapotion": "lingerpotturtlemaster", - "turtleareapotion": "lingerpotturtlemaster", - "tmareapotion": "lingerpotturtlemaster", - "areapotturtlemaster": "lingerpotturtlemaster", - "areapotturtle": "lingerpotturtlemaster", - "areapottm": "lingerpotturtlemaster", - "turtlemasterareapot": "lingerpotturtlemaster", - "turtleareapot": "lingerpotturtlemaster", - "tmareapot": "lingerpotturtlemaster", - "cloudpotionturtlemaster": "lingerpotturtlemaster", - "cloudpotionturtle": "lingerpotturtlemaster", - "cloudpotiontm": "lingerpotturtlemaster", - "turtlemastercloudpotion": "lingerpotturtlemaster", - "turtlecloudpotion": "lingerpotturtlemaster", - "tmcloudpotion": "lingerpotturtlemaster", - "cloudpotturtlemaster": "lingerpotturtlemaster", - "cloudpotturtle": "lingerpotturtlemaster", - "cloudpottm": "lingerpotturtlemaster", - "turtlemastercloudpot": "lingerpotturtlemaster", - "turtlecloudpot": "lingerpotturtlemaster", - "tmcloudpot": "lingerpotturtlemaster", - "arrowturtlemaster": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": false - } - }, - "arrowturtle": "arrowturtlemaster", - "arrowtm": "arrowturtlemaster", - "turtlemasterarrow": "arrowturtlemaster", - "turtlearrow": "arrowturtlemaster", - "tmarrow": "arrowturtlemaster", - "turtlemasteriipotion": { - "material": "POTION", - "potionData": { - "vanillaType": "strong_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": true, - "extended": false - } - }, - "turtlemasterstrongpotion": "turtlemasteriipotion", - "turtlemasterleveliipotion": "turtlemasteriipotion", - "turtleiipotion": "turtlemasteriipotion", - "turtlestrongpotion": "turtlemasteriipotion", - "turtleleveliipotion": "turtlemasteriipotion", - "tmiipotion": "turtlemasteriipotion", - "tmstrongpotion": "turtlemasteriipotion", - "tmleveliipotion": "turtlemasteriipotion", - "turtlemasteriipot": "turtlemasteriipotion", - "turtlemasterstrongpot": "turtlemasteriipotion", - "turtlemasterleveliipot": "turtlemasteriipotion", - "turtleiipot": "turtlemasteriipotion", - "turtlestrongpot": "turtlemasteriipotion", - "turtleleveliipot": "turtlemasteriipotion", - "tmiipot": "turtlemasteriipotion", - "tmstrongpot": "turtlemasteriipotion", - "tmleveliipot": "turtlemasteriipotion", - "potionofturtlemasterii": "turtlemasteriipotion", - "potionofturtlemasterstrong": "turtlemasteriipotion", - "potionofturtlemasterlevelii": "turtlemasteriipotion", - "potionofturtleii": "turtlemasteriipotion", - "potionofturtlestrong": "turtlemasteriipotion", - "potionofturtlelevelii": "turtlemasteriipotion", - "potionoftmii": "turtlemasteriipotion", - "potionoftmstrong": "turtlemasteriipotion", - "potionoftmlevelii": "turtlemasteriipotion", - "potofturtlemasterii": "turtlemasteriipotion", - "potofturtlemasterstrong": "turtlemasteriipotion", - "potofturtlemasterlevelii": "turtlemasteriipotion", - "potofturtleii": "turtlemasteriipotion", - "potofturtlestrong": "turtlemasteriipotion", - "potofturtlelevelii": "turtlemasteriipotion", - "potoftmii": "turtlemasteriipotion", - "potoftmstrong": "turtlemasteriipotion", - "potoftmlevelii": "turtlemasteriipotion", - "splashturtlemasteriipotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "strong_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": true, - "extended": false - } - }, - "splashturtlemasterstrongpotion": "splashturtlemasteriipotion", - "splashturtlemasterleveliipotion": "splashturtlemasteriipotion", - "splashturtleiipotion": "splashturtlemasteriipotion", - "splashturtlestrongpotion": "splashturtlemasteriipotion", - "splashturtleleveliipotion": "splashturtlemasteriipotion", - "splashtmiipotion": "splashturtlemasteriipotion", - "splashtmstrongpotion": "splashturtlemasteriipotion", - "splashtmleveliipotion": "splashturtlemasteriipotion", - "splturtlemasteriipotion": "splashturtlemasteriipotion", - "splturtlemasterstrongpotion": "splashturtlemasteriipotion", - "splturtlemasterleveliipotion": "splashturtlemasteriipotion", - "splturtleiipotion": "splashturtlemasteriipotion", - "splturtlestrongpotion": "splashturtlemasteriipotion", - "splturtleleveliipotion": "splashturtlemasteriipotion", - "spltmiipotion": "splashturtlemasteriipotion", - "spltmstrongpotion": "splashturtlemasteriipotion", - "spltmleveliipotion": "splashturtlemasteriipotion", - "turtlemasteriisplashpotion": "splashturtlemasteriipotion", - "turtlemasterstrongsplashpotion": "splashturtlemasteriipotion", - "turtlemasterleveliisplashpotion": "splashturtlemasteriipotion", - "turtleiisplashpotion": "splashturtlemasteriipotion", - "turtlestrongsplashpotion": "splashturtlemasteriipotion", - "turtleleveliisplashpotion": "splashturtlemasteriipotion", - "tmiisplashpotion": "splashturtlemasteriipotion", - "tmstrongsplashpotion": "splashturtlemasteriipotion", - "tmleveliisplashpotion": "splashturtlemasteriipotion", - "splashturtlemasteriipot": "splashturtlemasteriipotion", - "splashturtlemasterstrongpot": "splashturtlemasteriipotion", - "splashturtlemasterleveliipot": "splashturtlemasteriipotion", - "splashturtleiipot": "splashturtlemasteriipotion", - "splashturtlestrongpot": "splashturtlemasteriipotion", - "splashturtleleveliipot": "splashturtlemasteriipotion", - "splashtmiipot": "splashturtlemasteriipotion", - "splashtmstrongpot": "splashturtlemasteriipotion", - "splashtmleveliipot": "splashturtlemasteriipotion", - "splturtlemasteriipot": "splashturtlemasteriipotion", - "splturtlemasterstrongpot": "splashturtlemasteriipotion", - "splturtlemasterleveliipot": "splashturtlemasteriipotion", - "splturtleiipot": "splashturtlemasteriipotion", - "splturtlestrongpot": "splashturtlemasteriipotion", - "splturtleleveliipot": "splashturtlemasteriipotion", - "spltmiipot": "splashturtlemasteriipotion", - "spltmstrongpot": "splashturtlemasteriipotion", - "spltmleveliipot": "splashturtlemasteriipotion", - "turtlemasteriisplashpot": "splashturtlemasteriipotion", - "turtlemasterstrongsplashpot": "splashturtlemasteriipotion", - "turtlemasterleveliisplashpot": "splashturtlemasteriipotion", - "turtleiisplashpot": "splashturtlemasteriipotion", - "turtlestrongsplashpot": "splashturtlemasteriipotion", - "turtleleveliisplashpot": "splashturtlemasteriipotion", - "tmiisplashpot": "splashturtlemasteriipotion", - "tmstrongsplashpot": "splashturtlemasteriipotion", - "tmleveliisplashpot": "splashturtlemasteriipotion", - "lingerpotturtlemasterii": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "strong_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": true, - "extended": false - } - }, - "lingerpotturtlemasterstrong": "lingerpotturtlemasterii", - "lingerpotturtlemasterlevelii": "lingerpotturtlemasterii", - "lingerpotturtleii": "lingerpotturtlemasterii", - "lingerpotturtlestrong": "lingerpotturtlemasterii", - "lingerpotturtlelevelii": "lingerpotturtlemasterii", - "lingerpottmii": "lingerpotturtlemasterii", - "lingerpottmstrong": "lingerpotturtlemasterii", - "lingerpottmlevelii": "lingerpotturtlemasterii", - "turtlemasterlingerpotii": "lingerpotturtlemasterii", - "turtlemasterlingerpotstrong": "lingerpotturtlemasterii", - "turtlemasterlingerpotlevelii": "lingerpotturtlemasterii", - "turtlelingerpotii": "lingerpotturtlemasterii", - "turtlelingerpotstrong": "lingerpotturtlemasterii", - "turtlelingerpotlevelii": "lingerpotturtlemasterii", - "tmlingerpotii": "lingerpotturtlemasterii", - "tmlingerpotstrong": "lingerpotturtlemasterii", - "tmlingerpotlevelii": "lingerpotturtlemasterii", - "aoepotionturtlemasterii": "lingerpotturtlemasterii", - "aoepotionturtlemasterstrong": "lingerpotturtlemasterii", - "aoepotionturtlemasterlevelii": "lingerpotturtlemasterii", - "aoepotionturtleii": "lingerpotturtlemasterii", - "aoepotionturtlestrong": "lingerpotturtlemasterii", - "aoepotionturtlelevelii": "lingerpotturtlemasterii", - "aoepotiontmii": "lingerpotturtlemasterii", - "aoepotiontmstrong": "lingerpotturtlemasterii", - "aoepotiontmlevelii": "lingerpotturtlemasterii", - "turtlemasteraoepoiontii": "lingerpotturtlemasterii", - "turtlemasteraoepoiontstrong": "lingerpotturtlemasterii", - "turtlemasteraoepoiontlevelii": "lingerpotturtlemasterii", - "turtleaoepoiontii": "lingerpotturtlemasterii", - "turtleaoepoiontstrong": "lingerpotturtlemasterii", - "turtleaoepoiontlevelii": "lingerpotturtlemasterii", - "tmaoepoiontii": "lingerpotturtlemasterii", - "tmaoepoiontstrong": "lingerpotturtlemasterii", - "tmaoepoiontlevelii": "lingerpotturtlemasterii", - "aoepotturtlemasterii": "lingerpotturtlemasterii", - "aoepotturtlemasterstrong": "lingerpotturtlemasterii", - "aoepotturtlemasterlevelii": "lingerpotturtlemasterii", - "aoepotturtleii": "lingerpotturtlemasterii", - "aoepotturtlestrong": "lingerpotturtlemasterii", - "aoepotturtlelevelii": "lingerpotturtlemasterii", - "aoepottmii": "lingerpotturtlemasterii", - "aoepottmstrong": "lingerpotturtlemasterii", - "aoepottmlevelii": "lingerpotturtlemasterii", - "turtlemasteraoepotii": "lingerpotturtlemasterii", - "turtlemasteraoepotstrong": "lingerpotturtlemasterii", - "turtlemasteraoepotlevelii": "lingerpotturtlemasterii", - "turtleaoepotii": "lingerpotturtlemasterii", - "turtleaoepotstrong": "lingerpotturtlemasterii", - "turtleaoepotlevelii": "lingerpotturtlemasterii", - "tmaoepotii": "lingerpotturtlemasterii", - "tmaoepotstrong": "lingerpotturtlemasterii", - "tmaoepotlevelii": "lingerpotturtlemasterii", - "areapotionturtlemasterii": "lingerpotturtlemasterii", - "areapotionturtlemasterstrong": "lingerpotturtlemasterii", - "areapotionturtlemasterlevelii": "lingerpotturtlemasterii", - "areapotionturtleii": "lingerpotturtlemasterii", - "areapotionturtlestrong": "lingerpotturtlemasterii", - "areapotionturtlelevelii": "lingerpotturtlemasterii", - "areapotiontmii": "lingerpotturtlemasterii", - "areapotiontmstrong": "lingerpotturtlemasterii", - "areapotiontmlevelii": "lingerpotturtlemasterii", - "turtlemasterareapotionii": "lingerpotturtlemasterii", - "turtlemasterareapotionstrong": "lingerpotturtlemasterii", - "turtlemasterareapotionlevelii": "lingerpotturtlemasterii", - "turtleareapotionii": "lingerpotturtlemasterii", - "turtleareapotionstrong": "lingerpotturtlemasterii", - "turtleareapotionlevelii": "lingerpotturtlemasterii", - "tmareapotionii": "lingerpotturtlemasterii", - "tmareapotionstrong": "lingerpotturtlemasterii", - "tmareapotionlevelii": "lingerpotturtlemasterii", - "areapotturtlemasterii": "lingerpotturtlemasterii", - "areapotturtlemasterstrong": "lingerpotturtlemasterii", - "areapotturtlemasterlevelii": "lingerpotturtlemasterii", - "areapotturtleii": "lingerpotturtlemasterii", - "areapotturtlestrong": "lingerpotturtlemasterii", - "areapotturtlelevelii": "lingerpotturtlemasterii", - "areapottmii": "lingerpotturtlemasterii", - "areapottmstrong": "lingerpotturtlemasterii", - "areapottmlevelii": "lingerpotturtlemasterii", - "turtlemasterareapotii": "lingerpotturtlemasterii", - "turtlemasterareapotstrong": "lingerpotturtlemasterii", - "turtlemasterareapotlevelii": "lingerpotturtlemasterii", - "turtleareapotii": "lingerpotturtlemasterii", - "turtleareapotstrong": "lingerpotturtlemasterii", - "turtleareapotlevelii": "lingerpotturtlemasterii", - "tmareapotii": "lingerpotturtlemasterii", - "tmareapotstrong": "lingerpotturtlemasterii", - "tmareapotlevelii": "lingerpotturtlemasterii", - "cloudpotionturtlemasterii": "lingerpotturtlemasterii", - "cloudpotionturtlemasterstrong": "lingerpotturtlemasterii", - "cloudpotionturtlemasterlevelii": "lingerpotturtlemasterii", - "cloudpotionturtleii": "lingerpotturtlemasterii", - "cloudpotionturtlestrong": "lingerpotturtlemasterii", - "cloudpotionturtlelevelii": "lingerpotturtlemasterii", - "cloudpotiontmii": "lingerpotturtlemasterii", - "cloudpotiontmstrong": "lingerpotturtlemasterii", - "cloudpotiontmlevelii": "lingerpotturtlemasterii", - "turtlemastercloudpotionii": "lingerpotturtlemasterii", - "turtlemastercloudpotionstrong": "lingerpotturtlemasterii", - "turtlemastercloudpotionlevelii": "lingerpotturtlemasterii", - "turtlecloudpotionii": "lingerpotturtlemasterii", - "turtlecloudpotionstrong": "lingerpotturtlemasterii", - "turtlecloudpotionlevelii": "lingerpotturtlemasterii", - "tmcloudpotionii": "lingerpotturtlemasterii", - "tmcloudpotionstrong": "lingerpotturtlemasterii", - "tmcloudpotionlevelii": "lingerpotturtlemasterii", - "cloudpotturtlemasterii": "lingerpotturtlemasterii", - "cloudpotturtlemasterstrong": "lingerpotturtlemasterii", - "cloudpotturtlemasterlevelii": "lingerpotturtlemasterii", - "cloudpotturtleii": "lingerpotturtlemasterii", - "cloudpotturtlestrong": "lingerpotturtlemasterii", - "cloudpotturtlelevelii": "lingerpotturtlemasterii", - "cloudpottmii": "lingerpotturtlemasterii", - "cloudpottmstrong": "lingerpotturtlemasterii", - "cloudpottmlevelii": "lingerpotturtlemasterii", - "turtlemastercloudpotii": "lingerpotturtlemasterii", - "turtlemastercloudpotstrong": "lingerpotturtlemasterii", - "turtlemastercloudpotlevelii": "lingerpotturtlemasterii", - "turtlecloudpotii": "lingerpotturtlemasterii", - "turtlecloudpotstrong": "lingerpotturtlemasterii", - "turtlecloudpotlevelii": "lingerpotturtlemasterii", - "tmcloudpotii": "lingerpotturtlemasterii", - "tmcloudpotstrong": "lingerpotturtlemasterii", - "tmcloudpotlevelii": "lingerpotturtlemasterii", - "arrowturtlemasterii": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "strong_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": true, - "extended": false - } - }, - "arrowturtlemasterstrong": "arrowturtlemasterii", - "arrowturtlemasterlevelii": "arrowturtlemasterii", - "arrowturtleii": "arrowturtlemasterii", - "arrowturtlestrong": "arrowturtlemasterii", - "arrowturtlelevelii": "arrowturtlemasterii", - "arrowtmii": "arrowturtlemasterii", - "arrowtmstrong": "arrowturtlemasterii", - "arrowtmlevelii": "arrowturtlemasterii", - "turtlemasterarrowii": "arrowturtlemasterii", - "turtlemasterarrowstrong": "arrowturtlemasterii", - "turtlemasterarrowlevelii": "arrowturtlemasterii", - "turtlearrowii": "arrowturtlemasterii", - "turtlearrowstrong": "arrowturtlemasterii", - "turtlearrowlevelii": "arrowturtlemasterii", - "tmarrowii": "arrowturtlemasterii", - "tmarrowstrong": "arrowturtlemasterii", - "tmarrowlevelii": "arrowturtlemasterii", - "turtlemaster2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": true - } - }, - "turtlemasterlongpotion": "turtlemaster2potion", - "turtlemasterextendedpotion": "turtlemaster2potion", - "turtlemasterexpotion": "turtlemaster2potion", - "turtlemasterlevel2potion": "turtlemaster2potion", - "turtle2potion": "turtlemaster2potion", - "turtlelongpotion": "turtlemaster2potion", - "turtleextendedpotion": "turtlemaster2potion", - "turtleexpotion": "turtlemaster2potion", - "turtlelevel2potion": "turtlemaster2potion", - "tm2potion": "turtlemaster2potion", - "tmlongpotion": "turtlemaster2potion", - "tmextendedpotion": "turtlemaster2potion", - "tmexpotion": "turtlemaster2potion", - "tmlevel2potion": "turtlemaster2potion", - "turtlemaster2pot": "turtlemaster2potion", - "turtlemasterlongpot": "turtlemaster2potion", - "turtlemasterextendedpot": "turtlemaster2potion", - "turtlemasterexpot": "turtlemaster2potion", - "turtlemasterlevel2pot": "turtlemaster2potion", - "turtle2pot": "turtlemaster2potion", - "turtlelongpot": "turtlemaster2potion", - "turtleextendedpot": "turtlemaster2potion", - "turtleexpot": "turtlemaster2potion", - "turtlelevel2pot": "turtlemaster2potion", - "tm2pot": "turtlemaster2potion", - "tmlongpot": "turtlemaster2potion", - "tmextendedpot": "turtlemaster2potion", - "tmexpot": "turtlemaster2potion", - "tmlevel2pot": "turtlemaster2potion", - "potionofturtlemaster2": "turtlemaster2potion", - "potionofturtlemasterlong": "turtlemaster2potion", - "potionofturtlemasterextended": "turtlemaster2potion", - "potionofturtlemasterex": "turtlemaster2potion", - "potionofturtlemasterlevel2": "turtlemaster2potion", - "potionofturtle2": "turtlemaster2potion", - "potionofturtlelong": "turtlemaster2potion", - "potionofturtleextended": "turtlemaster2potion", - "potionofturtleex": "turtlemaster2potion", - "potionofturtlelevel2": "turtlemaster2potion", - "potionoftm2": "turtlemaster2potion", - "potionoftmlong": "turtlemaster2potion", - "potionoftmextended": "turtlemaster2potion", - "potionoftmex": "turtlemaster2potion", - "potionoftmlevel2": "turtlemaster2potion", - "potofturtlemaster2": "turtlemaster2potion", - "potofturtlemasterlong": "turtlemaster2potion", - "potofturtlemasterextended": "turtlemaster2potion", - "potofturtlemasterex": "turtlemaster2potion", - "potofturtlemasterlevel2": "turtlemaster2potion", - "potofturtle2": "turtlemaster2potion", - "potofturtlelong": "turtlemaster2potion", - "potofturtleextended": "turtlemaster2potion", - "potofturtleex": "turtlemaster2potion", - "potofturtlelevel2": "turtlemaster2potion", - "potoftm2": "turtlemaster2potion", - "potoftmlong": "turtlemaster2potion", - "potoftmextended": "turtlemaster2potion", - "potoftmex": "turtlemaster2potion", - "potoftmlevel2": "turtlemaster2potion", - "splashturtlemaster2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": true - } - }, - "splashturtlemasterlongpotion": "splashturtlemaster2potion", - "splashturtlemasterextendedpotion": "splashturtlemaster2potion", - "splashturtlemasterexpotion": "splashturtlemaster2potion", - "splashturtlemasterlevel2potion": "splashturtlemaster2potion", - "splashturtle2potion": "splashturtlemaster2potion", - "splashturtlelongpotion": "splashturtlemaster2potion", - "splashturtleextendedpotion": "splashturtlemaster2potion", - "splashturtleexpotion": "splashturtlemaster2potion", - "splashturtlelevel2potion": "splashturtlemaster2potion", - "splashtm2potion": "splashturtlemaster2potion", - "splashtmlongpotion": "splashturtlemaster2potion", - "splashtmextendedpotion": "splashturtlemaster2potion", - "splashtmexpotion": "splashturtlemaster2potion", - "splashtmlevel2potion": "splashturtlemaster2potion", - "splturtlemaster2potion": "splashturtlemaster2potion", - "splturtlemasterlongpotion": "splashturtlemaster2potion", - "splturtlemasterextendedpotion": "splashturtlemaster2potion", - "splturtlemasterexpotion": "splashturtlemaster2potion", - "splturtlemasterlevel2potion": "splashturtlemaster2potion", - "splturtle2potion": "splashturtlemaster2potion", - "splturtlelongpotion": "splashturtlemaster2potion", - "splturtleextendedpotion": "splashturtlemaster2potion", - "splturtleexpotion": "splashturtlemaster2potion", - "splturtlelevel2potion": "splashturtlemaster2potion", - "spltm2potion": "splashturtlemaster2potion", - "spltmlongpotion": "splashturtlemaster2potion", - "spltmextendedpotion": "splashturtlemaster2potion", - "spltmexpotion": "splashturtlemaster2potion", - "spltmlevel2potion": "splashturtlemaster2potion", - "turtlemaster2splashpotion": "splashturtlemaster2potion", - "turtlemasterlongsplashpotion": "splashturtlemaster2potion", - "turtlemasterextendedsplashpotion": "splashturtlemaster2potion", - "turtlemasterexsplashpotion": "splashturtlemaster2potion", - "turtlemasterlevel2splashpotion": "splashturtlemaster2potion", - "turtle2splashpotion": "splashturtlemaster2potion", - "turtlelongsplashpotion": "splashturtlemaster2potion", - "turtleextendedsplashpotion": "splashturtlemaster2potion", - "turtleexsplashpotion": "splashturtlemaster2potion", - "turtlelevel2splashpotion": "splashturtlemaster2potion", - "tm2splashpotion": "splashturtlemaster2potion", - "tmlongsplashpotion": "splashturtlemaster2potion", - "tmextendedsplashpotion": "splashturtlemaster2potion", - "tmexsplashpotion": "splashturtlemaster2potion", - "tmlevel2splashpotion": "splashturtlemaster2potion", - "splashturtlemaster2pot": "splashturtlemaster2potion", - "splashturtlemasterlongpot": "splashturtlemaster2potion", - "splashturtlemasterextendedpot": "splashturtlemaster2potion", - "splashturtlemasterexpot": "splashturtlemaster2potion", - "splashturtlemasterlevel2pot": "splashturtlemaster2potion", - "splashturtle2pot": "splashturtlemaster2potion", - "splashturtlelongpot": "splashturtlemaster2potion", - "splashturtleextendedpot": "splashturtlemaster2potion", - "splashturtleexpot": "splashturtlemaster2potion", - "splashturtlelevel2pot": "splashturtlemaster2potion", - "splashtm2pot": "splashturtlemaster2potion", - "splashtmlongpot": "splashturtlemaster2potion", - "splashtmextendedpot": "splashturtlemaster2potion", - "splashtmexpot": "splashturtlemaster2potion", - "splashtmlevel2pot": "splashturtlemaster2potion", - "splturtlemaster2pot": "splashturtlemaster2potion", - "splturtlemasterlongpot": "splashturtlemaster2potion", - "splturtlemasterextendedpot": "splashturtlemaster2potion", - "splturtlemasterexpot": "splashturtlemaster2potion", - "splturtlemasterlevel2pot": "splashturtlemaster2potion", - "splturtle2pot": "splashturtlemaster2potion", - "splturtlelongpot": "splashturtlemaster2potion", - "splturtleextendedpot": "splashturtlemaster2potion", - "splturtleexpot": "splashturtlemaster2potion", - "splturtlelevel2pot": "splashturtlemaster2potion", - "spltm2pot": "splashturtlemaster2potion", - "spltmlongpot": "splashturtlemaster2potion", - "spltmextendedpot": "splashturtlemaster2potion", - "spltmexpot": "splashturtlemaster2potion", - "spltmlevel2pot": "splashturtlemaster2potion", - "turtlemaster2splashpot": "splashturtlemaster2potion", - "turtlemasterlongsplashpot": "splashturtlemaster2potion", - "turtlemasterextendedsplashpot": "splashturtlemaster2potion", - "turtlemasterexsplashpot": "splashturtlemaster2potion", - "turtlemasterlevel2splashpot": "splashturtlemaster2potion", - "turtle2splashpot": "splashturtlemaster2potion", - "turtlelongsplashpot": "splashturtlemaster2potion", - "turtleextendedsplashpot": "splashturtlemaster2potion", - "turtleexsplashpot": "splashturtlemaster2potion", - "turtlelevel2splashpot": "splashturtlemaster2potion", - "tm2splashpot": "splashturtlemaster2potion", - "tmlongsplashpot": "splashturtlemaster2potion", - "tmextendedsplashpot": "splashturtlemaster2potion", - "tmexsplashpot": "splashturtlemaster2potion", - "tmlevel2splashpot": "splashturtlemaster2potion", - "lingerpotturtlemaster2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": true - } - }, - "lingerpotturtlemasterlong": "lingerpotturtlemaster2", - "lingerpotturtlemasterextended": "lingerpotturtlemaster2", - "lingerpotturtlemasterex": "lingerpotturtlemaster2", - "lingerpotturtlemasterlevel2": "lingerpotturtlemaster2", - "lingerpotturtle2": "lingerpotturtlemaster2", - "lingerpotturtlelong": "lingerpotturtlemaster2", - "lingerpotturtleextended": "lingerpotturtlemaster2", - "lingerpotturtleex": "lingerpotturtlemaster2", - "lingerpotturtlelevel2": "lingerpotturtlemaster2", - "lingerpottm2": "lingerpotturtlemaster2", - "lingerpottmlong": "lingerpotturtlemaster2", - "lingerpottmextended": "lingerpotturtlemaster2", - "lingerpottmex": "lingerpotturtlemaster2", - "lingerpottmlevel2": "lingerpotturtlemaster2", - "turtlemasterlingerpot2": "lingerpotturtlemaster2", - "turtlemasterlingerpotlong": "lingerpotturtlemaster2", - "turtlemasterlingerpotextended": "lingerpotturtlemaster2", - "turtlemasterlingerpotex": "lingerpotturtlemaster2", - "turtlemasterlingerpotlevel2": "lingerpotturtlemaster2", - "turtlelingerpot2": "lingerpotturtlemaster2", - "turtlelingerpotlong": "lingerpotturtlemaster2", - "turtlelingerpotextended": "lingerpotturtlemaster2", - "turtlelingerpotex": "lingerpotturtlemaster2", - "turtlelingerpotlevel2": "lingerpotturtlemaster2", - "tmlingerpot2": "lingerpotturtlemaster2", - "tmlingerpotlong": "lingerpotturtlemaster2", - "tmlingerpotextended": "lingerpotturtlemaster2", - "tmlingerpotex": "lingerpotturtlemaster2", - "tmlingerpotlevel2": "lingerpotturtlemaster2", - "aoepotionturtlemaster2": "lingerpotturtlemaster2", - "aoepotionturtlemasterlong": "lingerpotturtlemaster2", - "aoepotionturtlemasterextended": "lingerpotturtlemaster2", - "aoepotionturtlemasterex": "lingerpotturtlemaster2", - "aoepotionturtlemasterlevel2": "lingerpotturtlemaster2", - "aoepotionturtle2": "lingerpotturtlemaster2", - "aoepotionturtlelong": "lingerpotturtlemaster2", - "aoepotionturtleextended": "lingerpotturtlemaster2", - "aoepotionturtleex": "lingerpotturtlemaster2", - "aoepotionturtlelevel2": "lingerpotturtlemaster2", - "aoepotiontm2": "lingerpotturtlemaster2", - "aoepotiontmlong": "lingerpotturtlemaster2", - "aoepotiontmextended": "lingerpotturtlemaster2", - "aoepotiontmex": "lingerpotturtlemaster2", - "aoepotiontmlevel2": "lingerpotturtlemaster2", - "turtlemasteraoepoiont2": "lingerpotturtlemaster2", - "turtlemasteraoepoiontlong": "lingerpotturtlemaster2", - "turtlemasteraoepoiontextended": "lingerpotturtlemaster2", - "turtlemasteraoepoiontex": "lingerpotturtlemaster2", - "turtlemasteraoepoiontlevel2": "lingerpotturtlemaster2", - "turtleaoepoiont2": "lingerpotturtlemaster2", - "turtleaoepoiontlong": "lingerpotturtlemaster2", - "turtleaoepoiontextended": "lingerpotturtlemaster2", - "turtleaoepoiontex": "lingerpotturtlemaster2", - "turtleaoepoiontlevel2": "lingerpotturtlemaster2", - "tmaoepoiont2": "lingerpotturtlemaster2", - "tmaoepoiontlong": "lingerpotturtlemaster2", - "tmaoepoiontextended": "lingerpotturtlemaster2", - "tmaoepoiontex": "lingerpotturtlemaster2", - "tmaoepoiontlevel2": "lingerpotturtlemaster2", - "aoepotturtlemaster2": "lingerpotturtlemaster2", - "aoepotturtlemasterlong": "lingerpotturtlemaster2", - "aoepotturtlemasterextended": "lingerpotturtlemaster2", - "aoepotturtlemasterex": "lingerpotturtlemaster2", - "aoepotturtlemasterlevel2": "lingerpotturtlemaster2", - "aoepotturtle2": "lingerpotturtlemaster2", - "aoepotturtlelong": "lingerpotturtlemaster2", - "aoepotturtleextended": "lingerpotturtlemaster2", - "aoepotturtleex": "lingerpotturtlemaster2", - "aoepotturtlelevel2": "lingerpotturtlemaster2", - "aoepottm2": "lingerpotturtlemaster2", - "aoepottmlong": "lingerpotturtlemaster2", - "aoepottmextended": "lingerpotturtlemaster2", - "aoepottmex": "lingerpotturtlemaster2", - "aoepottmlevel2": "lingerpotturtlemaster2", - "turtlemasteraoepot2": "lingerpotturtlemaster2", - "turtlemasteraoepotlong": "lingerpotturtlemaster2", - "turtlemasteraoepotextended": "lingerpotturtlemaster2", - "turtlemasteraoepotex": "lingerpotturtlemaster2", - "turtlemasteraoepotlevel2": "lingerpotturtlemaster2", - "turtleaoepot2": "lingerpotturtlemaster2", - "turtleaoepotlong": "lingerpotturtlemaster2", - "turtleaoepotextended": "lingerpotturtlemaster2", - "turtleaoepotex": "lingerpotturtlemaster2", - "turtleaoepotlevel2": "lingerpotturtlemaster2", - "tmaoepot2": "lingerpotturtlemaster2", - "tmaoepotlong": "lingerpotturtlemaster2", - "tmaoepotextended": "lingerpotturtlemaster2", - "tmaoepotex": "lingerpotturtlemaster2", - "tmaoepotlevel2": "lingerpotturtlemaster2", - "areapotionturtlemaster2": "lingerpotturtlemaster2", - "areapotionturtlemasterlong": "lingerpotturtlemaster2", - "areapotionturtlemasterextended": "lingerpotturtlemaster2", - "areapotionturtlemasterex": "lingerpotturtlemaster2", - "areapotionturtlemasterlevel2": "lingerpotturtlemaster2", - "areapotionturtle2": "lingerpotturtlemaster2", - "areapotionturtlelong": "lingerpotturtlemaster2", - "areapotionturtleextended": "lingerpotturtlemaster2", - "areapotionturtleex": "lingerpotturtlemaster2", - "areapotionturtlelevel2": "lingerpotturtlemaster2", - "areapotiontm2": "lingerpotturtlemaster2", - "areapotiontmlong": "lingerpotturtlemaster2", - "areapotiontmextended": "lingerpotturtlemaster2", - "areapotiontmex": "lingerpotturtlemaster2", - "areapotiontmlevel2": "lingerpotturtlemaster2", - "turtlemasterareapotion2": "lingerpotturtlemaster2", - "turtlemasterareapotionlong": "lingerpotturtlemaster2", - "turtlemasterareapotionextended": "lingerpotturtlemaster2", - "turtlemasterareapotionex": "lingerpotturtlemaster2", - "turtlemasterareapotionlevel2": "lingerpotturtlemaster2", - "turtleareapotion2": "lingerpotturtlemaster2", - "turtleareapotionlong": "lingerpotturtlemaster2", - "turtleareapotionextended": "lingerpotturtlemaster2", - "turtleareapotionex": "lingerpotturtlemaster2", - "turtleareapotionlevel2": "lingerpotturtlemaster2", - "tmareapotion2": "lingerpotturtlemaster2", - "tmareapotionlong": "lingerpotturtlemaster2", - "tmareapotionextended": "lingerpotturtlemaster2", - "tmareapotionex": "lingerpotturtlemaster2", - "tmareapotionlevel2": "lingerpotturtlemaster2", - "areapotturtlemaster2": "lingerpotturtlemaster2", - "areapotturtlemasterlong": "lingerpotturtlemaster2", - "areapotturtlemasterextended": "lingerpotturtlemaster2", - "areapotturtlemasterex": "lingerpotturtlemaster2", - "areapotturtlemasterlevel2": "lingerpotturtlemaster2", - "areapotturtle2": "lingerpotturtlemaster2", - "areapotturtlelong": "lingerpotturtlemaster2", - "areapotturtleextended": "lingerpotturtlemaster2", - "areapotturtleex": "lingerpotturtlemaster2", - "areapotturtlelevel2": "lingerpotturtlemaster2", - "areapottm2": "lingerpotturtlemaster2", - "areapottmlong": "lingerpotturtlemaster2", - "areapottmextended": "lingerpotturtlemaster2", - "areapottmex": "lingerpotturtlemaster2", - "areapottmlevel2": "lingerpotturtlemaster2", - "turtlemasterareapot2": "lingerpotturtlemaster2", - "turtlemasterareapotlong": "lingerpotturtlemaster2", - "turtlemasterareapotextended": "lingerpotturtlemaster2", - "turtlemasterareapotex": "lingerpotturtlemaster2", - "turtlemasterareapotlevel2": "lingerpotturtlemaster2", - "turtleareapot2": "lingerpotturtlemaster2", - "turtleareapotlong": "lingerpotturtlemaster2", - "turtleareapotextended": "lingerpotturtlemaster2", - "turtleareapotex": "lingerpotturtlemaster2", - "turtleareapotlevel2": "lingerpotturtlemaster2", - "tmareapot2": "lingerpotturtlemaster2", - "tmareapotlong": "lingerpotturtlemaster2", - "tmareapotextended": "lingerpotturtlemaster2", - "tmareapotex": "lingerpotturtlemaster2", - "tmareapotlevel2": "lingerpotturtlemaster2", - "cloudpotionturtlemaster2": "lingerpotturtlemaster2", - "cloudpotionturtlemasterlong": "lingerpotturtlemaster2", - "cloudpotionturtlemasterextended": "lingerpotturtlemaster2", - "cloudpotionturtlemasterex": "lingerpotturtlemaster2", - "cloudpotionturtlemasterlevel2": "lingerpotturtlemaster2", - "cloudpotionturtle2": "lingerpotturtlemaster2", - "cloudpotionturtlelong": "lingerpotturtlemaster2", - "cloudpotionturtleextended": "lingerpotturtlemaster2", - "cloudpotionturtleex": "lingerpotturtlemaster2", - "cloudpotionturtlelevel2": "lingerpotturtlemaster2", - "cloudpotiontm2": "lingerpotturtlemaster2", - "cloudpotiontmlong": "lingerpotturtlemaster2", - "cloudpotiontmextended": "lingerpotturtlemaster2", - "cloudpotiontmex": "lingerpotturtlemaster2", - "cloudpotiontmlevel2": "lingerpotturtlemaster2", - "turtlemastercloudpotion2": "lingerpotturtlemaster2", - "turtlemastercloudpotionlong": "lingerpotturtlemaster2", - "turtlemastercloudpotionextended": "lingerpotturtlemaster2", - "turtlemastercloudpotionex": "lingerpotturtlemaster2", - "turtlemastercloudpotionlevel2": "lingerpotturtlemaster2", - "turtlecloudpotion2": "lingerpotturtlemaster2", - "turtlecloudpotionlong": "lingerpotturtlemaster2", - "turtlecloudpotionextended": "lingerpotturtlemaster2", - "turtlecloudpotionex": "lingerpotturtlemaster2", - "turtlecloudpotionlevel2": "lingerpotturtlemaster2", - "tmcloudpotion2": "lingerpotturtlemaster2", - "tmcloudpotionlong": "lingerpotturtlemaster2", - "tmcloudpotionextended": "lingerpotturtlemaster2", - "tmcloudpotionex": "lingerpotturtlemaster2", - "tmcloudpotionlevel2": "lingerpotturtlemaster2", - "cloudpotturtlemaster2": "lingerpotturtlemaster2", - "cloudpotturtlemasterlong": "lingerpotturtlemaster2", - "cloudpotturtlemasterextended": "lingerpotturtlemaster2", - "cloudpotturtlemasterex": "lingerpotturtlemaster2", - "cloudpotturtlemasterlevel2": "lingerpotturtlemaster2", - "cloudpotturtle2": "lingerpotturtlemaster2", - "cloudpotturtlelong": "lingerpotturtlemaster2", - "cloudpotturtleextended": "lingerpotturtlemaster2", - "cloudpotturtleex": "lingerpotturtlemaster2", - "cloudpotturtlelevel2": "lingerpotturtlemaster2", - "cloudpottm2": "lingerpotturtlemaster2", - "cloudpottmlong": "lingerpotturtlemaster2", - "cloudpottmextended": "lingerpotturtlemaster2", - "cloudpottmex": "lingerpotturtlemaster2", - "cloudpottmlevel2": "lingerpotturtlemaster2", - "turtlemastercloudpot2": "lingerpotturtlemaster2", - "turtlemastercloudpotlong": "lingerpotturtlemaster2", - "turtlemastercloudpotextended": "lingerpotturtlemaster2", - "turtlemastercloudpotex": "lingerpotturtlemaster2", - "turtlemastercloudpotlevel2": "lingerpotturtlemaster2", - "turtlecloudpot2": "lingerpotturtlemaster2", - "turtlecloudpotlong": "lingerpotturtlemaster2", - "turtlecloudpotextended": "lingerpotturtlemaster2", - "turtlecloudpotex": "lingerpotturtlemaster2", - "turtlecloudpotlevel2": "lingerpotturtlemaster2", - "tmcloudpot2": "lingerpotturtlemaster2", - "tmcloudpotlong": "lingerpotturtlemaster2", - "tmcloudpotextended": "lingerpotturtlemaster2", - "tmcloudpotex": "lingerpotturtlemaster2", - "tmcloudpotlevel2": "lingerpotturtlemaster2", - "arrowturtlemaster2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_turtle_master", - "type": "TURTLE_MASTER", - "upgraded": false, - "extended": true - } - }, - "arrowturtlemasterlong": "arrowturtlemaster2", - "arrowturtlemasterextended": "arrowturtlemaster2", - "arrowturtlemasterex": "arrowturtlemaster2", - "arrowturtlemasterlevel2": "arrowturtlemaster2", - "arrowturtle2": "arrowturtlemaster2", - "arrowturtlelong": "arrowturtlemaster2", - "arrowturtleextended": "arrowturtlemaster2", - "arrowturtleex": "arrowturtlemaster2", - "arrowturtlelevel2": "arrowturtlemaster2", - "arrowtm2": "arrowturtlemaster2", - "arrowtmlong": "arrowturtlemaster2", - "arrowtmextended": "arrowturtlemaster2", - "arrowtmex": "arrowturtlemaster2", - "arrowtmlevel2": "arrowturtlemaster2", - "turtlemasterarrow2": "arrowturtlemaster2", - "turtlemasterarrowlong": "arrowturtlemaster2", - "turtlemasterarrowextended": "arrowturtlemaster2", - "turtlemasterarrowex": "arrowturtlemaster2", - "turtlemasterarrowlevel2": "arrowturtlemaster2", - "turtlearrow2": "arrowturtlemaster2", - "turtlearrowlong": "arrowturtlemaster2", - "turtlearrowextended": "arrowturtlemaster2", - "turtlearrowex": "arrowturtlemaster2", - "turtlearrowlevel2": "arrowturtlemaster2", - "tmarrow2": "arrowturtlemaster2", - "tmarrowlong": "arrowturtlemaster2", - "tmarrowextended": "arrowturtlemaster2", - "tmarrowex": "arrowturtlemaster2", - "tmarrowlevel2": "arrowturtlemaster2", - "slowfallingpotion": { - "material": "POTION", - "potionData": { - "vanillaType": "slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": false - } - }, - "slowfallpotion": "slowfallingpotion", - "sfpotion": "slowfallingpotion", - "slowfallingpot": "slowfallingpotion", - "slowfallpot": "slowfallingpotion", - "sfpot": "slowfallingpotion", - "potionofslowfalling": "slowfallingpotion", - "potionofslowfall": "slowfallingpotion", - "potionofsf": "slowfallingpotion", - "potofslowfalling": "slowfallingpotion", - "potofslowfall": "slowfallingpotion", - "potofsf": "slowfallingpotion", - "splashslowfallingpotion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": false - } - }, - "splashslowfallpotion": "splashslowfallingpotion", - "splashsfpotion": "splashslowfallingpotion", - "splslowfallingpotion": "splashslowfallingpotion", - "splslowfallpotion": "splashslowfallingpotion", - "splsfpotion": "splashslowfallingpotion", - "slowfallingsplashpotion": "splashslowfallingpotion", - "slowfallsplashpotion": "splashslowfallingpotion", - "sfsplashpotion": "splashslowfallingpotion", - "splashslowfallingpot": "splashslowfallingpotion", - "splashslowfallpot": "splashslowfallingpotion", - "splashsfpot": "splashslowfallingpotion", - "splslowfallingpot": "splashslowfallingpotion", - "splslowfallpot": "splashslowfallingpotion", - "splsfpot": "splashslowfallingpotion", - "slowfallingsplashpot": "splashslowfallingpotion", - "slowfallsplashpot": "splashslowfallingpotion", - "sfsplashpot": "splashslowfallingpotion", - "lingerpotslowfalling": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": false - } - }, - "lingerpotslowfall": "lingerpotslowfalling", - "lingerpotsf": "lingerpotslowfalling", - "slowfallinglingerpot": "lingerpotslowfalling", - "slowfalllingerpot": "lingerpotslowfalling", - "sflingerpot": "lingerpotslowfalling", - "aoepotionslowfalling": "lingerpotslowfalling", - "aoepotionslowfall": "lingerpotslowfalling", - "aoepotionsf": "lingerpotslowfalling", - "slowfallingaoepoiont": "lingerpotslowfalling", - "slowfallaoepoiont": "lingerpotslowfalling", - "sfaoepoiont": "lingerpotslowfalling", - "aoepotslowfalling": "lingerpotslowfalling", - "aoepotslowfall": "lingerpotslowfalling", - "aoepotsf": "lingerpotslowfalling", - "slowfallingaoepot": "lingerpotslowfalling", - "slowfallaoepot": "lingerpotslowfalling", - "sfaoepot": "lingerpotslowfalling", - "areapotionslowfalling": "lingerpotslowfalling", - "areapotionslowfall": "lingerpotslowfalling", - "areapotionsf": "lingerpotslowfalling", - "slowfallingareapotion": "lingerpotslowfalling", - "slowfallareapotion": "lingerpotslowfalling", - "sfareapotion": "lingerpotslowfalling", - "areapotslowfalling": "lingerpotslowfalling", - "areapotslowfall": "lingerpotslowfalling", - "areapotsf": "lingerpotslowfalling", - "slowfallingareapot": "lingerpotslowfalling", - "slowfallareapot": "lingerpotslowfalling", - "sfareapot": "lingerpotslowfalling", - "cloudpotionslowfalling": "lingerpotslowfalling", - "cloudpotionslowfall": "lingerpotslowfalling", - "cloudpotionsf": "lingerpotslowfalling", - "slowfallingcloudpotion": "lingerpotslowfalling", - "slowfallcloudpotion": "lingerpotslowfalling", - "sfcloudpotion": "lingerpotslowfalling", - "cloudpotslowfalling": "lingerpotslowfalling", - "cloudpotslowfall": "lingerpotslowfalling", - "cloudpotsf": "lingerpotslowfalling", - "slowfallingcloudpot": "lingerpotslowfalling", - "slowfallcloudpot": "lingerpotslowfalling", - "sfcloudpot": "lingerpotslowfalling", - "arrowslowfalling": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": false - } - }, - "arrowslowfall": "arrowslowfalling", - "arrowsf": "arrowslowfalling", - "slowfallingarrow": "arrowslowfalling", - "slowfallarrow": "arrowslowfalling", - "sfarrow": "arrowslowfalling", - "slowfalling2potion": { - "material": "POTION", - "potionData": { - "vanillaType": "long_slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": true - } - }, - "slowfallinglongpotion": "slowfalling2potion", - "slowfallingextendedpotion": "slowfalling2potion", - "slowfallingexpotion": "slowfalling2potion", - "slowfallinglevel2potion": "slowfalling2potion", - "slowfall2potion": "slowfalling2potion", - "slowfalllongpotion": "slowfalling2potion", - "slowfallextendedpotion": "slowfalling2potion", - "slowfallexpotion": "slowfalling2potion", - "slowfalllevel2potion": "slowfalling2potion", - "sf2potion": "slowfalling2potion", - "sflongpotion": "slowfalling2potion", - "sfextendedpotion": "slowfalling2potion", - "sfexpotion": "slowfalling2potion", - "sflevel2potion": "slowfalling2potion", - "slowfalling2pot": "slowfalling2potion", - "slowfallinglongpot": "slowfalling2potion", - "slowfallingextendedpot": "slowfalling2potion", - "slowfallingexpot": "slowfalling2potion", - "slowfallinglevel2pot": "slowfalling2potion", - "slowfall2pot": "slowfalling2potion", - "slowfalllongpot": "slowfalling2potion", - "slowfallextendedpot": "slowfalling2potion", - "slowfallexpot": "slowfalling2potion", - "slowfalllevel2pot": "slowfalling2potion", - "sf2pot": "slowfalling2potion", - "sflongpot": "slowfalling2potion", - "sfextendedpot": "slowfalling2potion", - "sfexpot": "slowfalling2potion", - "sflevel2pot": "slowfalling2potion", - "potionofslowfalling2": "slowfalling2potion", - "potionofslowfallinglong": "slowfalling2potion", - "potionofslowfallingextended": "slowfalling2potion", - "potionofslowfallingex": "slowfalling2potion", - "potionofslowfallinglevel2": "slowfalling2potion", - "potionofslowfall2": "slowfalling2potion", - "potionofslowfalllong": "slowfalling2potion", - "potionofslowfallextended": "slowfalling2potion", - "potionofslowfallex": "slowfalling2potion", - "potionofslowfalllevel2": "slowfalling2potion", - "potionofsf2": "slowfalling2potion", - "potionofsflong": "slowfalling2potion", - "potionofsfextended": "slowfalling2potion", - "potionofsfex": "slowfalling2potion", - "potionofsflevel2": "slowfalling2potion", - "potofslowfalling2": "slowfalling2potion", - "potofslowfallinglong": "slowfalling2potion", - "potofslowfallingextended": "slowfalling2potion", - "potofslowfallingex": "slowfalling2potion", - "potofslowfallinglevel2": "slowfalling2potion", - "potofslowfall2": "slowfalling2potion", - "potofslowfalllong": "slowfalling2potion", - "potofslowfallextended": "slowfalling2potion", - "potofslowfallex": "slowfalling2potion", - "potofslowfalllevel2": "slowfalling2potion", - "potofsf2": "slowfalling2potion", - "potofsflong": "slowfalling2potion", - "potofsfextended": "slowfalling2potion", - "potofsfex": "slowfalling2potion", - "potofsflevel2": "slowfalling2potion", - "splashslowfalling2potion": { - "material": "SPLASH_POTION", - "potionData": { - "vanillaType": "long_slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": true - } - }, - "splashslowfallinglongpotion": "splashslowfalling2potion", - "splashslowfallingextendedpotion": "splashslowfalling2potion", - "splashslowfallingexpotion": "splashslowfalling2potion", - "splashslowfallinglevel2potion": "splashslowfalling2potion", - "splashslowfall2potion": "splashslowfalling2potion", - "splashslowfalllongpotion": "splashslowfalling2potion", - "splashslowfallextendedpotion": "splashslowfalling2potion", - "splashslowfallexpotion": "splashslowfalling2potion", - "splashslowfalllevel2potion": "splashslowfalling2potion", - "splashsf2potion": "splashslowfalling2potion", - "splashsflongpotion": "splashslowfalling2potion", - "splashsfextendedpotion": "splashslowfalling2potion", - "splashsfexpotion": "splashslowfalling2potion", - "splashsflevel2potion": "splashslowfalling2potion", - "splslowfalling2potion": "splashslowfalling2potion", - "splslowfallinglongpotion": "splashslowfalling2potion", - "splslowfallingextendedpotion": "splashslowfalling2potion", - "splslowfallingexpotion": "splashslowfalling2potion", - "splslowfallinglevel2potion": "splashslowfalling2potion", - "splslowfall2potion": "splashslowfalling2potion", - "splslowfalllongpotion": "splashslowfalling2potion", - "splslowfallextendedpotion": "splashslowfalling2potion", - "splslowfallexpotion": "splashslowfalling2potion", - "splslowfalllevel2potion": "splashslowfalling2potion", - "splsf2potion": "splashslowfalling2potion", - "splsflongpotion": "splashslowfalling2potion", - "splsfextendedpotion": "splashslowfalling2potion", - "splsfexpotion": "splashslowfalling2potion", - "splsflevel2potion": "splashslowfalling2potion", - "slowfalling2splashpotion": "splashslowfalling2potion", - "slowfallinglongsplashpotion": "splashslowfalling2potion", - "slowfallingextendedsplashpotion": "splashslowfalling2potion", - "slowfallingexsplashpotion": "splashslowfalling2potion", - "slowfallinglevel2splashpotion": "splashslowfalling2potion", - "slowfall2splashpotion": "splashslowfalling2potion", - "slowfalllongsplashpotion": "splashslowfalling2potion", - "slowfallextendedsplashpotion": "splashslowfalling2potion", - "slowfallexsplashpotion": "splashslowfalling2potion", - "slowfalllevel2splashpotion": "splashslowfalling2potion", - "sf2splashpotion": "splashslowfalling2potion", - "sflongsplashpotion": "splashslowfalling2potion", - "sfextendedsplashpotion": "splashslowfalling2potion", - "sfexsplashpotion": "splashslowfalling2potion", - "sflevel2splashpotion": "splashslowfalling2potion", - "splashslowfalling2pot": "splashslowfalling2potion", - "splashslowfallinglongpot": "splashslowfalling2potion", - "splashslowfallingextendedpot": "splashslowfalling2potion", - "splashslowfallingexpot": "splashslowfalling2potion", - "splashslowfallinglevel2pot": "splashslowfalling2potion", - "splashslowfall2pot": "splashslowfalling2potion", - "splashslowfalllongpot": "splashslowfalling2potion", - "splashslowfallextendedpot": "splashslowfalling2potion", - "splashslowfallexpot": "splashslowfalling2potion", - "splashslowfalllevel2pot": "splashslowfalling2potion", - "splashsf2pot": "splashslowfalling2potion", - "splashsflongpot": "splashslowfalling2potion", - "splashsfextendedpot": "splashslowfalling2potion", - "splashsfexpot": "splashslowfalling2potion", - "splashsflevel2pot": "splashslowfalling2potion", - "splslowfalling2pot": "splashslowfalling2potion", - "splslowfallinglongpot": "splashslowfalling2potion", - "splslowfallingextendedpot": "splashslowfalling2potion", - "splslowfallingexpot": "splashslowfalling2potion", - "splslowfallinglevel2pot": "splashslowfalling2potion", - "splslowfall2pot": "splashslowfalling2potion", - "splslowfalllongpot": "splashslowfalling2potion", - "splslowfallextendedpot": "splashslowfalling2potion", - "splslowfallexpot": "splashslowfalling2potion", - "splslowfalllevel2pot": "splashslowfalling2potion", - "splsf2pot": "splashslowfalling2potion", - "splsflongpot": "splashslowfalling2potion", - "splsfextendedpot": "splashslowfalling2potion", - "splsfexpot": "splashslowfalling2potion", - "splsflevel2pot": "splashslowfalling2potion", - "slowfalling2splashpot": "splashslowfalling2potion", - "slowfallinglongsplashpot": "splashslowfalling2potion", - "slowfallingextendedsplashpot": "splashslowfalling2potion", - "slowfallingexsplashpot": "splashslowfalling2potion", - "slowfallinglevel2splashpot": "splashslowfalling2potion", - "slowfall2splashpot": "splashslowfalling2potion", - "slowfalllongsplashpot": "splashslowfalling2potion", - "slowfallextendedsplashpot": "splashslowfalling2potion", - "slowfallexsplashpot": "splashslowfalling2potion", - "slowfalllevel2splashpot": "splashslowfalling2potion", - "sf2splashpot": "splashslowfalling2potion", - "sflongsplashpot": "splashslowfalling2potion", - "sfextendedsplashpot": "splashslowfalling2potion", - "sfexsplashpot": "splashslowfalling2potion", - "sflevel2splashpot": "splashslowfalling2potion", - "lingerpotslowfalling2": { - "material": "LINGERING_POTION", - "potionData": { - "vanillaType": "long_slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": true - } - }, - "lingerpotslowfallinglong": "lingerpotslowfalling2", - "lingerpotslowfallingextended": "lingerpotslowfalling2", - "lingerpotslowfallingex": "lingerpotslowfalling2", - "lingerpotslowfallinglevel2": "lingerpotslowfalling2", - "lingerpotslowfall2": "lingerpotslowfalling2", - "lingerpotslowfalllong": "lingerpotslowfalling2", - "lingerpotslowfallextended": "lingerpotslowfalling2", - "lingerpotslowfallex": "lingerpotslowfalling2", - "lingerpotslowfalllevel2": "lingerpotslowfalling2", - "lingerpotsf2": "lingerpotslowfalling2", - "lingerpotsflong": "lingerpotslowfalling2", - "lingerpotsfextended": "lingerpotslowfalling2", - "lingerpotsfex": "lingerpotslowfalling2", - "lingerpotsflevel2": "lingerpotslowfalling2", - "slowfallinglingerpot2": "lingerpotslowfalling2", - "slowfallinglingerpotlong": "lingerpotslowfalling2", - "slowfallinglingerpotextended": "lingerpotslowfalling2", - "slowfallinglingerpotex": "lingerpotslowfalling2", - "slowfallinglingerpotlevel2": "lingerpotslowfalling2", - "slowfalllingerpot2": "lingerpotslowfalling2", - "slowfalllingerpotlong": "lingerpotslowfalling2", - "slowfalllingerpotextended": "lingerpotslowfalling2", - "slowfalllingerpotex": "lingerpotslowfalling2", - "slowfalllingerpotlevel2": "lingerpotslowfalling2", - "sflingerpot2": "lingerpotslowfalling2", - "sflingerpotlong": "lingerpotslowfalling2", - "sflingerpotextended": "lingerpotslowfalling2", - "sflingerpotex": "lingerpotslowfalling2", - "sflingerpotlevel2": "lingerpotslowfalling2", - "aoepotionslowfalling2": "lingerpotslowfalling2", - "aoepotionslowfallinglong": "lingerpotslowfalling2", - "aoepotionslowfallingextended": "lingerpotslowfalling2", - "aoepotionslowfallingex": "lingerpotslowfalling2", - "aoepotionslowfallinglevel2": "lingerpotslowfalling2", - "aoepotionslowfall2": "lingerpotslowfalling2", - "aoepotionslowfalllong": "lingerpotslowfalling2", - "aoepotionslowfallextended": "lingerpotslowfalling2", - "aoepotionslowfallex": "lingerpotslowfalling2", - "aoepotionslowfalllevel2": "lingerpotslowfalling2", - "aoepotionsf2": "lingerpotslowfalling2", - "aoepotionsflong": "lingerpotslowfalling2", - "aoepotionsfextended": "lingerpotslowfalling2", - "aoepotionsfex": "lingerpotslowfalling2", - "aoepotionsflevel2": "lingerpotslowfalling2", - "slowfallingaoepoiont2": "lingerpotslowfalling2", - "slowfallingaoepoiontlong": "lingerpotslowfalling2", - "slowfallingaoepoiontextended": "lingerpotslowfalling2", - "slowfallingaoepoiontex": "lingerpotslowfalling2", - "slowfallingaoepoiontlevel2": "lingerpotslowfalling2", - "slowfallaoepoiont2": "lingerpotslowfalling2", - "slowfallaoepoiontlong": "lingerpotslowfalling2", - "slowfallaoepoiontextended": "lingerpotslowfalling2", - "slowfallaoepoiontex": "lingerpotslowfalling2", - "slowfallaoepoiontlevel2": "lingerpotslowfalling2", - "sfaoepoiont2": "lingerpotslowfalling2", - "sfaoepoiontlong": "lingerpotslowfalling2", - "sfaoepoiontextended": "lingerpotslowfalling2", - "sfaoepoiontex": "lingerpotslowfalling2", - "sfaoepoiontlevel2": "lingerpotslowfalling2", - "aoepotslowfalling2": "lingerpotslowfalling2", - "aoepotslowfallinglong": "lingerpotslowfalling2", - "aoepotslowfallingextended": "lingerpotslowfalling2", - "aoepotslowfallingex": "lingerpotslowfalling2", - "aoepotslowfallinglevel2": "lingerpotslowfalling2", - "aoepotslowfall2": "lingerpotslowfalling2", - "aoepotslowfalllong": "lingerpotslowfalling2", - "aoepotslowfallextended": "lingerpotslowfalling2", - "aoepotslowfallex": "lingerpotslowfalling2", - "aoepotslowfalllevel2": "lingerpotslowfalling2", - "aoepotsf2": "lingerpotslowfalling2", - "aoepotsflong": "lingerpotslowfalling2", - "aoepotsfextended": "lingerpotslowfalling2", - "aoepotsfex": "lingerpotslowfalling2", - "aoepotsflevel2": "lingerpotslowfalling2", - "slowfallingaoepot2": "lingerpotslowfalling2", - "slowfallingaoepotlong": "lingerpotslowfalling2", - "slowfallingaoepotextended": "lingerpotslowfalling2", - "slowfallingaoepotex": "lingerpotslowfalling2", - "slowfallingaoepotlevel2": "lingerpotslowfalling2", - "slowfallaoepot2": "lingerpotslowfalling2", - "slowfallaoepotlong": "lingerpotslowfalling2", - "slowfallaoepotextended": "lingerpotslowfalling2", - "slowfallaoepotex": "lingerpotslowfalling2", - "slowfallaoepotlevel2": "lingerpotslowfalling2", - "sfaoepot2": "lingerpotslowfalling2", - "sfaoepotlong": "lingerpotslowfalling2", - "sfaoepotextended": "lingerpotslowfalling2", - "sfaoepotex": "lingerpotslowfalling2", - "sfaoepotlevel2": "lingerpotslowfalling2", - "areapotionslowfalling2": "lingerpotslowfalling2", - "areapotionslowfallinglong": "lingerpotslowfalling2", - "areapotionslowfallingextended": "lingerpotslowfalling2", - "areapotionslowfallingex": "lingerpotslowfalling2", - "areapotionslowfallinglevel2": "lingerpotslowfalling2", - "areapotionslowfall2": "lingerpotslowfalling2", - "areapotionslowfalllong": "lingerpotslowfalling2", - "areapotionslowfallextended": "lingerpotslowfalling2", - "areapotionslowfallex": "lingerpotslowfalling2", - "areapotionslowfalllevel2": "lingerpotslowfalling2", - "areapotionsf2": "lingerpotslowfalling2", - "areapotionsflong": "lingerpotslowfalling2", - "areapotionsfextended": "lingerpotslowfalling2", - "areapotionsfex": "lingerpotslowfalling2", - "areapotionsflevel2": "lingerpotslowfalling2", - "slowfallingareapotion2": "lingerpotslowfalling2", - "slowfallingareapotionlong": "lingerpotslowfalling2", - "slowfallingareapotionextended": "lingerpotslowfalling2", - "slowfallingareapotionex": "lingerpotslowfalling2", - "slowfallingareapotionlevel2": "lingerpotslowfalling2", - "slowfallareapotion2": "lingerpotslowfalling2", - "slowfallareapotionlong": "lingerpotslowfalling2", - "slowfallareapotionextended": "lingerpotslowfalling2", - "slowfallareapotionex": "lingerpotslowfalling2", - "slowfallareapotionlevel2": "lingerpotslowfalling2", - "sfareapotion2": "lingerpotslowfalling2", - "sfareapotionlong": "lingerpotslowfalling2", - "sfareapotionextended": "lingerpotslowfalling2", - "sfareapotionex": "lingerpotslowfalling2", - "sfareapotionlevel2": "lingerpotslowfalling2", - "areapotslowfalling2": "lingerpotslowfalling2", - "areapotslowfallinglong": "lingerpotslowfalling2", - "areapotslowfallingextended": "lingerpotslowfalling2", - "areapotslowfallingex": "lingerpotslowfalling2", - "areapotslowfallinglevel2": "lingerpotslowfalling2", - "areapotslowfall2": "lingerpotslowfalling2", - "areapotslowfalllong": "lingerpotslowfalling2", - "areapotslowfallextended": "lingerpotslowfalling2", - "areapotslowfallex": "lingerpotslowfalling2", - "areapotslowfalllevel2": "lingerpotslowfalling2", - "areapotsf2": "lingerpotslowfalling2", - "areapotsflong": "lingerpotslowfalling2", - "areapotsfextended": "lingerpotslowfalling2", - "areapotsfex": "lingerpotslowfalling2", - "areapotsflevel2": "lingerpotslowfalling2", - "slowfallingareapot2": "lingerpotslowfalling2", - "slowfallingareapotlong": "lingerpotslowfalling2", - "slowfallingareapotextended": "lingerpotslowfalling2", - "slowfallingareapotex": "lingerpotslowfalling2", - "slowfallingareapotlevel2": "lingerpotslowfalling2", - "slowfallareapot2": "lingerpotslowfalling2", - "slowfallareapotlong": "lingerpotslowfalling2", - "slowfallareapotextended": "lingerpotslowfalling2", - "slowfallareapotex": "lingerpotslowfalling2", - "slowfallareapotlevel2": "lingerpotslowfalling2", - "sfareapot2": "lingerpotslowfalling2", - "sfareapotlong": "lingerpotslowfalling2", - "sfareapotextended": "lingerpotslowfalling2", - "sfareapotex": "lingerpotslowfalling2", - "sfareapotlevel2": "lingerpotslowfalling2", - "cloudpotionslowfalling2": "lingerpotslowfalling2", - "cloudpotionslowfallinglong": "lingerpotslowfalling2", - "cloudpotionslowfallingextended": "lingerpotslowfalling2", - "cloudpotionslowfallingex": "lingerpotslowfalling2", - "cloudpotionslowfallinglevel2": "lingerpotslowfalling2", - "cloudpotionslowfall2": "lingerpotslowfalling2", - "cloudpotionslowfalllong": "lingerpotslowfalling2", - "cloudpotionslowfallextended": "lingerpotslowfalling2", - "cloudpotionslowfallex": "lingerpotslowfalling2", - "cloudpotionslowfalllevel2": "lingerpotslowfalling2", - "cloudpotionsf2": "lingerpotslowfalling2", - "cloudpotionsflong": "lingerpotslowfalling2", - "cloudpotionsfextended": "lingerpotslowfalling2", - "cloudpotionsfex": "lingerpotslowfalling2", - "cloudpotionsflevel2": "lingerpotslowfalling2", - "slowfallingcloudpotion2": "lingerpotslowfalling2", - "slowfallingcloudpotionlong": "lingerpotslowfalling2", - "slowfallingcloudpotionextended": "lingerpotslowfalling2", - "slowfallingcloudpotionex": "lingerpotslowfalling2", - "slowfallingcloudpotionlevel2": "lingerpotslowfalling2", - "slowfallcloudpotion2": "lingerpotslowfalling2", - "slowfallcloudpotionlong": "lingerpotslowfalling2", - "slowfallcloudpotionextended": "lingerpotslowfalling2", - "slowfallcloudpotionex": "lingerpotslowfalling2", - "slowfallcloudpotionlevel2": "lingerpotslowfalling2", - "sfcloudpotion2": "lingerpotslowfalling2", - "sfcloudpotionlong": "lingerpotslowfalling2", - "sfcloudpotionextended": "lingerpotslowfalling2", - "sfcloudpotionex": "lingerpotslowfalling2", - "sfcloudpotionlevel2": "lingerpotslowfalling2", - "cloudpotslowfalling2": "lingerpotslowfalling2", - "cloudpotslowfallinglong": "lingerpotslowfalling2", - "cloudpotslowfallingextended": "lingerpotslowfalling2", - "cloudpotslowfallingex": "lingerpotslowfalling2", - "cloudpotslowfallinglevel2": "lingerpotslowfalling2", - "cloudpotslowfall2": "lingerpotslowfalling2", - "cloudpotslowfalllong": "lingerpotslowfalling2", - "cloudpotslowfallextended": "lingerpotslowfalling2", - "cloudpotslowfallex": "lingerpotslowfalling2", - "cloudpotslowfalllevel2": "lingerpotslowfalling2", - "cloudpotsf2": "lingerpotslowfalling2", - "cloudpotsflong": "lingerpotslowfalling2", - "cloudpotsfextended": "lingerpotslowfalling2", - "cloudpotsfex": "lingerpotslowfalling2", - "cloudpotsflevel2": "lingerpotslowfalling2", - "slowfallingcloudpot2": "lingerpotslowfalling2", - "slowfallingcloudpotlong": "lingerpotslowfalling2", - "slowfallingcloudpotextended": "lingerpotslowfalling2", - "slowfallingcloudpotex": "lingerpotslowfalling2", - "slowfallingcloudpotlevel2": "lingerpotslowfalling2", - "slowfallcloudpot2": "lingerpotslowfalling2", - "slowfallcloudpotlong": "lingerpotslowfalling2", - "slowfallcloudpotextended": "lingerpotslowfalling2", - "slowfallcloudpotex": "lingerpotslowfalling2", - "slowfallcloudpotlevel2": "lingerpotslowfalling2", - "sfcloudpot2": "lingerpotslowfalling2", - "sfcloudpotlong": "lingerpotslowfalling2", - "sfcloudpotextended": "lingerpotslowfalling2", - "sfcloudpotex": "lingerpotslowfalling2", - "sfcloudpotlevel2": "lingerpotslowfalling2", - "arrowslowfalling2": { - "material": "TIPPED_ARROW", - "potionData": { - "vanillaType": "long_slow_falling", - "type": "SLOW_FALLING", - "upgraded": false, - "extended": true - } - }, - "arrowslowfallinglong": "arrowslowfalling2", - "arrowslowfallingextended": "arrowslowfalling2", - "arrowslowfallingex": "arrowslowfalling2", - "arrowslowfallinglevel2": "arrowslowfalling2", - "arrowslowfall2": "arrowslowfalling2", - "arrowslowfalllong": "arrowslowfalling2", - "arrowslowfallextended": "arrowslowfalling2", - "arrowslowfallex": "arrowslowfalling2", - "arrowslowfalllevel2": "arrowslowfalling2", - "arrowsf2": "arrowslowfalling2", - "arrowsflong": "arrowslowfalling2", - "arrowsfextended": "arrowslowfalling2", - "arrowsfex": "arrowslowfalling2", - "arrowsflevel2": "arrowslowfalling2", - "slowfallingarrow2": "arrowslowfalling2", - "slowfallingarrowlong": "arrowslowfalling2", - "slowfallingarrowextended": "arrowslowfalling2", - "slowfallingarrowex": "arrowslowfalling2", - "slowfallingarrowlevel2": "arrowslowfalling2", - "slowfallarrow2": "arrowslowfalling2", - "slowfallarrowlong": "arrowslowfalling2", - "slowfallarrowextended": "arrowslowfalling2", - "slowfallarrowex": "arrowslowfalling2", - "slowfallarrowlevel2": "arrowslowfalling2", - "sfarrow2": "arrowslowfalling2", - "sfarrowlong": "arrowslowfalling2", - "sfarrowextended": "arrowslowfalling2", - "sfarrowex": "arrowslowfalling2", - "sfarrowlevel2": "arrowslowfalling2", - "undefined": { - "material": "SPAWNER", - "entity": "TIPPED_ARROW" - }, - "elderguardianmobspawner": { - "material": "SPAWNER", - "entity": "ELDER_GUARDIAN" - }, - "elderguardianmobcage": "elderguardianmobspawner", - "elderguardianmonsterspawner": "elderguardianmobspawner", - "elderguardianmonstercage": "elderguardianmobspawner", - "elderguardianmspawner": "elderguardianmobspawner", - "elderguardianmcage": "elderguardianmobspawner", - "elderguardianspawner": "elderguardianmobspawner", - "elderguardiancage": "elderguardianmobspawner", - "eguardianmobspawner": "elderguardianmobspawner", - "eguardianmobcage": "elderguardianmobspawner", - "eguardianmonsterspawner": "elderguardianmobspawner", - "eguardianmonstercage": "elderguardianmobspawner", - "eguardianmspawner": "elderguardianmobspawner", - "eguardianmcage": "elderguardianmobspawner", - "eguardianspawner": "elderguardianmobspawner", - "eguardiancage": "elderguardianmobspawner", - "witherskeletonmobspawner": { - "material": "SPAWNER", - "entity": "WITHER_SKELETON" - }, - "witherskeletonmobcage": "witherskeletonmobspawner", - "witherskeletonmonsterspawner": "witherskeletonmobspawner", - "witherskeletonmonstercage": "witherskeletonmobspawner", - "witherskeletonmspawner": "witherskeletonmobspawner", - "witherskeletonmcage": "witherskeletonmobspawner", - "witherskeletonspawner": "witherskeletonmobspawner", - "witherskeletoncage": "witherskeletonmobspawner", - "wskeletonmobspawner": "witherskeletonmobspawner", - "wskeletonmobcage": "witherskeletonmobspawner", - "wskeletonmonsterspawner": "witherskeletonmobspawner", - "wskeletonmonstercage": "witherskeletonmobspawner", - "wskeletonmspawner": "witherskeletonmobspawner", - "wskeletonmcage": "witherskeletonmobspawner", - "wskeletonspawner": "witherskeletonmobspawner", - "wskeletoncage": "witherskeletonmobspawner", - "witherskmobspawner": "witherskeletonmobspawner", - "witherskmobcage": "witherskeletonmobspawner", - "witherskmonsterspawner": "witherskeletonmobspawner", - "witherskmonstercage": "witherskeletonmobspawner", - "witherskmspawner": "witherskeletonmobspawner", - "witherskmcage": "witherskeletonmobspawner", - "witherskspawner": "witherskeletonmobspawner", - "witherskcage": "witherskeletonmobspawner", - "wskmobspawner": "witherskeletonmobspawner", - "wskmobcage": "witherskeletonmobspawner", - "wskmonsterspawner": "witherskeletonmobspawner", - "wskmonstercage": "witherskeletonmobspawner", - "wskmspawner": "witherskeletonmobspawner", - "wskmcage": "witherskeletonmobspawner", - "wskspawner": "witherskeletonmobspawner", - "wskcage": "witherskeletonmobspawner", - "withermobspawner": "witherskeletonmobspawner", - "withermobcage": "witherskeletonmobspawner", - "withermonsterspawner": "witherskeletonmobspawner", - "withermonstercage": "witherskeletonmobspawner", - "withermspawner": "witherskeletonmobspawner", - "withermcage": "witherskeletonmobspawner", - "witherspawner": "witherskeletonmobspawner", - "withercage": "witherskeletonmobspawner", - "straymobspawner": { - "material": "SPAWNER", - "entity": "STRAY" - }, - "straymobcage": "straymobspawner", - "straymonsterspawner": "straymobspawner", - "straymonstercage": "straymobspawner", - "straymspawner": "straymobspawner", - "straymcage": "straymobspawner", - "strayspawner": "straymobspawner", - "straycage": "straymobspawner", - "huskmobspawner": { - "material": "SPAWNER", - "entity": "HUSK" - }, - "huskmobcage": "huskmobspawner", - "huskmonsterspawner": "huskmobspawner", - "huskmonstercage": "huskmobspawner", - "huskmspawner": "huskmobspawner", - "huskmcage": "huskmobspawner", - "huskspawner": "huskmobspawner", - "huskcage": "huskmobspawner", - "zombievillagermobspawner": { - "material": "SPAWNER", - "entity": "ZOMBIE_VILLAGER" - }, - "zombievillagermobcage": "zombievillagermobspawner", - "zombievillagermonsterspawner": "zombievillagermobspawner", - "zombievillagermonstercage": "zombievillagermobspawner", - "zombievillagermspawner": "zombievillagermobspawner", - "zombievillagermcage": "zombievillagermobspawner", - "zombievillagerspawner": "zombievillagermobspawner", - "zombievillagercage": "zombievillagermobspawner", - "zvillagermobspawner": "zombievillagermobspawner", - "zvillagermobcage": "zombievillagermobspawner", - "zvillagermonsterspawner": "zombievillagermobspawner", - "zvillagermonstercage": "zombievillagermobspawner", - "zvillagermspawner": "zombievillagermobspawner", - "zvillagermcage": "zombievillagermobspawner", - "zvillagerspawner": "zombievillagermobspawner", - "zvillagercage": "zombievillagermobspawner", - "deadvillagermobspawner": "zombievillagermobspawner", - "deadvillagermobcage": "zombievillagermobspawner", - "deadvillagermonsterspawner": "zombievillagermobspawner", - "deadvillagermonstercage": "zombievillagermobspawner", - "deadvillagermspawner": "zombievillagermobspawner", - "deadvillagermcage": "zombievillagermobspawner", - "deadvillagerspawner": "zombievillagermobspawner", - "deadvillagercage": "zombievillagermobspawner", - "dvillagermobspawner": "zombievillagermobspawner", - "dvillagermobcage": "zombievillagermobspawner", - "dvillagermonsterspawner": "zombievillagermobspawner", - "dvillagermonstercage": "zombievillagermobspawner", - "dvillagermspawner": "zombievillagermobspawner", - "dvillagermcage": "zombievillagermobspawner", - "dvillagerspawner": "zombievillagermobspawner", - "dvillagercage": "zombievillagermobspawner", - "zvillmobspawner": "zombievillagermobspawner", - "zvillmobcage": "zombievillagermobspawner", - "zvillmonsterspawner": "zombievillagermobspawner", - "zvillmonstercage": "zombievillagermobspawner", - "zvillmspawner": "zombievillagermobspawner", - "zvillmcage": "zombievillagermobspawner", - "zvillspawner": "zombievillagermobspawner", - "zvillcage": "zombievillagermobspawner", - "dvillmobspawner": "zombievillagermobspawner", - "dvillmobcage": "zombievillagermobspawner", - "dvillmonsterspawner": "zombievillagermobspawner", - "dvillmonstercage": "zombievillagermobspawner", - "dvillmspawner": "zombievillagermobspawner", - "dvillmcage": "zombievillagermobspawner", - "dvillspawner": "zombievillagermobspawner", - "dvillcage": "zombievillagermobspawner", - "skeletonhorsemobspawner": { - "material": "SPAWNER", - "entity": "SKELETON_HORSE" - }, - "skeletonhorsemobcage": "skeletonhorsemobspawner", - "skeletonhorsemonsterspawner": "skeletonhorsemobspawner", - "skeletonhorsemonstercage": "skeletonhorsemobspawner", - "skeletonhorsemspawner": "skeletonhorsemobspawner", - "skeletonhorsemcage": "skeletonhorsemobspawner", - "skeletonhorsespawner": "skeletonhorsemobspawner", - "skeletonhorsecage": "skeletonhorsemobspawner", - "shorsemobspawner": "skeletonhorsemobspawner", - "shorsemobcage": "skeletonhorsemobspawner", - "shorsemonsterspawner": "skeletonhorsemobspawner", - "shorsemonstercage": "skeletonhorsemobspawner", - "shorsemspawner": "skeletonhorsemobspawner", - "shorsemcage": "skeletonhorsemobspawner", - "shorsespawner": "skeletonhorsemobspawner", - "shorsecage": "skeletonhorsemobspawner", - "bonehorsemobspawner": "skeletonhorsemobspawner", - "bonehorsemobcage": "skeletonhorsemobspawner", - "bonehorsemonsterspawner": "skeletonhorsemobspawner", - "bonehorsemonstercage": "skeletonhorsemobspawner", - "bonehorsemspawner": "skeletonhorsemobspawner", - "bonehorsemcage": "skeletonhorsemobspawner", - "bonehorsespawner": "skeletonhorsemobspawner", - "bonehorsecage": "skeletonhorsemobspawner", - "zombiehorsemobspawner": { - "material": "SPAWNER", - "entity": "ZOMBIE_HORSE" - }, - "zombiehorsemobcage": "zombiehorsemobspawner", - "zombiehorsemonsterspawner": "zombiehorsemobspawner", - "zombiehorsemonstercage": "zombiehorsemobspawner", - "zombiehorsemspawner": "zombiehorsemobspawner", - "zombiehorsemcage": "zombiehorsemobspawner", - "zombiehorsespawner": "zombiehorsemobspawner", - "zombiehorsecage": "zombiehorsemobspawner", - "zhorsemobspawner": "zombiehorsemobspawner", - "zhorsemobcage": "zombiehorsemobspawner", - "zhorsemonsterspawner": "zombiehorsemobspawner", - "zhorsemonstercage": "zombiehorsemobspawner", - "zhorsemspawner": "zombiehorsemobspawner", - "zhorsemcage": "zombiehorsemobspawner", - "zhorsespawner": "zombiehorsemobspawner", - "zhorsecage": "zombiehorsemobspawner", - "donkeymobspawner": { - "material": "SPAWNER", - "entity": "DONKEY" - }, - "donkeymobcage": "donkeymobspawner", - "donkeymonsterspawner": "donkeymobspawner", - "donkeymonstercage": "donkeymobspawner", - "donkeymspawner": "donkeymobspawner", - "donkeymcage": "donkeymobspawner", - "donkeyspawner": "donkeymobspawner", - "donkeycage": "donkeymobspawner", - "mulemobspawner": { - "material": "SPAWNER", - "entity": "MULE" - }, - "mulemobcage": "mulemobspawner", - "mulemonsterspawner": "mulemobspawner", - "mulemonstercage": "mulemobspawner", - "mulemspawner": "mulemobspawner", - "mulemcage": "mulemobspawner", - "mulespawner": "mulemobspawner", - "mulecage": "mulemobspawner", - "evokermobspawner": { - "material": "SPAWNER", - "entity": "EVOKER" - }, - "evokermobcage": "evokermobspawner", - "evokermonsterspawner": "evokermobspawner", - "evokermonstercage": "evokermobspawner", - "evokermspawner": "evokermobspawner", - "evokermcage": "evokermobspawner", - "evokerspawner": "evokermobspawner", - "evokercage": "evokermobspawner", - "vexmobspawner": { - "material": "SPAWNER", - "entity": "VEX" - }, - "vexmobcage": "vexmobspawner", - "vexmonsterspawner": "vexmobspawner", - "vexmonstercage": "vexmobspawner", - "vexmspawner": "vexmobspawner", - "vexmcage": "vexmobspawner", - "vexspawner": "vexmobspawner", - "vexcage": "vexmobspawner", - "vindicatormobspawner": { - "material": "SPAWNER", - "entity": "VINDICATOR" - }, - "vindicatormobcage": "vindicatormobspawner", - "vindicatormonsterspawner": "vindicatormobspawner", - "vindicatormonstercage": "vindicatormobspawner", - "vindicatormspawner": "vindicatormobspawner", - "vindicatormcage": "vindicatormobspawner", - "vindicatorspawner": "vindicatormobspawner", - "vindicatorcage": "vindicatormobspawner", - "vinmobspawner": "vindicatormobspawner", - "vinmobcage": "vindicatormobspawner", - "vinmonsterspawner": "vindicatormobspawner", - "vinmonstercage": "vindicatormobspawner", - "vinmspawner": "vindicatormobspawner", - "vinmcage": "vindicatormobspawner", - "vinspawner": "vindicatormobspawner", - "vincage": "vindicatormobspawner", - "creepermobspawner": { - "material": "SPAWNER", - "entity": "CREEPER" - }, - "creepermobcage": "creepermobspawner", - "creepermonsterspawner": "creepermobspawner", - "creepermonstercage": "creepermobspawner", - "creepermspawner": "creepermobspawner", - "creepermcage": "creepermobspawner", - "creeperspawner": "creepermobspawner", - "creepercage": "creepermobspawner", - "crmobspawner": "creepermobspawner", - "crmobcage": "creepermobspawner", - "crmonsterspawner": "creepermobspawner", - "crmonstercage": "creepermobspawner", - "crmspawner": "creepermobspawner", - "crmcage": "creepermobspawner", - "crspawner": "creepermobspawner", - "crcage": "creepermobspawner", - "skeletonmobspawner": { - "material": "SPAWNER", - "entity": "SKELETON" - }, - "skeletonmobcage": "skeletonmobspawner", - "skeletonmonsterspawner": "skeletonmobspawner", - "skeletonmonstercage": "skeletonmobspawner", - "skeletonmspawner": "skeletonmobspawner", - "skeletonmcage": "skeletonmobspawner", - "skeletonspawner": "skeletonmobspawner", - "skeletoncage": "skeletonmobspawner", - "skmobspawner": "skeletonmobspawner", - "skmobcage": "skeletonmobspawner", - "skmonsterspawner": "skeletonmobspawner", - "skmonstercage": "skeletonmobspawner", - "skmspawner": "skeletonmobspawner", - "skmcage": "skeletonmobspawner", - "skspawner": "skeletonmobspawner", - "skcage": "skeletonmobspawner", - "spidermobspawner": { - "material": "SPAWNER", - "entity": "SPIDER" - }, - "spidermobcage": "spidermobspawner", - "spidermonsterspawner": "spidermobspawner", - "spidermonstercage": "spidermobspawner", - "spidermspawner": "spidermobspawner", - "spidermcage": "spidermobspawner", - "spiderspawner": "spidermobspawner", - "spidercage": "spidermobspawner", - "giantmobspawner": { - "material": "SPAWNER", - "entity": "GIANT" - }, - "giantmobcage": "giantmobspawner", - "giantmonsterspawner": "giantmobspawner", - "giantmonstercage": "giantmobspawner", - "giantmspawner": "giantmobspawner", - "giantmcage": "giantmobspawner", - "giantspawner": "giantmobspawner", - "giantcage": "giantmobspawner", - "zombiemobspawner": { - "material": "SPAWNER", - "entity": "ZOMBIE" - }, - "zombiemobcage": "zombiemobspawner", - "zombiemonsterspawner": "zombiemobspawner", - "zombiemonstercage": "zombiemobspawner", - "zombiemspawner": "zombiemobspawner", - "zombiemcage": "zombiemobspawner", - "zombiespawner": "zombiemobspawner", - "zombiecage": "zombiemobspawner", - "slimemobspawner": { - "material": "SPAWNER", - "entity": "SLIME" - }, - "slimemobcage": "slimemobspawner", - "slimemonsterspawner": "slimemobspawner", - "slimemonstercage": "slimemobspawner", - "slimemspawner": "slimemobspawner", - "slimemcage": "slimemobspawner", - "slimespawner": "slimemobspawner", - "slimecage": "slimemobspawner", - "ghastmobspawner": { - "material": "SPAWNER", - "entity": "GHAST" - }, - "ghastmobcage": "ghastmobspawner", - "ghastmonsterspawner": "ghastmobspawner", - "ghastmonstercage": "ghastmobspawner", - "ghastmspawner": "ghastmobspawner", - "ghastmcage": "ghastmobspawner", - "ghastspawner": "ghastmobspawner", - "ghastcage": "ghastmobspawner", - "zombiepigmanmobspawner": { - "material": "SPAWNER", - "entity": "PIG_ZOMBIE" - }, - "zombiepigmanmobcage": "zombiepigmanmobspawner", - "zombiepigmanmonsterspawner": "zombiepigmanmobspawner", - "zombiepigmanmonstercage": "zombiepigmanmobspawner", - "zombiepigmanmspawner": "zombiepigmanmobspawner", - "zombiepigmanmcage": "zombiepigmanmobspawner", - "zombiepigmanspawner": "zombiepigmanmobspawner", - "zombiepigmancage": "zombiepigmanmobspawner", - "zpigmanmobspawner": "zombiepigmanmobspawner", - "zpigmanmobcage": "zombiepigmanmobspawner", - "zpigmanmonsterspawner": "zombiepigmanmobspawner", - "zpigmanmonstercage": "zombiepigmanmobspawner", - "zpigmanmspawner": "zombiepigmanmobspawner", - "zpigmanmcage": "zombiepigmanmobspawner", - "zpigmanspawner": "zombiepigmanmobspawner", - "zpigmancage": "zombiepigmanmobspawner", - "pigmanmobspawner": "zombiepigmanmobspawner", - "pigmanmobcage": "zombiepigmanmobspawner", - "pigmanmonsterspawner": "zombiepigmanmobspawner", - "pigmanmonstercage": "zombiepigmanmobspawner", - "pigmanmspawner": "zombiepigmanmobspawner", - "pigmanmcage": "zombiepigmanmobspawner", - "pigmanspawner": "zombiepigmanmobspawner", - "pigmancage": "zombiepigmanmobspawner", - "zombiepmanmobspawner": "zombiepigmanmobspawner", - "zombiepmanmobcage": "zombiepigmanmobspawner", - "zombiepmanmonsterspawner": "zombiepigmanmobspawner", - "zombiepmanmonstercage": "zombiepigmanmobspawner", - "zombiepmanmspawner": "zombiepigmanmobspawner", - "zombiepmanmcage": "zombiepigmanmobspawner", - "zombiepmanspawner": "zombiepigmanmobspawner", - "zombiepmancage": "zombiepigmanmobspawner", - "zpmanmobspawner": "zombiepigmanmobspawner", - "zpmanmobcage": "zombiepigmanmobspawner", - "zpmanmonsterspawner": "zombiepigmanmobspawner", - "zpmanmonstercage": "zombiepigmanmobspawner", - "zpmanmspawner": "zombiepigmanmobspawner", - "zpmanmcage": "zombiepigmanmobspawner", - "zpmanspawner": "zombiepigmanmobspawner", - "zpmancage": "zombiepigmanmobspawner", - "zombiepigmmobspawner": "zombiepigmanmobspawner", - "zombiepigmmobcage": "zombiepigmanmobspawner", - "zombiepigmmonsterspawner": "zombiepigmanmobspawner", - "zombiepigmmonstercage": "zombiepigmanmobspawner", - "zombiepigmmspawner": "zombiepigmanmobspawner", - "zombiepigmmcage": "zombiepigmanmobspawner", - "zombiepigmspawner": "zombiepigmanmobspawner", - "zombiepigmcage": "zombiepigmanmobspawner", - "zpigmmobspawner": "zombiepigmanmobspawner", - "zpigmmobcage": "zombiepigmanmobspawner", - "zpigmmonsterspawner": "zombiepigmanmobspawner", - "zpigmmonstercage": "zombiepigmanmobspawner", - "zpigmmspawner": "zombiepigmanmobspawner", - "zpigmmcage": "zombiepigmanmobspawner", - "zpigmspawner": "zombiepigmanmobspawner", - "zpigmcage": "zombiepigmanmobspawner", - "zombiepigmobspawner": "zombiepigmanmobspawner", - "zombiepigmobcage": "zombiepigmanmobspawner", - "zombiepigmonsterspawner": "zombiepigmanmobspawner", - "zombiepigmonstercage": "zombiepigmanmobspawner", - "zombiepigspawner": "zombiepigmanmobspawner", - "zombiepigcage": "zombiepigmanmobspawner", - "zpigmobspawner": "zombiepigmanmobspawner", - "zpigmobcage": "zombiepigmanmobspawner", - "zpigmonsterspawner": "zombiepigmanmobspawner", - "zpigmonstercage": "zombiepigmanmobspawner", - "zpigspawner": "zombiepigmanmobspawner", - "zpigcage": "zombiepigmanmobspawner", - "zombiepmmobspawner": "zombiepigmanmobspawner", - "zombiepmmobcage": "zombiepigmanmobspawner", - "zombiepmmonsterspawner": "zombiepigmanmobspawner", - "zombiepmmonstercage": "zombiepigmanmobspawner", - "zombiepmmspawner": "zombiepigmanmobspawner", - "zombiepmmcage": "zombiepigmanmobspawner", - "zombiepmspawner": "zombiepigmanmobspawner", - "zombiepmcage": "zombiepigmanmobspawner", - "zombiepmobspawner": "zombiepigmanmobspawner", - "zombiepmobcage": "zombiepigmanmobspawner", - "zombiepmonsterspawner": "zombiepigmanmobspawner", - "zombiepmonstercage": "zombiepigmanmobspawner", - "zombiepspawner": "zombiepigmanmobspawner", - "zombiepcage": "zombiepigmanmobspawner", - "zombiepigmenmobspawner": "zombiepigmanmobspawner", - "zombiepigmenmobcage": "zombiepigmanmobspawner", - "zombiepigmenmonsterspawner": "zombiepigmanmobspawner", - "zombiepigmenmonstercage": "zombiepigmanmobspawner", - "zombiepigmenmspawner": "zombiepigmanmobspawner", - "zombiepigmenmcage": "zombiepigmanmobspawner", - "zombiepigmenspawner": "zombiepigmanmobspawner", - "zombiepigmencage": "zombiepigmanmobspawner", - "zpigmenmobspawner": "zombiepigmanmobspawner", - "zpigmenmobcage": "zombiepigmanmobspawner", - "zpigmenmonsterspawner": "zombiepigmanmobspawner", - "zpigmenmonstercage": "zombiepigmanmobspawner", - "zpigmenmspawner": "zombiepigmanmobspawner", - "zpigmenmcage": "zombiepigmanmobspawner", - "zpigmenspawner": "zombiepigmanmobspawner", - "zpigmencage": "zombiepigmanmobspawner", - "pigmenmobspawner": "zombiepigmanmobspawner", - "pigmenmobcage": "zombiepigmanmobspawner", - "pigmenmonsterspawner": "zombiepigmanmobspawner", - "pigmenmonstercage": "zombiepigmanmobspawner", - "pigmenmspawner": "zombiepigmanmobspawner", - "pigmenmcage": "zombiepigmanmobspawner", - "pigmenspawner": "zombiepigmanmobspawner", - "pigmencage": "zombiepigmanmobspawner", - "endermanmobspawner": { - "material": "SPAWNER", - "entity": "ENDERMAN" - }, - "endermanmobcage": "endermanmobspawner", - "endermanmonsterspawner": "endermanmobspawner", - "endermanmonstercage": "endermanmobspawner", - "endermanmspawner": "endermanmobspawner", - "endermanmcage": "endermanmobspawner", - "endermanspawner": "endermanmobspawner", - "endermancage": "endermanmobspawner", - "cavespidermobspawner": { - "material": "SPAWNER", - "entity": "CAVE_SPIDER" - }, - "cavespidermobcage": "cavespidermobspawner", - "cavespidermonsterspawner": "cavespidermobspawner", - "cavespidermonstercage": "cavespidermobspawner", - "cavespidermspawner": "cavespidermobspawner", - "cavespidermcage": "cavespidermobspawner", - "cavespiderspawner": "cavespidermobspawner", - "cavespidercage": "cavespidermobspawner", - "silverfishmobspawner": { - "material": "SPAWNER", - "entity": "SILVERFISH" - }, - "silverfishmobcage": "silverfishmobspawner", - "silverfishmonsterspawner": "silverfishmobspawner", - "silverfishmonstercage": "silverfishmobspawner", - "silverfishmspawner": "silverfishmobspawner", - "silverfishmcage": "silverfishmobspawner", - "silverfishspawner": "silverfishmobspawner", - "silverfishcage": "silverfishmobspawner", - "blazemobspawner": { - "material": "SPAWNER", - "entity": "BLAZE" - }, - "blazemobcage": "blazemobspawner", - "blazemonsterspawner": "blazemobspawner", - "blazemonstercage": "blazemobspawner", - "blazemspawner": "blazemobspawner", - "blazemcage": "blazemobspawner", - "blazespawner": "blazemobspawner", - "blazecage": "blazemobspawner", - "lavaslimemobspawner": { - "material": "SPAWNER", - "entity": "MAGMA_CUBE" - }, - "lavaslimemobcage": "lavaslimemobspawner", - "lavaslimemonsterspawner": "lavaslimemobspawner", - "lavaslimemonstercage": "lavaslimemobspawner", - "lavaslimemspawner": "lavaslimemobspawner", - "lavaslimemcage": "lavaslimemobspawner", - "lavaslimespawner": "lavaslimemobspawner", - "lavaslimecage": "lavaslimemobspawner", - "lavacubemobspawner": "lavaslimemobspawner", - "lavacubemobcage": "lavaslimemobspawner", - "lavacubemonsterspawner": "lavaslimemobspawner", - "lavacubemonstercage": "lavaslimemobspawner", - "lavacubemspawner": "lavaslimemobspawner", - "lavacubemcage": "lavaslimemobspawner", - "lavacubespawner": "lavaslimemobspawner", - "lavacubecage": "lavaslimemobspawner", - "magmacubemobspawner": "lavaslimemobspawner", - "magmacubemobcage": "lavaslimemobspawner", - "magmacubemonsterspawner": "lavaslimemobspawner", - "magmacubemonstercage": "lavaslimemobspawner", - "magmacubemspawner": "lavaslimemobspawner", - "magmacubemcage": "lavaslimemobspawner", - "magmacubespawner": "lavaslimemobspawner", - "magmacubecage": "lavaslimemobspawner", - "magmaslimemobspawner": "lavaslimemobspawner", - "magmaslimemobcage": "lavaslimemobspawner", - "magmaslimemonsterspawner": "lavaslimemobspawner", - "magmaslimemonstercage": "lavaslimemobspawner", - "magmaslimemspawner": "lavaslimemobspawner", - "magmaslimemcage": "lavaslimemobspawner", - "magmaslimespawner": "lavaslimemobspawner", - "magmaslimecage": "lavaslimemobspawner", - "batmobspawner": { - "material": "SPAWNER", - "entity": "BAT" - }, - "batmobcage": "batmobspawner", - "batmonsterspawner": "batmobspawner", - "batmonstercage": "batmobspawner", - "batmspawner": "batmobspawner", - "batmcage": "batmobspawner", - "batspawner": "batmobspawner", - "batcage": "batmobspawner", - "witchmobspawner": { - "material": "SPAWNER", - "entity": "WITCH" - }, - "witchmobcage": "witchmobspawner", - "witchmonsterspawner": "witchmobspawner", - "witchmonstercage": "witchmobspawner", - "witchmspawner": "witchmobspawner", - "witchmcage": "witchmobspawner", - "witchspawner": "witchmobspawner", - "witchcage": "witchmobspawner", - "endermitemobspawner": { - "material": "SPAWNER", - "entity": "ENDERMITE" - }, - "endermitemobcage": "endermitemobspawner", - "endermitemonsterspawner": "endermitemobspawner", - "endermitemonstercage": "endermitemobspawner", - "endermitemspawner": "endermitemobspawner", - "endermitemcage": "endermitemobspawner", - "endermitespawner": "endermitemobspawner", - "endermitecage": "endermitemobspawner", - "guardianmobspawner": { - "material": "SPAWNER", - "entity": "GUARDIAN" - }, - "guardianmobcage": "guardianmobspawner", - "guardianmonsterspawner": "guardianmobspawner", - "guardianmonstercage": "guardianmobspawner", - "guardianmspawner": "guardianmobspawner", - "guardianmcage": "guardianmobspawner", - "guardianspawner": "guardianmobspawner", - "guardiancage": "guardianmobspawner", - "shulkermobspawner": { - "material": "SPAWNER", - "entity": "SHULKER" - }, - "shulkermobcage": "shulkermobspawner", - "shulkermonsterspawner": "shulkermobspawner", - "shulkermonstercage": "shulkermobspawner", - "shulkermspawner": "shulkermobspawner", - "shulkermcage": "shulkermobspawner", - "shulkerspawner": "shulkermobspawner", - "shulkercage": "shulkermobspawner", - "shulkmobspawner": "shulkermobspawner", - "shulkmobcage": "shulkermobspawner", - "shulkmonsterspawner": "shulkermobspawner", - "shulkmonstercage": "shulkermobspawner", - "shulkmspawner": "shulkermobspawner", - "shulkmcage": "shulkermobspawner", - "shulkspawner": "shulkermobspawner", - "shulkcage": "shulkermobspawner", - "pigmobspawner": { - "material": "SPAWNER", - "entity": "PIG" - }, - "pigmobcage": "pigmobspawner", - "pigmonsterspawner": "pigmobspawner", - "pigmonstercage": "pigmobspawner", - "pigmspawner": "pigmobspawner", - "pigmcage": "pigmobspawner", - "pigspawner": "pigmobspawner", - "pigcage": "pigmobspawner", - "mobspawner": "pigmobspawner", - "mobcage": "pigmobspawner", - "monsterspawner": "pigmobspawner", - "monstercage": "pigmobspawner", - "mspawner": "pigmobspawner", - "mcage": "pigmobspawner", - "cage": "pigmobspawner", - "sheepmobspawner": { - "material": "SPAWNER", - "entity": "SHEEP" - }, - "sheepmobcage": "sheepmobspawner", - "sheepmonsterspawner": "sheepmobspawner", - "sheepmonstercage": "sheepmobspawner", - "sheepmspawner": "sheepmobspawner", - "sheepmcage": "sheepmobspawner", - "sheepspawner": "sheepmobspawner", - "sheepcage": "sheepmobspawner", - "cowmobspawner": { - "material": "SPAWNER", - "entity": "COW" - }, - "cowmobcage": "cowmobspawner", - "cowmonsterspawner": "cowmobspawner", - "cowmonstercage": "cowmobspawner", - "cowmspawner": "cowmobspawner", - "cowmcage": "cowmobspawner", - "cowspawner": "cowmobspawner", - "cowcage": "cowmobspawner", - "chickenmobspawner": { - "material": "SPAWNER", - "entity": "CHICKEN" - }, - "chickenmobcage": "chickenmobspawner", - "chickenmonsterspawner": "chickenmobspawner", - "chickenmonstercage": "chickenmobspawner", - "chickenmspawner": "chickenmobspawner", - "chickenmcage": "chickenmobspawner", - "chickenspawner": "chickenmobspawner", - "chickencage": "chickenmobspawner", - "squidmobspawner": { - "material": "SPAWNER", - "entity": "SQUID" - }, - "squidmobcage": "squidmobspawner", - "squidmonsterspawner": "squidmobspawner", - "squidmonstercage": "squidmobspawner", - "squidmspawner": "squidmobspawner", - "squidmcage": "squidmobspawner", - "squidspawner": "squidmobspawner", - "squidcage": "squidmobspawner", - "wolfmobspawner": { - "material": "SPAWNER", - "entity": "WOLF" - }, - "wolfmobcage": "wolfmobspawner", - "wolfmonsterspawner": "wolfmobspawner", - "wolfmonstercage": "wolfmobspawner", - "wolfmspawner": "wolfmobspawner", - "wolfmcage": "wolfmobspawner", - "wolfspawner": "wolfmobspawner", - "wolfcage": "wolfmobspawner", - "mooshroommobspawner": { - "material": "SPAWNER", - "entity": "MUSHROOM_COW" - }, - "mooshroommobcage": "mooshroommobspawner", - "mooshroommonsterspawner": "mooshroommobspawner", - "mooshroommonstercage": "mooshroommobspawner", - "mooshroommspawner": "mooshroommobspawner", - "mooshroommcage": "mooshroommobspawner", - "mooshroomspawner": "mooshroommobspawner", - "mooshroomcage": "mooshroommobspawner", - "mushroommobspawner": "mooshroommobspawner", - "mushroommobcage": "mooshroommobspawner", - "mushroommonsterspawner": "mooshroommobspawner", - "mushroommonstercage": "mooshroommobspawner", - "mushroommspawner": "mooshroommobspawner", - "mushroommcage": "mooshroommobspawner", - "mushroomspawner": "mooshroommobspawner", - "mushroomcage": "mooshroommobspawner", - "mushroomcowmobspawner": "mooshroommobspawner", - "mushroomcowmobcage": "mooshroommobspawner", - "mushroomcowmonsterspawner": "mooshroommobspawner", - "mushroomcowmonstercage": "mooshroommobspawner", - "mushroomcowmspawner": "mooshroommobspawner", - "mushroomcowmcage": "mooshroommobspawner", - "mushroomcowspawner": "mooshroommobspawner", - "mushroomcowcage": "mooshroommobspawner", - "ocelotmobspawner": { - "material": "SPAWNER", - "entity": "OCELOT" - }, - "ocelotmobcage": "ocelotmobspawner", - "ocelotmonsterspawner": "ocelotmobspawner", - "ocelotmonstercage": "ocelotmobspawner", - "ocelotmspawner": "ocelotmobspawner", - "ocelotmcage": "ocelotmobspawner", - "ocelotspawner": "ocelotmobspawner", - "ocelotcage": "ocelotmobspawner", - "catmobspawner": "ocelotmobspawner", - "catmobcage": "ocelotmobspawner", - "catmonsterspawner": "ocelotmobspawner", - "catmonstercage": "ocelotmobspawner", - "catmspawner": "ocelotmobspawner", - "catmcage": "ocelotmobspawner", - "catspawner": "ocelotmobspawner", - "catcage": "ocelotmobspawner", - "irongolemmobspawner": { - "material": "SPAWNER", - "entity": "IRON_GOLEM" - }, - "irongolemmobcage": "irongolemmobspawner", - "irongolemmonsterspawner": "irongolemmobspawner", - "irongolemmonstercage": "irongolemmobspawner", - "irongolemmspawner": "irongolemmobspawner", - "irongolemmcage": "irongolemmobspawner", - "irongolemspawner": "irongolemmobspawner", - "irongolemcage": "irongolemmobspawner", - "igolemmobspawner": "irongolemmobspawner", - "igolemmobcage": "irongolemmobspawner", - "igolemmonsterspawner": "irongolemmobspawner", - "igolemmonstercage": "irongolemmobspawner", - "igolemmspawner": "irongolemmobspawner", - "igolemmcage": "irongolemmobspawner", - "igolemspawner": "irongolemmobspawner", - "igolemcage": "irongolemmobspawner", - "horsemobspawner": { - "material": "SPAWNER", - "entity": "HORSE" - }, - "horsemobcage": "horsemobspawner", - "horsemonsterspawner": "horsemobspawner", - "horsemonstercage": "horsemobspawner", - "horsemspawner": "horsemobspawner", - "horsemcage": "horsemobspawner", - "horsespawner": "horsemobspawner", - "horsecage": "horsemobspawner", - "rabbitmobspawner": { - "material": "SPAWNER", - "entity": "RABBIT" - }, - "rabbitmobcage": "rabbitmobspawner", - "rabbitmonsterspawner": "rabbitmobspawner", - "rabbitmonstercage": "rabbitmobspawner", - "rabbitmspawner": "rabbitmobspawner", - "rabbitmcage": "rabbitmobspawner", - "rabbitspawner": "rabbitmobspawner", - "rabbitcage": "rabbitmobspawner", - "polarbearmobspawner": { - "material": "SPAWNER", - "entity": "POLAR_BEAR" - }, - "polarbearmobcage": "polarbearmobspawner", - "polarbearmonsterspawner": "polarbearmobspawner", - "polarbearmonstercage": "polarbearmobspawner", - "polarbearmspawner": "polarbearmobspawner", - "polarbearmcage": "polarbearmobspawner", - "polarbearspawner": "polarbearmobspawner", - "polarbearcage": "polarbearmobspawner", - "polarmobspawner": "polarbearmobspawner", - "polarmobcage": "polarbearmobspawner", - "polarmonsterspawner": "polarbearmobspawner", - "polarmonstercage": "polarbearmobspawner", - "polarmspawner": "polarbearmobspawner", - "polarmcage": "polarbearmobspawner", - "polarspawner": "polarbearmobspawner", - "polarcage": "polarbearmobspawner", - "bearmobspawner": "polarbearmobspawner", - "bearmobcage": "polarbearmobspawner", - "bearmonsterspawner": "polarbearmobspawner", - "bearmonstercage": "polarbearmobspawner", - "bearmspawner": "polarbearmobspawner", - "bearmcage": "polarbearmobspawner", - "bearspawner": "polarbearmobspawner", - "bearcage": "polarbearmobspawner", - "llamamobspawner": { - "material": "SPAWNER", - "entity": "LLAMA" - }, - "llamamobcage": "llamamobspawner", - "llamamonsterspawner": "llamamobspawner", - "llamamonstercage": "llamamobspawner", - "llamamspawner": "llamamobspawner", - "llamamcage": "llamamobspawner", - "llamaspawner": "llamamobspawner", - "llamacage": "llamamobspawner", - "parrotmobspawner": { - "material": "SPAWNER", - "entity": "PARROT" - }, - "parrotmobcage": "parrotmobspawner", - "parrotmonsterspawner": "parrotmobspawner", - "parrotmonstercage": "parrotmobspawner", - "parrotmspawner": "parrotmobspawner", - "parrotmcage": "parrotmobspawner", - "parrotspawner": "parrotmobspawner", - "parrotcage": "parrotmobspawner", - "villagermobspawner": { - "material": "SPAWNER", - "entity": "VILLAGER" - }, - "villagermobcage": "villagermobspawner", - "villagermonsterspawner": "villagermobspawner", - "villagermonstercage": "villagermobspawner", - "villagermspawner": "villagermobspawner", - "villagermcage": "villagermobspawner", - "villagerspawner": "villagermobspawner", - "villagercage": "villagermobspawner", - "turtlemobspawner": { - "material": "SPAWNER", - "entity": "TURTLE" - }, - "turtlemobcage": "turtlemobspawner", - "turtlemonsterspawner": "turtlemobspawner", - "turtlemonstercage": "turtlemobspawner", - "turtlemspawner": "turtlemobspawner", - "turtlemcage": "turtlemobspawner", - "turtlespawner": "turtlemobspawner", - "turtlecage": "turtlemobspawner", - "phantommobspawner": { - "material": "SPAWNER", - "entity": "PHANTOM" - }, - "phantommobcage": "phantommobspawner", - "phantommonsterspawner": "phantommobspawner", - "phantommonstercage": "phantommobspawner", - "phantommspawner": "phantommobspawner", - "phantommcage": "phantommobspawner", - "phantomspawner": "phantommobspawner", - "phantomcage": "phantommobspawner", - "codmobspawner": { - "material": "SPAWNER", - "entity": "COD" - }, - "codmobcage": "codmobspawner", - "codmonsterspawner": "codmobspawner", - "codmonstercage": "codmobspawner", - "codmspawner": "codmobspawner", - "codmcage": "codmobspawner", - "codspawner": "codmobspawner", - "codcage": "codmobspawner", - "salmonmobspawner": { - "material": "SPAWNER", - "entity": "SALMON" - }, - "salmonmobcage": "salmonmobspawner", - "salmonmonsterspawner": "salmonmobspawner", - "salmonmonstercage": "salmonmobspawner", - "salmonmspawner": "salmonmobspawner", - "salmonmcage": "salmonmobspawner", - "salmonspawner": "salmonmobspawner", - "salmoncage": "salmonmobspawner", - "pufferfishmobspawner": { - "material": "SPAWNER", - "entity": "PUFFERFISH" - }, - "pufferfishmobcage": "pufferfishmobspawner", - "pufferfishmonsterspawner": "pufferfishmobspawner", - "pufferfishmonstercage": "pufferfishmobspawner", - "pufferfishmspawner": "pufferfishmobspawner", - "pufferfishmcage": "pufferfishmobspawner", - "pufferfishspawner": "pufferfishmobspawner", - "pufferfishcage": "pufferfishmobspawner", - "puffermobspawner": "pufferfishmobspawner", - "puffermobcage": "pufferfishmobspawner", - "puffermonsterspawner": "pufferfishmobspawner", - "puffermonstercage": "pufferfishmobspawner", - "puffermspawner": "pufferfishmobspawner", - "puffermcage": "pufferfishmobspawner", - "pufferspawner": "pufferfishmobspawner", - "puffercage": "pufferfishmobspawner", - "pfishmobspawner": "pufferfishmobspawner", - "pfishmobcage": "pufferfishmobspawner", - "pfishmonsterspawner": "pufferfishmobspawner", - "pfishmonstercage": "pufferfishmobspawner", - "pfishmspawner": "pufferfishmobspawner", - "pfishmcage": "pufferfishmobspawner", - "pfishspawner": "pufferfishmobspawner", - "pfishcage": "pufferfishmobspawner", - "tropicalfishmobspawner": { - "material": "SPAWNER", - "entity": "TROPICAL_FISH" - }, - "tropicalfishmobcage": "tropicalfishmobspawner", - "tropicalfishmonsterspawner": "tropicalfishmobspawner", - "tropicalfishmonstercage": "tropicalfishmobspawner", - "tropicalfishmspawner": "tropicalfishmobspawner", - "tropicalfishmcage": "tropicalfishmobspawner", - "tropicalfishspawner": "tropicalfishmobspawner", - "tropicalfishcage": "tropicalfishmobspawner", - "tropicfishmobspawner": "tropicalfishmobspawner", - "tropicfishmobcage": "tropicalfishmobspawner", - "tropicfishmonsterspawner": "tropicalfishmobspawner", - "tropicfishmonstercage": "tropicalfishmobspawner", - "tropicfishmspawner": "tropicalfishmobspawner", - "tropicfishmcage": "tropicalfishmobspawner", - "tropicfishspawner": "tropicalfishmobspawner", - "tropicfishcage": "tropicalfishmobspawner", - "tfishmobspawner": "tropicalfishmobspawner", - "tfishmobcage": "tropicalfishmobspawner", - "tfishmonsterspawner": "tropicalfishmobspawner", - "tfishmonstercage": "tropicalfishmobspawner", - "tfishmspawner": "tropicalfishmobspawner", - "tfishmcage": "tropicalfishmobspawner", - "tfishspawner": "tropicalfishmobspawner", - "tfishcage": "tropicalfishmobspawner", - "tropicalfmobspawner": "tropicalfishmobspawner", - "tropicalfmobcage": "tropicalfishmobspawner", - "tropicalfmonsterspawner": "tropicalfishmobspawner", - "tropicalfmonstercage": "tropicalfishmobspawner", - "tropicalfmspawner": "tropicalfishmobspawner", - "tropicalfmcage": "tropicalfishmobspawner", - "tropicalfspawner": "tropicalfishmobspawner", - "tropicalfcage": "tropicalfishmobspawner", - "tropicfmobspawner": "tropicalfishmobspawner", - "tropicfmobcage": "tropicalfishmobspawner", - "tropicfmonsterspawner": "tropicalfishmobspawner", - "tropicfmonstercage": "tropicalfishmobspawner", - "tropicfmspawner": "tropicalfishmobspawner", - "tropicfmcage": "tropicalfishmobspawner", - "tropicfspawner": "tropicalfishmobspawner", - "tropicfcage": "tropicalfishmobspawner", - "drownedmobspawner": { - "material": "SPAWNER", - "entity": "DROWNED" - }, - "drownedmobcage": "drownedmobspawner", - "drownedmonsterspawner": "drownedmobspawner", - "drownedmonstercage": "drownedmobspawner", - "drownedmspawner": "drownedmobspawner", - "drownedmcage": "drownedmobspawner", - "drownedspawner": "drownedmobspawner", - "drownedcage": "drownedmobspawner", - "dolphinmobspawner": { - "material": "SPAWNER", - "entity": "DOLPHIN" - }, - "dolphinmobcage": "dolphinmobspawner", - "dolphinmonsterspawner": "dolphinmobspawner", - "dolphinmonstercage": "dolphinmobspawner", - "dolphinmspawner": "dolphinmobspawner", - "dolphinmcage": "dolphinmobspawner", - "dolphinspawner": "dolphinmobspawner", - "dolphincage": "dolphinmobspawner", - "eccomobspawner": "dolphinmobspawner", - "eccomobcage": "dolphinmobspawner", - "eccomonsterspawner": "dolphinmobspawner", - "eccomonstercage": "dolphinmobspawner", - "eccomspawner": "dolphinmobspawner", - "eccomcage": "dolphinmobspawner", - "eccospawner": "dolphinmobspawner", - "eccocage": "dolphinmobspawner" -} \ No newline at end of file + "acacia_boat": { + "material": "ACACIA_BOAT" + }, + "acaciaboat": "acacia_boat", + "aboat": "acacia_boat", + "acacia_button": { + "material": "ACACIA_BUTTON" + }, + "acaciabutton": "acacia_button", + "acacia_door": { + "material": "ACACIA_DOOR" + }, + "acaciadoor": "acacia_door", + "acacia_fence": { + "material": "ACACIA_FENCE" + }, + "acaciafence": "acacia_fence", + "afence": "acacia_fence", + "acacia_fence_gate": { + "material": "ACACIA_FENCE_GATE" + }, + "acaciafencegate": "acacia_fence_gate", + "acaciagate": "acacia_fence_gate", + "afencegate": "acacia_fence_gate", + "agate": "acacia_fence_gate", + "acacia_leaves": { + "material": "ACACIA_LEAVES" + }, + "acacialeaves": "acacia_leaves", + "acaciatreeleaves": "acacia_leaves", + "acacialogleaves": "acacia_leaves", + "acaciatrunkleaves": "acacia_leaves", + "acaciawoodleaves": "acacia_leaves", + "acaciatreeleaf": "acacia_leaves", + "acacialogleaf": "acacia_leaves", + "acaciatrunkleaf": "acacia_leaves", + "acaciawoodleaf": "acacia_leaves", + "acacialeaf": "acacia_leaves", + "acaciatreeleave": "acacia_leaves", + "acacialogleave": "acacia_leaves", + "acaciatrunkleave": "acacia_leaves", + "acaciawoodleave": "acacia_leaves", + "acacialeave": "acacia_leaves", + "atreeleaves": "acacia_leaves", + "alogleaves": "acacia_leaves", + "atrunkleaves": "acacia_leaves", + "awoodleaves": "acacia_leaves", + "aleaves": "acacia_leaves", + "atreeleaf": "acacia_leaves", + "alogleaf": "acacia_leaves", + "atrunkleaf": "acacia_leaves", + "awoodleaf": "acacia_leaves", + "aleaf": "acacia_leaves", + "atreeleave": "acacia_leaves", + "alogleave": "acacia_leaves", + "atrunkleave": "acacia_leaves", + "awoodleave": "acacia_leaves", + "aleave": "acacia_leaves", + "acacia_log": { + "material": "ACACIA_LOG" + }, + "acacialog": "acacia_log", + "acacia": "acacia_log", + "logacacia": "acacia_log", + "acaciatrunk": "acacia_log", + "acaciatree": "acacia_log", + "a": "acacia_log", + "loga": "acacia_log", + "atrunk": "acacia_log", + "alog": "acacia_log", + "atree": "acacia_log", + "acacia_planks": { + "material": "ACACIA_PLANKS" + }, + "acaciaplanks": "acacia_planks", + "acaciawoodenplank": "acacia_planks", + "acaciawoodplank": "acacia_planks", + "acaciawplank": "acacia_planks", + "acaciaplankwooden": "acacia_planks", + "acaciaplankwood": "acacia_planks", + "acaciaplankw": "acacia_planks", + "acaciaplank": "acacia_planks", + "awoodenplank": "acacia_planks", + "awoodplank": "acacia_planks", + "awplank": "acacia_planks", + "aplankwooden": "acacia_planks", + "aplankwood": "acacia_planks", + "aplankw": "acacia_planks", + "aplank": "acacia_planks", + "acacia_pressure_plate": { + "material": "ACACIA_PRESSURE_PLATE" + }, + "acaciapressureplate": "acacia_pressure_plate", + "acaciapressplate": "acacia_pressure_plate", + "acaciapplate": "acacia_pressure_plate", + "acaciaplate": "acacia_pressure_plate", + "apressureplate": "acacia_pressure_plate", + "apressplate": "acacia_pressure_plate", + "applate": "acacia_pressure_plate", + "aplate": "acacia_pressure_plate", + "acacia_sapling": { + "material": "ACACIA_SAPLING" + }, + "acaciasapling": "acacia_sapling", + "acaciatreesapling": "acacia_sapling", + "acacialogsapling": "acacia_sapling", + "acaciatrunksapling": "acacia_sapling", + "acaciawoodsapling": "acacia_sapling", + "asapling": "acacia_sapling", + "atreesapling": "acacia_sapling", + "alogsapling": "acacia_sapling", + "atrunksapling": "acacia_sapling", + "awoodsapling": "acacia_sapling", + "acacia_sign": { + "material": "ACACIA_SIGN", + "fallbacks": [ + "SIGN" + ] + }, + "acaciasign": "acacia_sign", + "acacia_slab": { + "material": "ACACIA_SLAB" + }, + "acaciaslab": "acacia_slab", + "acaciawoodenstep": "acacia_slab", + "acaciawoodstep": "acacia_slab", + "acaciawstep": "acacia_slab", + "acaciastep": "acacia_slab", + "acaciawoodenslab": "acacia_slab", + "acaciawoodslab": "acacia_slab", + "acaciawslab": "acacia_slab", + "acaciawoodenhalfblock": "acacia_slab", + "acaciawoodhalfblock": "acacia_slab", + "acaciawhalfblock": "acacia_slab", + "acaciahalfblock": "acacia_slab", + "awoodenstep": "acacia_slab", + "awoodstep": "acacia_slab", + "awstep": "acacia_slab", + "astep": "acacia_slab", + "awoodenslab": "acacia_slab", + "awoodslab": "acacia_slab", + "awslab": "acacia_slab", + "awoodenhalfblock": "acacia_slab", + "awoodhalfblock": "acacia_slab", + "awhalfblock": "acacia_slab", + "ahalfblock": "acacia_slab", + "acacia_stairs": { + "material": "ACACIA_STAIRS" + }, + "acaciastairs": "acacia_stairs", + "acaciawoodenstairs": "acacia_stairs", + "acaciawoodstairs": "acacia_stairs", + "acaciawstairs": "acacia_stairs", + "acaciawoodenstair": "acacia_stairs", + "acaciawoodstair": "acacia_stairs", + "acaciawstair": "acacia_stairs", + "acaciastair": "acacia_stairs", + "awoodenstairs": "acacia_stairs", + "awoodstairs": "acacia_stairs", + "awstairs": "acacia_stairs", + "awoodenstair": "acacia_stairs", + "awoodstair": "acacia_stairs", + "awstair": "acacia_stairs", + "astair": "acacia_stairs", + "acacia_trapdoor": { + "material": "ACACIA_TRAPDOOR" + }, + "acaciatrapdoor": "acacia_trapdoor", + "acaciadoortrap": "acacia_trapdoor", + "acaciahatch": "acacia_trapdoor", + "acaciatdoor": "acacia_trapdoor", + "acaciadoort": "acacia_trapdoor", + "acaciatrapd": "acacia_trapdoor", + "acaciadtrap": "acacia_trapdoor", + "atrapdoor": "acacia_trapdoor", + "adoortrap": "acacia_trapdoor", + "ahatch": "acacia_trapdoor", + "atdoor": "acacia_trapdoor", + "adoort": "acacia_trapdoor", + "atrapd": "acacia_trapdoor", + "adtrap": "acacia_trapdoor", + "acacia_wall_sign": { + "material": "ACACIA_WALL_SIGN", + "unspawnable": true + }, + "acaciawallsign": "acacia_wall_sign", + "acacia_wood": { + "material": "ACACIA_WOOD" + }, + "acaciawood": "acacia_wood", + "acacialogall": "acacia_wood", + "acaciatrunkall": "acacia_wood", + "acaciatreeall": "acacia_wood", + "awood": "acacia_wood", + "alogall": "acacia_wood", + "atrunkall": "acacia_wood", + "atreeall": "acacia_wood", + "activator_rail": { + "material": "ACTIVATOR_RAIL" + }, + "activatorrail": "activator_rail", + "activatorrails": "activator_rail", + "activatortrack": "activator_rail", + "activaterails": "activator_rail", + "activaterail": "activator_rail", + "activatetrack": "activator_rail", + "triggerrails": "activator_rail", + "triggerrail": "activator_rail", + "triggertrack": "activator_rail", + "arails": "activator_rail", + "arail": "activator_rail", + "atrack": "activator_rail", + "trails": "activator_rail", + "trail": "activator_rail", + "ttrack": "activator_rail", + "air": "air", + "allium": "allium", + "magentaallium": "allium", + "magentaflower": "allium", + "andesite": "andesite", + "astone": "andesite", + "andesite_slab": { + "material": "ANDESITE_SLAB" + }, + "andesiteslab": "andesite_slab", + "andesite_stairs": { + "material": "ANDESITE_STAIRS" + }, + "andesitestairs": "andesite_stairs", + "andesite_wall": { + "material": "ANDESITE_WALL" + }, + "andesitewall": "andesite_wall", + "anvil": "anvil", + "apple": "apple", + "armor_stand": { + "material": "ARMOR_STAND" + }, + "armorstand": "armor_stand", + "arrow": "arrow", + "attached_melon_stem": { + "material": "ATTACHED_MELON_STEM", + "unspawnable": true + }, + "attachedmelonstem": "attached_melon_stem", + "attached_pumpkin_stem": { + "material": "ATTACHED_PUMPKIN_STEM", + "unspawnable": true + }, + "attachedpumpkinstem": "attached_pumpkin_stem", + "azure_bluet": { + "material": "AZURE_BLUET" + }, + "azurebluet": "azure_bluet", + "whiteazurebluet": "azure_bluet", + "abluet": "azure_bluet", + "azureb": "azure_bluet", + "houstonia": "azure_bluet", + "baked_potato": { + "material": "BAKED_POTATO" + }, + "bakedpotato": "baked_potato", + "bamboo": "bamboo", + "bamboo_sapling": { + "material": "BAMBOO_SAPLING", + "unspawnable": true + }, + "bamboosapling": "bamboo_sapling", + "barrel": "barrel", + "barrier": "barrier", + "bat_spawn_egg": { + "material": "BAT_SPAWN_EGG" + }, + "batspawnegg": "bat_spawn_egg", + "bategg": "bat_spawn_egg", + "eggbat": "bat_spawn_egg", + "spawneggbat": "bat_spawn_egg", + "batspawn": "bat_spawn_egg", + "spawnbat": "bat_spawn_egg", + "beacon": "beacon", + "beaconblock": "beacon", + "bedrock": "bedrock", + "oprock": "bedrock", + "opblock": "bedrock", + "adminblock": "bedrock", + "adminrock": "bedrock", + "adminium": "bedrock", + "beef": "beef", + "rawbeef": "beef", + "rawsteak": "beef", + "rawcowmeat": "beef", + "rabeef": "beef", + "rasteak": "beef", + "racowmeat": "beef", + "uncookedbeef": "beef", + "uncookedsteak": "beef", + "uncookedcowmeat": "beef", + "plainbeef": "beef", + "plainsteak": "beef", + "plaincowmeat": "beef", + "steak": "beef", + "cowmeat": "beef", + "beetroot": "beetroot", + "broot": "beetroot", + "beet": "beetroot", + "beets": "beetroot", + "beetplant": "beetroot", + "beetcrop": "beetroot", + "beetroots": { + "material": "BEETROOTS", + "unspawnable": true + }, + "beetroot_seeds": { + "material": "BEETROOT_SEEDS" + }, + "beetrootseeds": "beetroot_seeds", + "beetrootseed": "beetroot_seeds", + "brootseed": "beetroot_seeds", + "brootseeds": "beetroot_seeds", + "beetseed": "beetroot_seeds", + "beetseeds": "beetroot_seeds", + "beetsseeds": "beetroot_seeds", + "beetplantseeds": "beetroot_seeds", + "beetcropseeds": "beetroot_seeds", + "beetroot_soup": { + "material": "BEETROOT_SOUP" + }, + "beetrootsoup": "beetroot_soup", + "brootsoup": "beetroot_soup", + "beetsoup": "beetroot_soup", + "beetssoup": "beetroot_soup", + "beetplantsoup": "beetroot_soup", + "beetcropsoup": "beetroot_soup", + "redsoup": "beetroot_soup", + "bell": "bell", + "birch_boat": { + "material": "BIRCH_BOAT" + }, + "birchboat": "birch_boat", + "bboat": "birch_boat", + "lightboat": "birch_boat", + "lboat": "birch_boat", + "whiteboat": "birch_boat", + "wboat": "birch_boat", + "birch_button": { + "material": "BIRCH_BUTTON" + }, + "birchbutton": "birch_button", + "birch_door": { + "material": "BIRCH_DOOR" + }, + "birchdoor": "birch_door", + "birch_fence": { + "material": "BIRCH_FENCE" + }, + "birchfence": "birch_fence", + "bfence": "birch_fence", + "lightfence": "birch_fence", + "lfence": "birch_fence", + "whitefence": "birch_fence", + "wfence": "birch_fence", + "birch_fence_gate": { + "material": "BIRCH_FENCE_GATE" + }, + "birchfencegate": "birch_fence_gate", + "birchgate": "birch_fence_gate", + "bfencegate": "birch_fence_gate", + "bgate": "birch_fence_gate", + "lightfencegate": "birch_fence_gate", + "lightgate": "birch_fence_gate", + "lfencegate": "birch_fence_gate", + "lgate": "birch_fence_gate", + "whitefencegate": "birch_fence_gate", + "whitegate": "birch_fence_gate", + "wfencegate": "birch_fence_gate", + "wgate": "birch_fence_gate", + "birch_leaves": { + "material": "BIRCH_LEAVES" + }, + "birchleaves": "birch_leaves", + "birchtreeleaves": "birch_leaves", + "birchlogleaves": "birch_leaves", + "birchtrunkleaves": "birch_leaves", + "birchwoodleaves": "birch_leaves", + "birchtreeleaf": "birch_leaves", + "birchlogleaf": "birch_leaves", + "birchtrunkleaf": "birch_leaves", + "birchwoodleaf": "birch_leaves", + "birchleaf": "birch_leaves", + "birchtreeleave": "birch_leaves", + "birchlogleave": "birch_leaves", + "birchtrunkleave": "birch_leaves", + "birchwoodleave": "birch_leaves", + "birchleave": "birch_leaves", + "btreeleaves": "birch_leaves", + "blogleaves": "birch_leaves", + "btrunkleaves": "birch_leaves", + "bwoodleaves": "birch_leaves", + "bleaves": "birch_leaves", + "btreeleaf": "birch_leaves", + "blogleaf": "birch_leaves", + "btrunkleaf": "birch_leaves", + "bwoodleaf": "birch_leaves", + "bleaf": "birch_leaves", + "btreeleave": "birch_leaves", + "blogleave": "birch_leaves", + "btrunkleave": "birch_leaves", + "bwoodleave": "birch_leaves", + "bleave": "birch_leaves", + "lighttreeleaves": "birch_leaves", + "lightlogleaves": "birch_leaves", + "lighttrunkleaves": "birch_leaves", + "lightwoodleaves": "birch_leaves", + "lightleaves": "birch_leaves", + "lighttreeleaf": "birch_leaves", + "lightlogleaf": "birch_leaves", + "lighttrunkleaf": "birch_leaves", + "lightwoodleaf": "birch_leaves", + "lightleaf": "birch_leaves", + "lighttreeleave": "birch_leaves", + "lightlogleave": "birch_leaves", + "lighttrunkleave": "birch_leaves", + "lightwoodleave": "birch_leaves", + "lightleave": "birch_leaves", + "ltreeleaves": "birch_leaves", + "llogleaves": "birch_leaves", + "ltrunkleaves": "birch_leaves", + "lwoodleaves": "birch_leaves", + "lleaves": "birch_leaves", + "ltreeleaf": "birch_leaves", + "llogleaf": "birch_leaves", + "ltrunkleaf": "birch_leaves", + "lwoodleaf": "birch_leaves", + "lleaf": "birch_leaves", + "ltreeleave": "birch_leaves", + "llogleave": "birch_leaves", + "ltrunkleave": "birch_leaves", + "lwoodleave": "birch_leaves", + "lleave": "birch_leaves", + "whitetreeleaves": "birch_leaves", + "whitelogleaves": "birch_leaves", + "whitetrunkleaves": "birch_leaves", + "whitewoodleaves": "birch_leaves", + "whiteleaves": "birch_leaves", + "whitetreeleaf": "birch_leaves", + "whitelogleaf": "birch_leaves", + "whitetrunkleaf": "birch_leaves", + "whitewoodleaf": "birch_leaves", + "whiteleaf": "birch_leaves", + "whitetreeleave": "birch_leaves", + "whitelogleave": "birch_leaves", + "whitetrunkleave": "birch_leaves", + "whitewoodleave": "birch_leaves", + "whiteleave": "birch_leaves", + "wtreeleaves": "birch_leaves", + "wlogleaves": "birch_leaves", + "wtrunkleaves": "birch_leaves", + "wwoodleaves": "birch_leaves", + "wleaves": "birch_leaves", + "wtreeleaf": "birch_leaves", + "wlogleaf": "birch_leaves", + "wtrunkleaf": "birch_leaves", + "wwoodleaf": "birch_leaves", + "wleaf": "birch_leaves", + "wtreeleave": "birch_leaves", + "wlogleave": "birch_leaves", + "wtrunkleave": "birch_leaves", + "wwoodleave": "birch_leaves", + "wleave": "birch_leaves", + "birch_log": { + "material": "BIRCH_LOG" + }, + "birchlog": "birch_log", + "birch": "birch_log", + "logbirch": "birch_log", + "birchtrunk": "birch_log", + "birchtree": "birch_log", + "b": "birch_log", + "logb": "birch_log", + "btrunk": "birch_log", + "blog": "birch_log", + "btree": "birch_log", + "light": "birch_log", + "loglight": "birch_log", + "lighttrunk": "birch_log", + "lightlog": "birch_log", + "lighttree": "birch_log", + "l": "birch_log", + "logl": "birch_log", + "ltrunk": "birch_log", + "llog": "birch_log", + "ltree": "birch_log", + "white": "birch_log", + "logwhite": "birch_log", + "whitetrunk": "birch_log", + "whitelog": "birch_log", + "whitetree": "birch_log", + "w": "birch_log", + "logw": "birch_log", + "wtrunk": "birch_log", + "wlog": "birch_log", + "wtree": "birch_log", + "birch_planks": { + "material": "BIRCH_PLANKS" + }, + "birchplanks": "birch_planks", + "birchwoodenplank": "birch_planks", + "birchwoodplank": "birch_planks", + "birchwplank": "birch_planks", + "birchplankwooden": "birch_planks", + "birchplankwood": "birch_planks", + "birchplankw": "birch_planks", + "birchplank": "birch_planks", + "bwoodenplank": "birch_planks", + "bwoodplank": "birch_planks", + "bwplank": "birch_planks", + "bplankwooden": "birch_planks", + "bplankwood": "birch_planks", + "bplankw": "birch_planks", + "bplank": "birch_planks", + "lightwoodenplank": "birch_planks", + "lightwoodplank": "birch_planks", + "lightwplank": "birch_planks", + "lightplankwooden": "birch_planks", + "lightplankwood": "birch_planks", + "lightplankw": "birch_planks", + "lightplank": "birch_planks", + "lwoodenplank": "birch_planks", + "lwoodplank": "birch_planks", + "lwplank": "birch_planks", + "lplankwooden": "birch_planks", + "lplankwood": "birch_planks", + "lplankw": "birch_planks", + "lplank": "birch_planks", + "whitewoodenplank": "birch_planks", + "whitewoodplank": "birch_planks", + "whitewplank": "birch_planks", + "whiteplankwooden": "birch_planks", + "whiteplankwood": "birch_planks", + "whiteplankw": "birch_planks", + "whiteplank": "birch_planks", + "wwoodenplank": "birch_planks", + "wwoodplank": "birch_planks", + "wwplank": "birch_planks", + "wplankwooden": "birch_planks", + "wplankwood": "birch_planks", + "wplankw": "birch_planks", + "wplank": "oak_planks", + "birch_pressure_plate": { + "material": "BIRCH_PRESSURE_PLATE" + }, + "birchpressureplate": "birch_pressure_plate", + "birchpressplate": "birch_pressure_plate", + "birchpplate": "birch_pressure_plate", + "birchplate": "birch_pressure_plate", + "bpressureplate": "birch_pressure_plate", + "bpressplate": "birch_pressure_plate", + "bpplate": "birch_pressure_plate", + "bplate": "birch_pressure_plate", + "lightpressureplate": "birch_pressure_plate", + "lightpressplate": "birch_pressure_plate", + "lightpplate": "birch_pressure_plate", + "lightplate": "birch_pressure_plate", + "lpressureplate": "birch_pressure_plate", + "lpressplate": "birch_pressure_plate", + "lpplate": "birch_pressure_plate", + "whitepressureplate": "birch_pressure_plate", + "whitepressplate": "birch_pressure_plate", + "whitepplate": "birch_pressure_plate", + "whiteplate": "birch_pressure_plate", + "wpressureplate": "birch_pressure_plate", + "wpressplate": "birch_pressure_plate", + "wpplate": "birch_pressure_plate", + "wplate": "birch_pressure_plate", + "birch_sapling": { + "material": "BIRCH_SAPLING" + }, + "birchsapling": "birch_sapling", + "birchtreesapling": "birch_sapling", + "birchlogsapling": "birch_sapling", + "birchtrunksapling": "birch_sapling", + "birchwoodsapling": "birch_sapling", + "bsapling": "birch_sapling", + "btreesapling": "birch_sapling", + "blogsapling": "birch_sapling", + "btrunksapling": "birch_sapling", + "bwoodsapling": "birch_sapling", + "lightsapling": "birch_sapling", + "lighttreesapling": "birch_sapling", + "lightlogsapling": "birch_sapling", + "lighttrunksapling": "birch_sapling", + "lightwoodsapling": "birch_sapling", + "lsapling": "birch_sapling", + "ltreesapling": "birch_sapling", + "llogsapling": "birch_sapling", + "ltrunksapling": "birch_sapling", + "lwoodsapling": "birch_sapling", + "whitesapling": "birch_sapling", + "whitetreesapling": "birch_sapling", + "whitelogsapling": "birch_sapling", + "whitetrunksapling": "birch_sapling", + "whitewoodsapling": "birch_sapling", + "wsapling": "birch_sapling", + "wtreesapling": "birch_sapling", + "wlogsapling": "birch_sapling", + "wtrunksapling": "birch_sapling", + "wwoodsapling": "birch_sapling", + "birch_sign": { + "material": "BIRCH_SIGN", + "fallbacks": [ + "SIGN" + ] + }, + "birchsign": "birch_sign", + "birch_slab": { + "material": "BIRCH_SLAB" + }, + "birchslab": "birch_slab", + "birchwoodenstep": "birch_slab", + "birchwoodstep": "birch_slab", + "birchwstep": "birch_slab", + "birchstep": "birch_slab", + "birchwoodenslab": "birch_slab", + "birchwoodslab": "birch_slab", + "birchwslab": "birch_slab", + "birchwoodenhalfblock": "birch_slab", + "birchwoodhalfblock": "birch_slab", + "birchwhalfblock": "birch_slab", + "birchhalfblock": "birch_slab", + "bwoodenstep": "birch_slab", + "bwoodstep": "birch_slab", + "bwstep": "birch_slab", + "bstep": "birch_slab", + "bwoodenslab": "birch_slab", + "bwoodslab": "birch_slab", + "bwslab": "birch_slab", + "bwoodenhalfblock": "birch_slab", + "bwoodhalfblock": "birch_slab", + "bwhalfblock": "birch_slab", + "bhalfblock": "birch_slab", + "lightwoodenstep": "birch_slab", + "lightwoodstep": "birch_slab", + "lightwstep": "birch_slab", + "lightstep": "birch_slab", + "lightwoodenslab": "birch_slab", + "lightwoodslab": "birch_slab", + "lightwslab": "birch_slab", + "lightwoodenhalfblock": "birch_slab", + "lightwoodhalfblock": "birch_slab", + "lightwhalfblock": "birch_slab", + "lighthalfblock": "birch_slab", + "lwoodenstep": "birch_slab", + "lwoodstep": "birch_slab", + "lwstep": "birch_slab", + "lstep": "birch_slab", + "lwoodenslab": "birch_slab", + "lwoodslab": "birch_slab", + "lwslab": "birch_slab", + "lwoodenhalfblock": "birch_slab", + "lwoodhalfblock": "birch_slab", + "lwhalfblock": "birch_slab", + "lhalfblock": "birch_slab", + "whitewoodenstep": "birch_slab", + "whitewoodstep": "birch_slab", + "whitewstep": "birch_slab", + "whitestep": "birch_slab", + "whitewoodenslab": "birch_slab", + "whitewoodslab": "birch_slab", + "whitewslab": "birch_slab", + "whitewoodenhalfblock": "birch_slab", + "whitewoodhalfblock": "birch_slab", + "whitewhalfblock": "birch_slab", + "whitehalfblock": "birch_slab", + "wwoodenstep": "birch_slab", + "wwoodstep": "birch_slab", + "wwstep": "birch_slab", + "wstep": "petrified_oak_slab", + "wwoodenslab": "birch_slab", + "wwoodslab": "birch_slab", + "wwslab": "birch_slab", + "wwoodenhalfblock": "birch_slab", + "wwoodhalfblock": "birch_slab", + "wwhalfblock": "birch_slab", + "whalfblock": "petrified_oak_slab", + "birch_stairs": { + "material": "BIRCH_STAIRS" + }, + "birchstairs": "birch_stairs", + "birchwoodenstairs": "birch_stairs", + "birchwoodstairs": "birch_stairs", + "birchwstairs": "birch_stairs", + "birchwoodenstair": "birch_stairs", + "birchwoodstair": "birch_stairs", + "birchwstair": "birch_stairs", + "birchstair": "birch_stairs", + "bwoodenstairs": "birch_stairs", + "bwoodstairs": "birch_stairs", + "bwstairs": "birch_stairs", + "bwoodenstair": "birch_stairs", + "bwoodstair": "birch_stairs", + "bwstair": "birch_stairs", + "bstair": "birch_stairs", + "lightwoodenstairs": "birch_stairs", + "lightwoodstairs": "birch_stairs", + "lightwstairs": "birch_stairs", + "lightwoodenstair": "birch_stairs", + "lightwoodstair": "birch_stairs", + "lightwstair": "birch_stairs", + "lightstair": "birch_stairs", + "lwoodenstairs": "birch_stairs", + "lwoodstairs": "birch_stairs", + "lwstairs": "birch_stairs", + "lwoodenstair": "birch_stairs", + "lwoodstair": "birch_stairs", + "lwstair": "birch_stairs", + "lstair": "birch_stairs", + "whitewoodenstairs": "birch_stairs", + "whitewoodstairs": "birch_stairs", + "whitewstairs": "birch_stairs", + "whitewoodenstair": "birch_stairs", + "whitewoodstair": "birch_stairs", + "whitewstair": "birch_stairs", + "whitestair": "birch_stairs", + "wwoodenstairs": "birch_stairs", + "wwoodstairs": "birch_stairs", + "wwstairs": "birch_stairs", + "wwoodenstair": "birch_stairs", + "wwoodstair": "birch_stairs", + "wwstair": "birch_stairs", + "wstair": "oak_stairs", + "birch_trapdoor": { + "material": "BIRCH_TRAPDOOR" + }, + "birchtrapdoor": "birch_trapdoor", + "birchdoortrap": "birch_trapdoor", + "birchhatch": "birch_trapdoor", + "birchtdoor": "birch_trapdoor", + "birchdoort": "birch_trapdoor", + "birchtrapd": "birch_trapdoor", + "birchdtrap": "birch_trapdoor", + "btrapdoor": "birch_trapdoor", + "bdoortrap": "birch_trapdoor", + "bhatch": "birch_trapdoor", + "btdoor": "birch_trapdoor", + "bdoort": "birch_trapdoor", + "btrapd": "birch_trapdoor", + "bdtrap": "birch_trapdoor", + "lighttrapdoor": "birch_trapdoor", + "lightdoortrap": "birch_trapdoor", + "lighthatch": "birch_trapdoor", + "lighttdoor": "birch_trapdoor", + "lightdoort": "birch_trapdoor", + "lighttrapd": "birch_trapdoor", + "lightdtrap": "birch_trapdoor", + "ltrapdoor": "birch_trapdoor", + "ldoortrap": "birch_trapdoor", + "lhatch": "birch_trapdoor", + "ltdoor": "birch_trapdoor", + "ldoort": "birch_trapdoor", + "ltrapd": "birch_trapdoor", + "ldtrap": "birch_trapdoor", + "whitetrapdoor": "birch_trapdoor", + "whitedoortrap": "birch_trapdoor", + "whitehatch": "birch_trapdoor", + "whitetdoor": "birch_trapdoor", + "whitedoort": "birch_trapdoor", + "whitetrapd": "birch_trapdoor", + "whitedtrap": "birch_trapdoor", + "wtrapdoor": "birch_trapdoor", + "wdoortrap": "birch_trapdoor", + "whatch": "birch_trapdoor", + "wtdoor": "birch_trapdoor", + "wdoort": "birch_trapdoor", + "wtrapd": "birch_trapdoor", + "wdtrap": "birch_trapdoor", + "birch_wall_sign": { + "material": "BIRCH_WALL_SIGN", + "unspawnable": true + }, + "birchwallsign": "birch_wall_sign", + "birch_wood": { + "material": "BIRCH_WOOD" + }, + "birchwood": "birch_wood", + "birchlogall": "birch_wood", + "birchtrunkall": "birch_wood", + "birchtreeall": "birch_wood", + "bwood": "birch_wood", + "blogall": "birch_wood", + "btrunkall": "birch_wood", + "btreeall": "birch_wood", + "lightwood": "birch_wood", + "lightlogall": "birch_wood", + "lighttrunkall": "birch_wood", + "lighttreeall": "birch_wood", + "lwood": "birch_wood", + "llogall": "birch_wood", + "ltrunkall": "birch_wood", + "ltreeall": "birch_wood", + "whitewood": "birch_wood", + "whitelogall": "birch_wood", + "whitetrunkall": "birch_wood", + "whitetreeall": "birch_wood", + "wwood": "birch_wood", + "wlogall": "birch_wood", + "wtrunkall": "birch_wood", + "wtreeall": "birch_wood", + "black_banner": { + "material": "BLACK_BANNER" + }, + "blackbanner": "black_banner", + "bkstandingbanner": "black_banner", + "bkbanner": "black_banner", + "blastandingbanner": "black_banner", + "blabanner": "black_banner", + "blackstandingbanner": "black_banner", + "black_bed": { + "material": "BLACK_BED" + }, + "blackbed": "black_bed", + "bkbed": "black_bed", + "blabed": "black_bed", + "black_carpet": { + "material": "BLACK_CARPET" + }, + "blackcarpet": "black_carpet", + "bkcarpet": "black_carpet", + "bkfloor": "black_carpet", + "blacarpet": "black_carpet", + "blafloor": "black_carpet", + "blackfloor": "black_carpet", + "black_concrete": { + "material": "BLACK_CONCRETE" + }, + "blackconcrete": "black_concrete", + "bkconcrete": "black_concrete", + "blaconcrete": "black_concrete", + "black_concrete_powder": { + "material": "BLACK_CONCRETE_POWDER" + }, + "blackconcretepowder": "black_concrete_powder", + "bkconcretepowder": "black_concrete_powder", + "bkconcretesand": "black_concrete_powder", + "bkcpowder": "black_concrete_powder", + "bkcdust": "black_concrete_powder", + "bkcp": "black_concrete_powder", + "blaconcretepowder": "black_concrete_powder", + "blaconcretesand": "black_concrete_powder", + "blacpowder": "black_concrete_powder", + "blacdust": "black_concrete_powder", + "blacp": "black_concrete_powder", + "blackconcretesand": "black_concrete_powder", + "blackcpowder": "black_concrete_powder", + "blackcdust": "black_concrete_powder", + "blackcp": "black_concrete_powder", + "black_dye": { + "material": "BLACK_DYE", + "fallbacks": [ + "INK_SAC", + "INK_SACK" + ] + }, + "blackdye": "black_dye", + "black_glazed_terracotta": { + "material": "BLACK_GLAZED_TERRACOTTA" + }, + "blackglazedterracotta": "black_glazed_terracotta", + "bkglazedtcota": "black_glazed_terracotta", + "bkglazedterra": "black_glazed_terracotta", + "bkglazedterracotta": "black_glazed_terracotta", + "bkglazedterracota": "black_glazed_terracotta", + "blaglazedtcota": "black_glazed_terracotta", + "blaglazedterra": "black_glazed_terracotta", + "blaglazedterracotta": "black_glazed_terracotta", + "blaglazedterracota": "black_glazed_terracotta", + "blackglazedtcota": "black_glazed_terracotta", + "blackglazedterra": "black_glazed_terracotta", + "blackglazedterracota": "black_glazed_terracotta", + "black_shulker_box": { + "material": "BLACK_SHULKER_BOX" + }, + "blackshulkerbox": "black_shulker_box", + "bkshulkerbox": "black_shulker_box", + "bkchest": "black_shulker_box", + "blashulkerbox": "black_shulker_box", + "blachest": "black_shulker_box", + "blackchest": "black_shulker_box", + "black_stained_glass": { + "material": "BLACK_STAINED_GLASS" + }, + "blackstainedglass": "black_stained_glass", + "bkglass": "black_stained_glass", + "bksglass": "black_stained_glass", + "bkstainedglass": "black_stained_glass", + "blaglass": "black_stained_glass", + "blasglass": "black_stained_glass", + "blastainedglass": "black_stained_glass", + "blackglass": "black_stained_glass", + "blacksglass": "black_stained_glass", + "black_stained_glass_pane": { + "material": "BLACK_STAINED_GLASS_PANE" + }, + "blackstainedglasspane": "black_stained_glass_pane", + "bkglasspane": "black_stained_glass_pane", + "bksglasspane": "black_stained_glass_pane", + "bkstainedglasspane": "black_stained_glass_pane", + "bkgpane": "black_stained_glass_pane", + "blaglasspane": "black_stained_glass_pane", + "blasglasspane": "black_stained_glass_pane", + "blastainedglasspane": "black_stained_glass_pane", + "blagpane": "black_stained_glass_pane", + "blackglasspane": "black_stained_glass_pane", + "blacksglasspane": "black_stained_glass_pane", + "blackgpane": "black_stained_glass_pane", + "black_terracotta": { + "material": "BLACK_TERRACOTTA" + }, + "blackterracotta": "black_terracotta", + "bkclay": "black_terracotta", + "bksclay": "black_terracotta", + "bkstainedclay": "black_terracotta", + "bkterra": "black_terracotta", + "bktcota": "black_terracotta", + "bkterracota": "black_terracotta", + "bkterracotta": "black_terracotta", + "blaclay": "black_terracotta", + "blasclay": "black_terracotta", + "blastainedclay": "black_terracotta", + "blaterra": "black_terracotta", + "blatcota": "black_terracotta", + "blaterracota": "black_terracotta", + "blaterracotta": "black_terracotta", + "blackclay": "black_terracotta", + "blacksclay": "black_terracotta", + "blackstainedclay": "black_terracotta", + "blackterra": "black_terracotta", + "blacktcota": "black_terracotta", + "blackterracota": "black_terracotta", + "black_wall_banner": { + "material": "BLACK_WALL_BANNER", + "unspawnable": true + }, + "blackwallbanner": "black_wall_banner", + "black_wool": { + "material": "BLACK_WOOL" + }, + "blackwool": "black_wool", + "bkwool": "black_wool", + "bkcloth": "black_wool", + "bkcotton": "black_wool", + "blawool": "black_wool", + "blacloth": "black_wool", + "blacotton": "black_wool", + "blackcloth": "black_wool", + "blackcotton": "black_wool", + "blast_furnace": { + "material": "BLAST_FURNACE" + }, + "blastfurnace": "blast_furnace", + "blaze_powder": { + "material": "BLAZE_POWDER" + }, + "blazepowder": "blaze_powder", + "blaze_rod": { + "material": "BLAZE_ROD" + }, + "blazerod": "blaze_rod", + "blaze_spawn_egg": { + "material": "BLAZE_SPAWN_EGG" + }, + "blazespawnegg": "blaze_spawn_egg", + "blazeegg": "blaze_spawn_egg", + "eggblaze": "blaze_spawn_egg", + "spawneggblaze": "blaze_spawn_egg", + "blazespawn": "blaze_spawn_egg", + "spawnblaze": "blaze_spawn_egg", + "blue_banner": { + "material": "BLUE_BANNER" + }, + "bluebanner": "blue_banner", + "blustandingbanner": "blue_banner", + "blubanner": "blue_banner", + "bluestandingbanner": "blue_banner", + "blue_bed": { + "material": "BLUE_BED" + }, + "bluebed": "blue_bed", + "blubed": "blue_bed", + "blue_carpet": { + "material": "BLUE_CARPET" + }, + "bluecarpet": "blue_carpet", + "blucarpet": "blue_carpet", + "blufloor": "blue_carpet", + "bluefloor": "blue_carpet", + "blue_concrete": { + "material": "BLUE_CONCRETE" + }, + "blueconcrete": "blue_concrete", + "bluconcrete": "blue_concrete", + "blue_concrete_powder": { + "material": "BLUE_CONCRETE_POWDER" + }, + "blueconcretepowder": "blue_concrete_powder", + "bluconcretepowder": "blue_concrete_powder", + "bluconcretesand": "blue_concrete_powder", + "blucpowder": "blue_concrete_powder", + "blucdust": "blue_concrete_powder", + "blucp": "blue_concrete_powder", + "blueconcretesand": "blue_concrete_powder", + "bluecpowder": "blue_concrete_powder", + "bluecdust": "blue_concrete_powder", + "bluecp": "blue_concrete_powder", + "blue_dye": { + "material": "BLUE_DYE", + "fallbacks": [ + "LAPIS_LAZULI" + ] + }, + "bluedye": "blue_dye", + "blue_glazed_terracotta": { + "material": "BLUE_GLAZED_TERRACOTTA" + }, + "blueglazedterracotta": "blue_glazed_terracotta", + "bluglazedtcota": "blue_glazed_terracotta", + "bluglazedterra": "blue_glazed_terracotta", + "bluglazedterracotta": "blue_glazed_terracotta", + "bluglazedterracota": "blue_glazed_terracotta", + "blueglazedtcota": "blue_glazed_terracotta", + "blueglazedterra": "blue_glazed_terracotta", + "blueglazedterracota": "blue_glazed_terracotta", + "blue_ice": { + "material": "BLUE_ICE" + }, + "blueice": "blue_ice", + "blue_orchid": { + "material": "BLUE_ORCHID" + }, + "blueorchid": "blue_orchid", + "cyanorchid": "blue_orchid", + "lightblueorchid": "blue_orchid", + "lblueorchid": "blue_orchid", + "orchid": "blue_orchid", + "cyanflower": "blue_orchid", + "lightblueflower": "blue_orchid", + "lblueflower": "blue_orchid", + "blue_shulker_box": { + "material": "BLUE_SHULKER_BOX" + }, + "blueshulkerbox": "blue_shulker_box", + "blushulkerbox": "blue_shulker_box", + "bluchest": "blue_shulker_box", + "bluechest": "blue_shulker_box", + "blue_stained_glass": { + "material": "BLUE_STAINED_GLASS" + }, + "bluestainedglass": "blue_stained_glass", + "bluglass": "blue_stained_glass", + "blusglass": "blue_stained_glass", + "blustainedglass": "blue_stained_glass", + "blueglass": "blue_stained_glass", + "bluesglass": "blue_stained_glass", + "blue_stained_glass_pane": { + "material": "BLUE_STAINED_GLASS_PANE" + }, + "bluestainedglasspane": "blue_stained_glass_pane", + "bluglasspane": "blue_stained_glass_pane", + "blusglasspane": "blue_stained_glass_pane", + "blustainedglasspane": "blue_stained_glass_pane", + "blugpane": "blue_stained_glass_pane", + "blueglasspane": "blue_stained_glass_pane", + "bluesglasspane": "blue_stained_glass_pane", + "bluegpane": "blue_stained_glass_pane", + "blue_terracotta": { + "material": "BLUE_TERRACOTTA" + }, + "blueterracotta": "blue_terracotta", + "bluclay": "blue_terracotta", + "blusclay": "blue_terracotta", + "blustainedclay": "blue_terracotta", + "bluterra": "blue_terracotta", + "blutcota": "blue_terracotta", + "bluterracota": "blue_terracotta", + "bluterracotta": "blue_terracotta", + "blueclay": "blue_terracotta", + "bluesclay": "blue_terracotta", + "bluestainedclay": "blue_terracotta", + "blueterra": "blue_terracotta", + "bluetcota": "blue_terracotta", + "blueterracota": "blue_terracotta", + "blue_wall_banner": { + "material": "BLUE_WALL_BANNER", + "unspawnable": true + }, + "bluewallbanner": "blue_wall_banner", + "blue_wool": { + "material": "BLUE_WOOL" + }, + "bluewool": "blue_wool", + "bluwool": "blue_wool", + "blucloth": "blue_wool", + "blucotton": "blue_wool", + "bluecloth": "blue_wool", + "bluecotton": "blue_wool", + "bone": "bone", + "bone_block": { + "material": "BONE_BLOCK" + }, + "boneblock": "bone_block", + "bone_meal": { + "material": "BONE_MEAL" + }, + "bonemeal": "bone_meal", + "book": "book", + "bookshelf": "bookshelf", + "bshelf": "bookshelf", + "bookcase": "bookshelf", + "casebook": "bookshelf", + "shelfbook": "bookshelf", + "bookblock": "bookshelf", + "blockbook": "bookshelf", + "bow": "bow", + "bowl": "bowl", + "brain_coral": { + "material": "BRAIN_CORAL" + }, + "braincoral": "brain_coral", + "brain_coral_block": { + "material": "BRAIN_CORAL_BLOCK" + }, + "braincoralblock": "brain_coral_block", + "brain_coral_fan": { + "material": "BRAIN_CORAL_FAN" + }, + "braincoralfan": "brain_coral_fan", + "brain_coral_wall_fan": { + "material": "BRAIN_CORAL_WALL_FAN", + "unspawnable": true + }, + "braincoralwallfan": "brain_coral_wall_fan", + "bread": "bread", + "brewing_stand": { + "material": "BREWING_STAND" + }, + "brewingstand": "brewing_stand", + "brick": "brick", + "bricks": "bricks", + "brick_slab": { + "material": "BRICK_SLAB" + }, + "brickslab": "brick_slab", + "brick_stairs": { + "material": "BRICK_STAIRS" + }, + "brickstairs": "brick_stairs", + "brick_wall": { + "material": "BRICK_WALL" + }, + "brickwall": "brick_wall", + "brown_banner": { + "material": "BROWN_BANNER" + }, + "brownbanner": "brown_banner", + "brostandingbanner": "brown_banner", + "brobanner": "brown_banner", + "brownstandingbanner": "brown_banner", + "brown_bed": { + "material": "BROWN_BED" + }, + "brownbed": "brown_bed", + "brobed": "brown_bed", + "brown_carpet": { + "material": "BROWN_CARPET" + }, + "browncarpet": "brown_carpet", + "brocarpet": "brown_carpet", + "brofloor": "brown_carpet", + "brownfloor": "brown_carpet", + "brown_concrete": { + "material": "BROWN_CONCRETE" + }, + "brownconcrete": "brown_concrete", + "broconcrete": "brown_concrete", + "brown_concrete_powder": { + "material": "BROWN_CONCRETE_POWDER" + }, + "brownconcretepowder": "brown_concrete_powder", + "broconcretepowder": "brown_concrete_powder", + "broconcretesand": "brown_concrete_powder", + "brocpowder": "brown_concrete_powder", + "brocdust": "brown_concrete_powder", + "brocp": "brown_concrete_powder", + "brownconcretesand": "brown_concrete_powder", + "browncpowder": "brown_concrete_powder", + "browncdust": "brown_concrete_powder", + "browncp": "brown_concrete_powder", + "brown_dye": { + "material": "BROWN_DYE", + "fallbacks": [ + "COCOA_BEANS" + ] + }, + "browndye": "brown_dye", + "brown_glazed_terracotta": { + "material": "BROWN_GLAZED_TERRACOTTA" + }, + "brownglazedterracotta": "brown_glazed_terracotta", + "broglazedtcota": "brown_glazed_terracotta", + "broglazedterra": "brown_glazed_terracotta", + "broglazedterracotta": "brown_glazed_terracotta", + "broglazedterracota": "brown_glazed_terracotta", + "brownglazedtcota": "brown_glazed_terracotta", + "brownglazedterra": "brown_glazed_terracotta", + "brownglazedterracota": "brown_glazed_terracotta", + "brown_mushroom": { + "material": "BROWN_MUSHROOM" + }, + "brownmushroom": "brown_mushroom", + "brownmush": "brown_mushroom", + "brownshroom": "brown_mushroom", + "bmushroom": "brown_mushroom", + "bmush": "brown_mushroom", + "bshroom": "brown_mushroom", + "brown_mushroom_block": { + "material": "BROWN_MUSHROOM_BLOCK" + }, + "brownmushroomblock": "brown_mushroom_block", + "giantbrownmushroom": "brown_mushroom_block", + "giantbrownmush": "brown_mushroom_block", + "gbrownmushroom": "brown_mushroom_block", + "gbrownmush": "brown_mushroom_block", + "hugebrownmushroom": "brown_mushroom_block", + "hugebrownmush": "brown_mushroom_block", + "hbrownmushroom": "brown_mushroom_block", + "hbrownmush": "brown_mushroom_block", + "bigbrownmushroom": "brown_mushroom_block", + "bigbrownmush": "brown_mushroom_block", + "bbrownmushroom": "brown_mushroom_block", + "bbrownmush": "brown_mushroom_block", + "giantbmushroom": "brown_mushroom_block", + "giantbmush": "brown_mushroom_block", + "gbmushroom": "brown_mushroom_block", + "gbmush": "brown_mushroom_block", + "hugebmushroom": "brown_mushroom_block", + "hugebmush": "brown_mushroom_block", + "hbmushroom": "brown_mushroom_block", + "hbmush": "brown_mushroom_block", + "bigbmushroom": "brown_mushroom_block", + "bigbmush": "brown_mushroom_block", + "bbmushroom": "brown_mushroom_block", + "bbmush": "brown_mushroom_block", + "brown_shulker_box": { + "material": "BROWN_SHULKER_BOX" + }, + "brownshulkerbox": "brown_shulker_box", + "broshulkerbox": "brown_shulker_box", + "brochest": "brown_shulker_box", + "brownchest": "brown_shulker_box", + "brown_stained_glass": { + "material": "BROWN_STAINED_GLASS" + }, + "brownstainedglass": "brown_stained_glass", + "broglass": "brown_stained_glass", + "brosglass": "brown_stained_glass", + "brostainedglass": "brown_stained_glass", + "brownglass": "brown_stained_glass", + "brownsglass": "brown_stained_glass", + "brown_stained_glass_pane": { + "material": "BROWN_STAINED_GLASS_PANE" + }, + "brownstainedglasspane": "brown_stained_glass_pane", + "broglasspane": "brown_stained_glass_pane", + "brosglasspane": "brown_stained_glass_pane", + "brostainedglasspane": "brown_stained_glass_pane", + "brogpane": "brown_stained_glass_pane", + "brownglasspane": "brown_stained_glass_pane", + "brownsglasspane": "brown_stained_glass_pane", + "browngpane": "brown_stained_glass_pane", + "brown_terracotta": { + "material": "BROWN_TERRACOTTA" + }, + "brownterracotta": "brown_terracotta", + "broclay": "brown_terracotta", + "brosclay": "brown_terracotta", + "brostainedclay": "brown_terracotta", + "broterra": "brown_terracotta", + "brotcota": "brown_terracotta", + "broterracota": "brown_terracotta", + "broterracotta": "brown_terracotta", + "brownclay": "brown_terracotta", + "brownsclay": "brown_terracotta", + "brownstainedclay": "brown_terracotta", + "brownterra": "brown_terracotta", + "browntcota": "brown_terracotta", + "brownterracota": "brown_terracotta", + "brown_wall_banner": { + "material": "BROWN_WALL_BANNER", + "unspawnable": true + }, + "brownwallbanner": "brown_wall_banner", + "brown_wool": { + "material": "BROWN_WOOL" + }, + "brownwool": "brown_wool", + "browool": "brown_wool", + "brocloth": "brown_wool", + "brocotton": "brown_wool", + "browncloth": "brown_wool", + "browncotton": "brown_wool", + "bubble_column": { + "material": "BUBBLE_COLUMN", + "unspawnable": true + }, + "bubblecolumn": "bubble_column", + "bubble_coral": { + "material": "BUBBLE_CORAL" + }, + "bubblecoral": "bubble_coral", + "bubble_coral_block": { + "material": "BUBBLE_CORAL_BLOCK" + }, + "bubblecoralblock": "bubble_coral_block", + "bubble_coral_fan": { + "material": "BUBBLE_CORAL_FAN" + }, + "bubblecoralfan": "bubble_coral_fan", + "bubble_coral_wall_fan": { + "material": "BUBBLE_CORAL_WALL_FAN", + "unspawnable": true + }, + "bubblecoralwallfan": "bubble_coral_wall_fan", + "bucket": "bucket", + "cactus": "cactus", + "cactuses": "cactus", + "cacti": "cactus", + "cake": "cake", + "campfire": "campfire", + "carrot": "carrot", + "carrots": { + "material": "CARROTS", + "unspawnable": true + }, + "carrot_on_a_stick": { + "material": "CARROT_ON_A_STICK" + }, + "carrotonastick": "carrot_on_a_stick", + "cartography_table": { + "material": "CARTOGRAPHY_TABLE" + }, + "cartographytable": "cartography_table", + "carved_pumpkin": { + "material": "CARVED_PUMPKIN" + }, + "carvedpumpkin": "carved_pumpkin", + "hollowpumpkin": "carved_pumpkin", + "cutpumpkin": "carved_pumpkin", + "oldpumpkin": "carved_pumpkin", + "legacypumpkin": "carved_pumpkin", + "cat_spawn_egg": { + "material": "CAT_SPAWN_EGG" + }, + "catspawnegg": "cat_spawn_egg", + "cauldron": "cauldron", + "cave_air": { + "material": "CAVE_AIR", + "unspawnable": true + }, + "caveair": "cave_air", + "cave_spider_spawn_egg": { + "material": "CAVE_SPIDER_SPAWN_EGG" + }, + "cavespiderspawnegg": "cave_spider_spawn_egg", + "cavespideregg": "cave_spider_spawn_egg", + "eggcavespider": "cave_spider_spawn_egg", + "spawneggcavespider": "cave_spider_spawn_egg", + "cavespiderspawn": "cave_spider_spawn_egg", + "spawncavespider": "cave_spider_spawn_egg", + "chainmail_boots": { + "material": "CHAINMAIL_BOOTS" + }, + "chainmailboots": "chainmail_boots", + "chainmailshoes": "chainmail_boots", + "chainmboots": "chainmail_boots", + "chainmshoes": "chainmail_boots", + "cmailboots": "chainmail_boots", + "cmailshoes": "chainmail_boots", + "chainboots": "chainmail_boots", + "chainshoes": "chainmail_boots", + "cmboots": "chainmail_boots", + "cmshoes": "chainmail_boots", + "chainmail_chestplate": { + "material": "CHAINMAIL_CHESTPLATE" + }, + "chainmailchestplate": "chainmail_chestplate", + "chainmailplatebody": "chainmail_chestplate", + "chainmailplate": "chainmail_chestplate", + "chainmailshirt": "chainmail_chestplate", + "chainmailtunic": "chainmail_chestplate", + "chainmchestplate": "chainmail_chestplate", + "chainmplatebody": "chainmail_chestplate", + "chainmplate": "chainmail_chestplate", + "chainmshirt": "chainmail_chestplate", + "chainmtunic": "chainmail_chestplate", + "cmailchestplate": "chainmail_chestplate", + "cmailplatebody": "chainmail_chestplate", + "cmailplate": "chainmail_chestplate", + "cmailshirt": "chainmail_chestplate", + "cmailtunic": "chainmail_chestplate", + "chainchestplate": "chainmail_chestplate", + "chainplatebody": "chainmail_chestplate", + "chainplate": "chainmail_chestplate", + "chainshirt": "chainmail_chestplate", + "chaintunic": "chainmail_chestplate", + "cmchestplate": "chainmail_chestplate", + "cmplatebody": "chainmail_chestplate", + "cmplate": "chainmail_chestplate", + "cmshirt": "chainmail_chestplate", + "cmtunic": "chainmail_chestplate", + "chainmail_helmet": { + "material": "CHAINMAIL_HELMET" + }, + "chainmailhelmet": "chainmail_helmet", + "chainmailhelm": "chainmail_helmet", + "chainmailhat": "chainmail_helmet", + "chainmailcoif": "chainmail_helmet", + "chainmhelmet": "chainmail_helmet", + "chainmhelm": "chainmail_helmet", + "chainmhat": "chainmail_helmet", + "chainmcoif": "chainmail_helmet", + "cmailhelmet": "chainmail_helmet", + "cmailhelm": "chainmail_helmet", + "cmailhat": "chainmail_helmet", + "cmailcoif": "chainmail_helmet", + "chainhelmet": "chainmail_helmet", + "chainhelm": "chainmail_helmet", + "chainhat": "chainmail_helmet", + "chaincoif": "chainmail_helmet", + "cmhelmet": "chainmail_helmet", + "cmhelm": "chainmail_helmet", + "cmhat": "chainmail_helmet", + "cmcoif": "chainmail_helmet", + "chainmail_leggings": { + "material": "CHAINMAIL_LEGGINGS" + }, + "chainmailleggings": "chainmail_leggings", + "chainmaillegs": "chainmail_leggings", + "chainmailpants": "chainmail_leggings", + "chainmleggings": "chainmail_leggings", + "chainmlegs": "chainmail_leggings", + "chainmpants": "chainmail_leggings", + "cmailleggings": "chainmail_leggings", + "cmaillegs": "chainmail_leggings", + "cmailpants": "chainmail_leggings", + "chainleggings": "chainmail_leggings", + "chainlegs": "chainmail_leggings", + "chainpants": "chainmail_leggings", + "cmleggings": "chainmail_leggings", + "cmlegs": "chainmail_leggings", + "cmpants": "chainmail_leggings", + "chain_command_block": { + "material": "CHAIN_COMMAND_BLOCK" + }, + "chaincommandblock": "chain_command_block", + "charcoal": "charcoal", + "chest": "chest", + "container": "chest", + "chest_minecart": { + "material": "CHEST_MINECART" + }, + "chestminecart": "chest_minecart", + "storageminecart": "chest_minecart", + "storagemcart": "chest_minecart", + "storagemc": "chest_minecart", + "storagecart": "chest_minecart", + "chestmcart": "chest_minecart", + "chestmc": "chest_minecart", + "chestcart": "chest_minecart", + "sminecart": "chest_minecart", + "smcart": "chest_minecart", + "smc": "chest_minecart", + "scart": "chest_minecart", + "cminecart": "chest_minecart", + "cmcart": "chest_minecart", + "cmc": "chest_minecart", + "ccart": "chest_minecart", + "chicken": "chicken", + "rawchicken": "chicken", + "rachicken": "chicken", + "uncookedchicken": "chicken", + "plainchicken": "chicken", + "chicken_spawn_egg": { + "material": "CHICKEN_SPAWN_EGG" + }, + "chickenspawnegg": "chicken_spawn_egg", + "chickenegg": "chicken_spawn_egg", + "eggchicken": "chicken_spawn_egg", + "spawneggchicken": "chicken_spawn_egg", + "chickenspawn": "chicken_spawn_egg", + "spawnchicken": "chicken_spawn_egg", + "chipped_anvil": { + "material": "CHIPPED_ANVIL" + }, + "chippedanvil": "chipped_anvil", + "slightlydamagedanvil": "chipped_anvil", + "slightdamageanvil": "chipped_anvil", + "chiseled_quartz_block": { + "material": "CHISELED_QUARTZ_BLOCK" + }, + "chiseledquartzblock": "chiseled_quartz_block", + "chiselquartzblock": "chiseled_quartz_block", + "cquartzblock": "chiseled_quartz_block", + "cqblock": "chiseled_quartz_block", + "pillarquartzblock": "chiseled_quartz_block", + "pquartzblock": "chiseled_quartz_block", + "pqblock": "chiseled_quartz_block", + "chiseled_red_sandstone": { + "material": "CHISELED_RED_SANDSTONE" + }, + "chiseledredsandstone": "chiseled_red_sandstone", + "crstone": "chiseled_red_sandstone", + "redsandstonechiseled": "chiseled_red_sandstone", + "circleredsandstone": "chiseled_red_sandstone", + "ciredsandstone": "chiseled_red_sandstone", + "chiseledrsandstone": "chiseled_red_sandstone", + "circlersandstone": "chiseled_red_sandstone", + "cirsandstone": "chiseled_red_sandstone", + "chiseledrsandst": "chiseled_red_sandstone", + "circlersandst": "chiseled_red_sandstone", + "cirsandst": "chiseled_red_sandstone", + "chiseledrsastone": "chiseled_red_sandstone", + "circlersastone": "chiseled_red_sandstone", + "cirsastone": "chiseled_red_sandstone", + "chiseled_sandstone": { + "material": "CHISELED_SANDSTONE" + }, + "chiseledsandstone": "chiseled_sandstone", + "cpstone": "chiseled_sandstone", + "creepersandstone": "chiseled_sandstone", + "creepersastone": "chiseled_sandstone", + "creepsandstone": "chiseled_sandstone", + "creepsastone": "chiseled_sandstone", + "csandstone": "chiseled_sandstone", + "csastone": "chiseled_sandstone", + "hieroglyphicsandstone": "chiseled_sandstone", + "hieroglyphicsastone": "chiseled_sandstone", + "hieroglyphsandstone": "chiseled_sandstone", + "hieroglyphsastone": "chiseled_sandstone", + "hsandstone": "chiseled_sandstone", + "hsastone": "chiseled_sandstone", + "pyramidsandstone": "chiseled_sandstone", + "pyramidsastone": "chiseled_sandstone", + "psandstone": "chiseled_sandstone", + "psastone": "chiseled_sandstone", + "chiseledsastone": "chiseled_sandstone", + "chiselsandstone": "chiseled_sandstone", + "chiselsastone": "chiseled_sandstone", + "circlesandstone": "chiseled_sandstone", + "cisandstone": "chiseled_sandstone", + "chiseledsandst": "chiseled_sandstone", + "circlesandst": "chiseled_sandstone", + "cisandst": "chiseled_sandstone", + "circlesastone": "chiseled_sandstone", + "cisastone": "chiseled_sandstone", + "chiseled_stone_bricks": { + "material": "CHISELED_STONE_BRICKS" + }, + "chiseledstonebricks": "chiseled_stone_bricks", + "chiseledstonebrick": "chiseled_stone_bricks", + "circlestonebrick": "chiseled_stone_bricks", + "cistonebrick": "chiseled_stone_bricks", + "chiseledstonebrickblock": "chiseled_stone_bricks", + "circlestonebrickblock": "chiseled_stone_bricks", + "cistonebrickblock": "chiseled_stone_bricks", + "chiseledstonebb": "chiseled_stone_bricks", + "circlestonebb": "chiseled_stone_bricks", + "cistonebb": "chiseled_stone_bricks", + "chiseledsbrick": "chiseled_stone_bricks", + "circlesbrick": "chiseled_stone_bricks", + "cisbrick": "chiseled_stone_bricks", + "chiseledsbricks": "chiseled_stone_bricks", + "circlesbricks": "chiseled_stone_bricks", + "cisbricks": "chiseled_stone_bricks", + "chiseledsbrickblock": "chiseled_stone_bricks", + "circlesbrickblock": "chiseled_stone_bricks", + "cisbrickblock": "chiseled_stone_bricks", + "circlestonebricks": "chiseled_stone_bricks", + "cistonebricks": "chiseled_stone_bricks", + "chiseledsbb": "chiseled_stone_bricks", + "circlesbb": "chiseled_stone_bricks", + "cisbb": "chiseled_stone_bricks", + "chorus_flower": { + "material": "CHORUS_FLOWER" + }, + "chorusflower": "chorus_flower", + "chorus_fruit": { + "material": "CHORUS_FRUIT" + }, + "chorusfruit": "chorus_fruit", + "chorus": "chorus_fruit", + "unpoppedchorus": "chorus_fruit", + "unpopchorus": "chorus_fruit", + "chorus_plant": { + "material": "CHORUS_PLANT" + }, + "chorusplant": "chorus_plant", + "clay": "clay", + "clay_ball": { + "material": "CLAY_BALL" + }, + "clayball": "clay_ball", + "clock": "clock", + "coal": "coal", + "coal_block": { + "material": "COAL_BLOCK" + }, + "coalblock": "coal_block", + "blockcoal": "coal_block", + "cblock": "coal_block", + "blockc": "coal_block", + "coal_ore": { + "material": "COAL_ORE" + }, + "coalore": "coal_ore", + "coalo": "coal_ore", + "orecoal": "coal_ore", + "ocoal": "coal_ore", + "core": "coal_ore", + "co": "coal_ore", + "orec": "coal_ore", + "oc": "coal_ore", + "coarse_dirt": { + "material": "COARSE_DIRT" + }, + "coarsedirt": "coarse_dirt", + "cdirt": "coarse_dirt", + "grasslessdirt": "coarse_dirt", + "grasslessearth": "coarse_dirt", + "grasslessland": "coarse_dirt", + "coarseland": "coarse_dirt", + "coarseearth": "coarse_dirt", + "cobblestone": "cobblestone", + "cstone": "cobblestone", + "cobble": "cobblestone", + "cobblestone_slab": { + "material": "COBBLESTONE_SLAB" + }, + "cobblestoneslab": "cobblestone_slab", + "cobblestonesl": "cobblestone_slab", + "cstoneslab": "cobblestone_slab", + "cstonesl": "cobblestone_slab", + "cobbleslab": "cobblestone_slab", + "cobblesl": "cobblestone_slab", + "cobblestone_stairs": { + "material": "COBBLESTONE_STAIRS" + }, + "cobblestonestairs": "cobblestone_stairs", + "cobblestonestair": "cobblestone_stairs", + "cobblestonest": "cobblestone_stairs", + "cstonestair": "cobblestone_stairs", + "cstonestairs": "cobblestone_stairs", + "cstonest": "cobblestone_stairs", + "cobblestair": "cobblestone_stairs", + "cobblestairs": "cobblestone_stairs", + "cobblest": "cobblestone_stairs", + "cobblestone_wall": { + "material": "COBBLESTONE_WALL" + }, + "cobblestonewall": "cobblestone_wall", + "cobblewall": "cobblestone_wall", + "cstonewall": "cobblestone_wall", + "cswall": "cobblestone_wall", + "cwall": "cobblestone_wall", + "cobblestonefence": "cobblestone_wall", + "cobblefence": "cobblestone_wall", + "cstonefence": "cobblestone_wall", + "csfence": "cobblestone_wall", + "cfence": "cobblestone_wall", + "stonewall": "cobblestone_wall", + "swall": "cobblestone_wall", + "cobweb": "cobweb", + "spiderweb": "cobweb", + "sweb": "cobweb", + "cweb": "cobweb", + "web": "cobweb", + "cocoa": { + "material": "COCOA", + "unspawnable": true + }, + "cocoa_beans": { + "material": "COCOA_BEANS" + }, + "cocoabeans": "cocoa_beans", + "cocoaplant": "cocoa_beans", + "cocoplant": "cocoa_beans", + "cplant": "cocoa_beans", + "cocoafruit": "cocoa_beans", + "cocofruit": "cocoa_beans", + "cfruit": "cocoa_beans", + "cocoapod": "cocoa_beans", + "cocopod": "cocoa_beans", + "cpod": "cocoa_beans", + "cod": "cod", + "rawfish": "cod", + "rawcod": "cod", + "rafish": "cod", + "racod": "cod", + "uncookedfish": "cod", + "uncookedcod": "cod", + "plainfish": "cod", + "plaincod": "cod", + "fish": "cod", + "cod_bucket": { + "material": "COD_BUCKET" + }, + "codbucket": "cod_bucket", + "codpail": "cod_bucket", + "cod_spawn_egg": { + "material": "COD_SPAWN_EGG" + }, + "codspawnegg": "cod_spawn_egg", + "codegg": "cod_spawn_egg", + "eggcod": "cod_spawn_egg", + "spawneggcod": "cod_spawn_egg", + "codspawn": "cod_spawn_egg", + "spawncod": "cod_spawn_egg", + "command_block": { + "material": "COMMAND_BLOCK" + }, + "commandblock": "command_block", + "blockcommand": "command_block", + "cmdblock": "command_block", + "blockcmd": "command_block", + "macroblock": "command_block", + "blockmacro": "command_block", + "command_block_minecart": { + "material": "COMMAND_BLOCK_MINECART" + }, + "commandblockminecart": "command_block_minecart", + "cmdblockminecart": "command_block_minecart", + "cmdblockmcart": "command_block_minecart", + "cmdblockmc": "command_block_minecart", + "cmdblockcart": "command_block_minecart", + "cblockminecart": "command_block_minecart", + "cblockmcart": "command_block_minecart", + "cblockmc": "command_block_minecart", + "cblockcart": "command_block_minecart", + "commandminecart": "command_block_minecart", + "commandmcart": "command_block_minecart", + "commandmc": "command_block_minecart", + "commandcart": "command_block_minecart", + "cmdminecart": "command_block_minecart", + "cmdmcart": "command_block_minecart", + "cmdmc": "command_block_minecart", + "cmdcart": "command_block_minecart", + "cbminecart": "command_block_minecart", + "cbmcart": "command_block_minecart", + "cbmc": "command_block_minecart", + "cbcart": "command_block_minecart", + "commandblockmcart": "command_block_minecart", + "commandblockmc": "command_block_minecart", + "commandblockcart": "command_block_minecart", + "comparator": "comparator", + "compass": "compass", + "composter": "composter", + "conduit": "conduit", + "cooked_beef": { + "material": "COOKED_BEEF" + }, + "cookedbeef": "cooked_beef", + "beefcooked": "cooked_beef", + "beefcook": "cooked_beef", + "beefc": "cooked_beef", + "beefgrilled": "cooked_beef", + "beefgrill": "cooked_beef", + "beefg": "cooked_beef", + "beefroasted": "cooked_beef", + "beefroast": "cooked_beef", + "beefro": "cooked_beef", + "beefbbq": "cooked_beef", + "beeftoasted": "cooked_beef", + "cookbeef": "cooked_beef", + "cbeef": "cooked_beef", + "grilledbeef": "cooked_beef", + "grillbeef": "cooked_beef", + "gbeef": "cooked_beef", + "roastedbeef": "cooked_beef", + "roastbeef": "cooked_beef", + "robeef": "cooked_beef", + "bbqbeef": "cooked_beef", + "toastedbeef": "cooked_beef", + "steakcooked": "cooked_beef", + "steakcook": "cooked_beef", + "steakc": "cooked_beef", + "steakgrilled": "cooked_beef", + "steakgrill": "cooked_beef", + "steakg": "cooked_beef", + "steakroasted": "cooked_beef", + "steakroast": "cooked_beef", + "steakro": "cooked_beef", + "steakbbq": "cooked_beef", + "steaktoasted": "cooked_beef", + "cookedsteak": "cooked_beef", + "cooksteak": "cooked_beef", + "csteak": "cooked_beef", + "grilledsteak": "cooked_beef", + "grillsteak": "cooked_beef", + "gsteak": "cooked_beef", + "roastedsteak": "cooked_beef", + "roaststeak": "cooked_beef", + "rosteak": "cooked_beef", + "bbqsteak": "cooked_beef", + "toastedsteak": "cooked_beef", + "cowmeatcooked": "cooked_beef", + "cowmeatcook": "cooked_beef", + "cowmeatc": "cooked_beef", + "cowmeatgrilled": "cooked_beef", + "cowmeatgrill": "cooked_beef", + "cowmeatg": "cooked_beef", + "cowmeatroasted": "cooked_beef", + "cowmeatroast": "cooked_beef", + "cowmeatro": "cooked_beef", + "cowmeatbbq": "cooked_beef", + "cowmeattoasted": "cooked_beef", + "cookedcowmeat": "cooked_beef", + "cookcowmeat": "cooked_beef", + "ccowmeat": "cooked_beef", + "grilledcowmeat": "cooked_beef", + "grillcowmeat": "cooked_beef", + "gcowmeat": "cooked_beef", + "roastedcowmeat": "cooked_beef", + "roastcowmeat": "cooked_beef", + "rocowmeat": "cooked_beef", + "bbqcowmeat": "cooked_beef", + "toastedcowmeat": "cooked_beef", + "cooked_chicken": { + "material": "COOKED_CHICKEN" + }, + "cookedchicken": "cooked_chicken", + "chickencooked": "cooked_chicken", + "chickencook": "cooked_chicken", + "chickenc": "cooked_chicken", + "chickengrilled": "cooked_chicken", + "chickengrill": "cooked_chicken", + "chickeng": "cooked_chicken", + "chickenroasted": "cooked_chicken", + "chickenroast": "cooked_chicken", + "chickenro": "cooked_chicken", + "chickenbbq": "cooked_chicken", + "chickentoasted": "cooked_chicken", + "cookchicken": "cooked_chicken", + "cchicken": "cooked_chicken", + "grilledchicken": "cooked_chicken", + "grillchicken": "cooked_chicken", + "gchicken": "cooked_chicken", + "roastedchicken": "cooked_chicken", + "roastchicken": "cooked_chicken", + "rochicken": "cooked_chicken", + "bbqchicken": "cooked_chicken", + "toastedchicken": "cooked_chicken", + "cooked_cod": { + "material": "COOKED_COD" + }, + "cookedcod": "cooked_cod", + "fishcooked": "cooked_cod", + "fishcook": "cooked_cod", + "fishc": "cooked_cod", + "fishgrilled": "cooked_cod", + "fishgrill": "cooked_cod", + "fishg": "cooked_cod", + "fishroasted": "cooked_cod", + "fishroast": "cooked_cod", + "fishro": "cooked_cod", + "fishbbq": "cooked_cod", + "fishtoasted": "cooked_cod", + "cookedfish": "cooked_cod", + "cookfish": "cooked_cod", + "cfish": "cooked_cod", + "grilledfish": "cooked_cod", + "grillfish": "cooked_cod", + "gfish": "cooked_cod", + "roastedfish": "cooked_cod", + "roastfish": "cooked_cod", + "rofish": "cooked_cod", + "bbqfish": "cooked_cod", + "toastedfish": "cooked_cod", + "codcooked": "cooked_cod", + "codcook": "cooked_cod", + "codc": "cooked_cod", + "codgrilled": "cooked_cod", + "codgrill": "cooked_cod", + "codg": "cooked_cod", + "codroasted": "cooked_cod", + "codroast": "cooked_cod", + "codro": "cooked_cod", + "codbbq": "cooked_cod", + "codtoasted": "cooked_cod", + "cookcod": "cooked_cod", + "ccod": "cooked_cod", + "grilledcod": "cooked_cod", + "grillcod": "cooked_cod", + "gcod": "cooked_cod", + "roastedcod": "cooked_cod", + "roastcod": "cooked_cod", + "rocod": "cooked_cod", + "bbqcod": "cooked_cod", + "toastedcod": "cooked_cod", + "cooked_mutton": { + "material": "COOKED_MUTTON" + }, + "cookedmutton": "cooked_mutton", + "muttoncooked": "cooked_mutton", + "muttoncook": "cooked_mutton", + "muttonc": "cooked_mutton", + "muttongrilled": "cooked_mutton", + "muttongrill": "cooked_mutton", + "muttong": "cooked_mutton", + "muttonroasted": "cooked_mutton", + "muttonroast": "cooked_mutton", + "muttonro": "cooked_mutton", + "muttonbbq": "cooked_mutton", + "muttontoasted": "cooked_mutton", + "cookmutton": "cooked_mutton", + "cmutton": "cooked_mutton", + "grilledmutton": "cooked_mutton", + "grillmutton": "cooked_mutton", + "gmutton": "cooked_mutton", + "roastedmutton": "cooked_mutton", + "roastmutton": "cooked_mutton", + "romutton": "cooked_mutton", + "bbqmutton": "cooked_mutton", + "toastedmutton": "cooked_mutton", + "sheepmeatcooked": "cooked_mutton", + "sheepmeatcook": "cooked_mutton", + "sheepmeatc": "cooked_mutton", + "sheepmeatgrilled": "cooked_mutton", + "sheepmeatgrill": "cooked_mutton", + "sheepmeatg": "cooked_mutton", + "sheepmeatroasted": "cooked_mutton", + "sheepmeatroast": "cooked_mutton", + "sheepmeatro": "cooked_mutton", + "sheepmeatbbq": "cooked_mutton", + "sheepmeattoasted": "cooked_mutton", + "cookedsheepmeat": "cooked_mutton", + "cooksheepmeat": "cooked_mutton", + "csheepmeat": "cooked_mutton", + "grilledsheepmeat": "cooked_mutton", + "grillsheepmeat": "cooked_mutton", + "gsheepmeat": "cooked_mutton", + "roastedsheepmeat": "cooked_mutton", + "roastsheepmeat": "cooked_mutton", + "rosheepmeat": "cooked_mutton", + "bbqsheepmeat": "cooked_mutton", + "toastedsheepmeat": "cooked_mutton", + "cooked_porkchop": { + "material": "COOKED_PORKCHOP" + }, + "cookedporkchop": "cooked_porkchop", + "porkcooked": "cooked_porkchop", + "porkcook": "cooked_porkchop", + "porkc": "cooked_porkchop", + "porkgrilled": "cooked_porkchop", + "porkgrill": "cooked_porkchop", + "porkg": "cooked_porkchop", + "porkroasted": "cooked_porkchop", + "porkroast": "cooked_porkchop", + "porkro": "cooked_porkchop", + "porkbbq": "cooked_porkchop", + "porktoasted": "cooked_porkchop", + "cookedpork": "cooked_porkchop", + "cookpork": "cooked_porkchop", + "cpork": "cooked_porkchop", + "grilledpork": "cooked_porkchop", + "grillpork": "cooked_porkchop", + "gpork": "cooked_porkchop", + "roastedpork": "cooked_porkchop", + "roastpork": "cooked_porkchop", + "ropork": "cooked_porkchop", + "bbqpork": "cooked_porkchop", + "toastedpork": "cooked_porkchop", + "porkchopcooked": "cooked_porkchop", + "porkchopcook": "cooked_porkchop", + "porkchopc": "cooked_porkchop", + "porkchopgrilled": "cooked_porkchop", + "porkchopgrill": "cooked_porkchop", + "porkchopg": "cooked_porkchop", + "porkchoproasted": "cooked_porkchop", + "porkchoproast": "cooked_porkchop", + "porkchopro": "cooked_porkchop", + "porkchopbbq": "cooked_porkchop", + "porkchoptoasted": "cooked_porkchop", + "cookporkchop": "cooked_porkchop", + "cporkchop": "cooked_porkchop", + "grilledporkchop": "cooked_porkchop", + "grillporkchop": "cooked_porkchop", + "gporkchop": "cooked_porkchop", + "roastedporkchop": "cooked_porkchop", + "roastporkchop": "cooked_porkchop", + "roporkchop": "cooked_porkchop", + "bbqporkchop": "cooked_porkchop", + "toastedporkchop": "cooked_porkchop", + "cooked_rabbit": { + "material": "COOKED_RABBIT" + }, + "cookedrabbit": "cooked_rabbit", + "rabbitcooked": "cooked_rabbit", + "rabbitcook": "cooked_rabbit", + "rabbitc": "cooked_rabbit", + "rabbitgrilled": "cooked_rabbit", + "rabbitgrill": "cooked_rabbit", + "rabbitg": "cooked_rabbit", + "rabbitroasted": "cooked_rabbit", + "rabbitroast": "cooked_rabbit", + "rabbitro": "cooked_rabbit", + "rabbitbbq": "cooked_rabbit", + "rabbittoasted": "cooked_rabbit", + "cookrabbit": "cooked_rabbit", + "crabbit": "cooked_rabbit", + "grilledrabbit": "cooked_rabbit", + "grillrabbit": "cooked_rabbit", + "grabbit": "cooked_rabbit", + "roastedrabbit": "cooked_rabbit", + "roastrabbit": "cooked_rabbit", + "rorabbit": "cooked_rabbit", + "bbqrabbit": "cooked_rabbit", + "toastedrabbit": "cooked_rabbit", + "harecooked": "cooked_rabbit", + "harecook": "cooked_rabbit", + "harec": "cooked_rabbit", + "haregrilled": "cooked_rabbit", + "haregrill": "cooked_rabbit", + "hareg": "cooked_rabbit", + "hareroasted": "cooked_rabbit", + "hareroast": "cooked_rabbit", + "harero": "cooked_rabbit", + "harebbq": "cooked_rabbit", + "haretoasted": "cooked_rabbit", + "cookedhare": "cooked_rabbit", + "cookhare": "cooked_rabbit", + "chare": "cooked_rabbit", + "grilledhare": "cooked_rabbit", + "grillhare": "cooked_rabbit", + "ghare": "cooked_rabbit", + "roastedhare": "cooked_rabbit", + "roasthare": "cooked_rabbit", + "rohare": "cooked_rabbit", + "bbqhare": "cooked_rabbit", + "toastedhare": "cooked_rabbit", + "hasenpfeffercooked": "cooked_rabbit", + "hasenpfeffercook": "cooked_rabbit", + "hasenpfefferc": "cooked_rabbit", + "hasenpfeffergrilled": "cooked_rabbit", + "hasenpfeffergrill": "cooked_rabbit", + "hasenpfefferg": "cooked_rabbit", + "hasenpfefferroasted": "cooked_rabbit", + "hasenpfefferroast": "cooked_rabbit", + "hasenpfefferro": "cooked_rabbit", + "hasenpfefferbbq": "cooked_rabbit", + "hasenpfeffertoasted": "cooked_rabbit", + "cookedhasenpfeffer": "cooked_rabbit", + "cookhasenpfeffer": "cooked_rabbit", + "chasenpfeffer": "cooked_rabbit", + "grilledhasenpfeffer": "cooked_rabbit", + "grillhasenpfeffer": "cooked_rabbit", + "ghasenpfeffer": "cooked_rabbit", + "roastedhasenpfeffer": "cooked_rabbit", + "roasthasenpfeffer": "cooked_rabbit", + "rohasenpfeffer": "cooked_rabbit", + "bbqhasenpfeffer": "cooked_rabbit", + "toastedhasenpfeffer": "cooked_rabbit", + "cooked_salmon": { + "material": "COOKED_SALMON" + }, + "cookedsalmon": "cooked_salmon", + "salmoncooked": "cooked_salmon", + "salmoncook": "cooked_salmon", + "salmonc": "cooked_salmon", + "salmongrilled": "cooked_salmon", + "salmongrill": "cooked_salmon", + "salmong": "cooked_salmon", + "salmonroasted": "cooked_salmon", + "salmonroast": "cooked_salmon", + "salmonro": "cooked_salmon", + "salmonbbq": "cooked_salmon", + "salmontoasted": "cooked_salmon", + "cooksalmon": "cooked_salmon", + "csalmon": "cooked_salmon", + "grilledsalmon": "cooked_salmon", + "grillsalmon": "cooked_salmon", + "gsalmon": "cooked_salmon", + "roastedsalmon": "cooked_salmon", + "roastsalmon": "cooked_salmon", + "rosalmon": "cooked_salmon", + "bbqsalmon": "cooked_salmon", + "toastedsalmon": "cooked_salmon", + "salmonfishcooked": "cooked_salmon", + "salmonfishcook": "cooked_salmon", + "salmonfishc": "cooked_salmon", + "salmonfishgrilled": "cooked_salmon", + "salmonfishgrill": "cooked_salmon", + "salmonfishg": "cooked_salmon", + "salmonfishroasted": "cooked_salmon", + "salmonfishroast": "cooked_salmon", + "salmonfishro": "cooked_salmon", + "salmonfishbbq": "cooked_salmon", + "salmonfishtoasted": "cooked_salmon", + "cookedsalmonfish": "cooked_salmon", + "cooksalmonfish": "cooked_salmon", + "csalmonfish": "cooked_salmon", + "grilledsalmonfish": "cooked_salmon", + "grillsalmonfish": "cooked_salmon", + "gsalmonfish": "cooked_salmon", + "roastedsalmonfish": "cooked_salmon", + "roastsalmonfish": "cooked_salmon", + "rosalmonfish": "cooked_salmon", + "bbqsalmonfish": "cooked_salmon", + "toastedsalmonfish": "cooked_salmon", + "sfishcooked": "cooked_salmon", + "sfishcook": "cooked_salmon", + "sfishc": "cooked_salmon", + "sfishgrilled": "cooked_salmon", + "sfishgrill": "cooked_salmon", + "sfishg": "cooked_salmon", + "sfishroasted": "cooked_salmon", + "sfishroast": "cooked_salmon", + "sfishro": "cooked_salmon", + "sfishbbq": "cooked_salmon", + "sfishtoasted": "cooked_salmon", + "cookedsfish": "cooked_salmon", + "cooksfish": "cooked_salmon", + "csfish": "cooked_salmon", + "grilledsfish": "cooked_salmon", + "grillsfish": "cooked_salmon", + "gsfish": "cooked_salmon", + "roastedsfish": "cooked_salmon", + "roastsfish": "cooked_salmon", + "rosfish": "cooked_salmon", + "bbqsfish": "cooked_salmon", + "toastedsfish": "cooked_salmon", + "fishscooked": "cooked_salmon", + "fishscook": "cooked_salmon", + "fishsc": "cooked_salmon", + "fishsgrilled": "cooked_salmon", + "fishsgrill": "cooked_salmon", + "fishsg": "cooked_salmon", + "fishsroasted": "cooked_salmon", + "fishsroast": "cooked_salmon", + "fishsro": "cooked_salmon", + "fishsbbq": "cooked_salmon", + "fishstoasted": "cooked_salmon", + "cookedfishs": "cooked_salmon", + "cookfishs": "cooked_salmon", + "cfishs": "cooked_salmon", + "grilledfishs": "cooked_salmon", + "grillfishs": "cooked_salmon", + "gfishs": "cooked_salmon", + "roastedfishs": "cooked_salmon", + "roastfishs": "cooked_salmon", + "rofishs": "cooked_salmon", + "bbqfishs": "cooked_salmon", + "toastedfishs": "cooked_salmon", + "cookie": "cookie", + "cornflower": "cornflower", + "cow_spawn_egg": { + "material": "COW_SPAWN_EGG" + }, + "cowspawnegg": "cow_spawn_egg", + "cowegg": "cow_spawn_egg", + "eggcow": "cow_spawn_egg", + "spawneggcow": "cow_spawn_egg", + "cowspawn": "cow_spawn_egg", + "spawncow": "cow_spawn_egg", + "cracked_stone_bricks": { + "material": "CRACKED_STONE_BRICKS" + }, + "crackedstonebricks": "cracked_stone_bricks", + "crackedstonebrick": "cracked_stone_bricks", + "crackstonebrick": "cracked_stone_bricks", + "crstonebrick": "cracked_stone_bricks", + "cstonebrick": "cracked_stone_bricks", + "crackedstonebrickblock": "cracked_stone_bricks", + "crackstonebrickblock": "cracked_stone_bricks", + "crstonebrickblock": "cracked_stone_bricks", + "cstonebrickblock": "cracked_stone_bricks", + "crackedstonebb": "cracked_stone_bricks", + "crackstonebb": "cracked_stone_bricks", + "crstonebb": "cracked_stone_bricks", + "cstonebb": "cracked_stone_bricks", + "crackedsbrick": "cracked_stone_bricks", + "cracksbrick": "cracked_stone_bricks", + "crsbrick": "cracked_stone_bricks", + "csbrick": "cracked_stone_bricks", + "crackedsbricks": "cracked_stone_bricks", + "cracksbricks": "cracked_stone_bricks", + "crsbricks": "cracked_stone_bricks", + "csbricks": "cracked_stone_bricks", + "crackedsbrickblock": "cracked_stone_bricks", + "cracksbrickblock": "cracked_stone_bricks", + "crsbrickblock": "cracked_stone_bricks", + "csbrickblock": "cracked_stone_bricks", + "crackstonebricks": "cracked_stone_bricks", + "crstonebricks": "cracked_stone_bricks", + "cstonebricks": "cracked_stone_bricks", + "crackedsbb": "cracked_stone_bricks", + "cracksbb": "cracked_stone_bricks", + "crsbb": "cracked_stone_bricks", + "csbb": "cracked_stone_bricks", + "crafting_table": { + "material": "CRAFTING_TABLE" + }, + "craftingtable": "crafting_table", + "workbench": "crafting_table", + "craftingbench": "crafting_table", + "crafterbench": "crafting_table", + "craftbench": "crafting_table", + "worktable": "crafting_table", + "craftertable": "crafting_table", + "crafttable": "crafting_table", + "wbench": "crafting_table", + "cbench": "crafting_table", + "creeper_banner_pattern": { + "material": "CREEPER_BANNER_PATTERN" + }, + "creeperbannerpattern": "creeper_banner_pattern", + "creeper_head": { + "material": "CREEPER_HEAD" + }, + "creeperhead": "creeper_head", + "creeperskull": "creeper_head", + "headcreeper": "creeper_head", + "stevecreeper": "creeper_head", + "creepermask": "creeper_head", + "creeperheadmask": "creeper_head", + "crhead": "creeper_head", + "crskull": "creeper_head", + "headcr": "creeper_head", + "stevecr": "creeper_head", + "crmask": "creeper_head", + "crheadmask": "creeper_head", + "creeper_spawn_egg": { + "material": "CREEPER_SPAWN_EGG" + }, + "creeperspawnegg": "creeper_spawn_egg", + "creeperegg": "creeper_spawn_egg", + "eggcreeper": "creeper_spawn_egg", + "spawneggcreeper": "creeper_spawn_egg", + "creeperspawn": "creeper_spawn_egg", + "spawncreeper": "creeper_spawn_egg", + "cregg": "creeper_spawn_egg", + "eggcr": "creeper_spawn_egg", + "crspawnegg": "creeper_spawn_egg", + "spawneggcr": "creeper_spawn_egg", + "crspawn": "creeper_spawn_egg", + "spawncr": "creeper_spawn_egg", + "creeper_wall_head": { + "material": "CREEPER_WALL_HEAD", + "unspawnable": true + }, + "creeperwallhead": "creeper_wall_head", + "crossbow": "crossbow", + "cut_red_sandstone": { + "material": "CUT_RED_SANDSTONE" + }, + "cutredsandstone": "cut_red_sandstone", + "srstone": "cut_red_sandstone", + "redsandstonesmooth": "cut_red_sandstone", + "smoothredsandstone": "smooth_red_sandstone", + "cutrsandstone": "cut_red_sandstone_slab", + "cutrsandst": "cut_red_sandstone_slab", + "cutrsastone": "cut_red_sandstone_slab", + "cut_red_sandstone_slab": { + "material": "CUT_RED_SANDSTONE_SLAB" + }, + "cutredsandstoneslab": "cut_red_sandstone_slab", + "cut_sandstone": { + "material": "CUT_SANDSTONE" + }, + "cutsandstone": "cut_sandstone", + "smstone": "smooth_stone_slab", + "smoothsastone": "smooth_sandstone_stairs", + "ssandstone": "cut_sandstone", + "smsastone": "smooth_sandstone_stairs", + "ssastone": "cut_sandstone", + "cutsandst": "cut_sandstone_slab", + "cutsastone": "cut_sandstone_slab", + "cut_sandstone_slab": { + "material": "CUT_SANDSTONE_SLAB" + }, + "cutsandstoneslab": "cut_sandstone_slab", + "cyan_banner": { + "material": "CYAN_BANNER" + }, + "cyanbanner": "cyan_banner", + "cstandingbanner": "cyan_banner", + "cbanner": "cyan_banner", + "cyanstandingbanner": "cyan_banner", + "cyan_bed": { + "material": "CYAN_BED" + }, + "cyanbed": "cyan_bed", + "cbed": "cyan_bed", + "cyan_carpet": { + "material": "CYAN_CARPET" + }, + "cyancarpet": "cyan_carpet", + "ccarpet": "cyan_carpet", + "cfloor": "cyan_carpet", + "cyanfloor": "cyan_carpet", + "cyan_concrete": { + "material": "CYAN_CONCRETE" + }, + "cyanconcrete": "cyan_concrete", + "cconcrete": "cyan_concrete", + "cyan_concrete_powder": { + "material": "CYAN_CONCRETE_POWDER" + }, + "cyanconcretepowder": "cyan_concrete_powder", + "cconcretepowder": "cyan_concrete_powder", + "cconcretesand": "cyan_concrete_powder", + "ccpowder": "cyan_concrete_powder", + "ccdust": "cyan_concrete_powder", + "ccp": "cyan_concrete_powder", + "cyanconcretesand": "cyan_concrete_powder", + "cyancpowder": "cyan_concrete_powder", + "cyancdust": "cyan_concrete_powder", + "cyancp": "cyan_concrete_powder", + "cyan_dye": { + "material": "CYAN_DYE" + }, + "cyandye": "cyan_dye", + "cyan_glazed_terracotta": { + "material": "CYAN_GLAZED_TERRACOTTA" + }, + "cyanglazedterracotta": "cyan_glazed_terracotta", + "cglazedtcota": "cyan_glazed_terracotta", + "cglazedterra": "cyan_glazed_terracotta", + "cglazedterracotta": "cyan_glazed_terracotta", + "cglazedterracota": "cyan_glazed_terracotta", + "cyanglazedtcota": "cyan_glazed_terracotta", + "cyanglazedterra": "cyan_glazed_terracotta", + "cyanglazedterracota": "cyan_glazed_terracotta", + "cyan_shulker_box": { + "material": "CYAN_SHULKER_BOX" + }, + "cyanshulkerbox": "cyan_shulker_box", + "cshulkerbox": "cyan_shulker_box", + "cchest": "cyan_shulker_box", + "cyanchest": "cyan_shulker_box", + "cyan_stained_glass": { + "material": "CYAN_STAINED_GLASS" + }, + "cyanstainedglass": "cyan_stained_glass", + "cglass": "cyan_stained_glass", + "csglass": "cyan_stained_glass", + "cstainedglass": "cyan_stained_glass", + "cyanglass": "cyan_stained_glass", + "cyansglass": "cyan_stained_glass", + "cyan_stained_glass_pane": { + "material": "CYAN_STAINED_GLASS_PANE" + }, + "cyanstainedglasspane": "cyan_stained_glass_pane", + "cglasspane": "cyan_stained_glass_pane", + "csglasspane": "cyan_stained_glass_pane", + "cstainedglasspane": "cyan_stained_glass_pane", + "cgpane": "cyan_stained_glass_pane", + "cyanglasspane": "cyan_stained_glass_pane", + "cyansglasspane": "cyan_stained_glass_pane", + "cyangpane": "cyan_stained_glass_pane", + "cyan_terracotta": { + "material": "CYAN_TERRACOTTA" + }, + "cyanterracotta": "cyan_terracotta", + "cclay": "cyan_terracotta", + "csclay": "cyan_terracotta", + "cstainedclay": "cyan_terracotta", + "cterra": "cyan_terracotta", + "ctcota": "cyan_terracotta", + "cterracota": "cyan_terracotta", + "cterracotta": "cyan_terracotta", + "cyanclay": "cyan_terracotta", + "cyansclay": "cyan_terracotta", + "cyanstainedclay": "cyan_terracotta", + "cyanterra": "cyan_terracotta", + "cyantcota": "cyan_terracotta", + "cyanterracota": "cyan_terracotta", + "cyan_wall_banner": { + "material": "CYAN_WALL_BANNER", + "unspawnable": true + }, + "cyanwallbanner": "cyan_wall_banner", + "cyan_wool": { + "material": "CYAN_WOOL" + }, + "cyanwool": "cyan_wool", + "cwool": "cyan_wool", + "ccloth": "cyan_wool", + "ccotton": "cyan_wool", + "cyancloth": "cyan_wool", + "cyancotton": "cyan_wool", + "damaged_anvil": { + "material": "DAMAGED_ANVIL" + }, + "damagedanvil": "damaged_anvil", + "verydamagedanvil": "damaged_anvil", + "dandelion": "dandelion", + "yellowdandelion": "dandelion", + "ydandelion": "dandelion", + "yellowflower": "dandelion", + "yflower": "dandelion", + "flower": "dandelion", + "dark_oak_boat": { + "material": "DARK_OAK_BOAT" + }, + "darkoakboat": "dark_oak_boat", + "doakboat": "dark_oak_boat", + "doboat": "dark_oak_boat", + "dark_oak_button": { + "material": "DARK_OAK_BUTTON" + }, + "darkoakbutton": "dark_oak_button", + "dark_oak_door": { + "material": "DARK_OAK_DOOR" + }, + "darkoakdoor": "dark_oak_door", + "dark_oak_fence": { + "material": "DARK_OAK_FENCE" + }, + "darkoakfence": "dark_oak_fence", + "doakfence": "dark_oak_fence", + "dofence": "dark_oak_fence", + "dark_oak_fence_gate": { + "material": "DARK_OAK_FENCE_GATE" + }, + "darkoakfencegate": "dark_oak_fence_gate", + "darkoakgate": "dark_oak_fence_gate", + "doakfencegate": "dark_oak_fence_gate", + "doakgate": "dark_oak_fence_gate", + "dofencegate": "dark_oak_fence_gate", + "dogate": "dark_oak_fence_gate", + "dark_oak_leaves": { + "material": "DARK_OAK_LEAVES" + }, + "darkoakleaves": "dark_oak_leaves", + "darkoaktreeleaves": "dark_oak_leaves", + "darkoaklogleaves": "dark_oak_leaves", + "darkoaktrunkleaves": "dark_oak_leaves", + "darkoakwoodleaves": "dark_oak_leaves", + "darkoaktreeleaf": "dark_oak_leaves", + "darkoaklogleaf": "dark_oak_leaves", + "darkoaktrunkleaf": "dark_oak_leaves", + "darkoakwoodleaf": "dark_oak_leaves", + "darkoakleaf": "dark_oak_leaves", + "darkoaktreeleave": "dark_oak_leaves", + "darkoaklogleave": "dark_oak_leaves", + "darkoaktrunkleave": "dark_oak_leaves", + "darkoakwoodleave": "dark_oak_leaves", + "darkoakleave": "dark_oak_leaves", + "doaktreeleaves": "dark_oak_leaves", + "doaklogleaves": "dark_oak_leaves", + "doaktrunkleaves": "dark_oak_leaves", + "doakwoodleaves": "dark_oak_leaves", + "doakleaves": "dark_oak_leaves", + "doaktreeleaf": "dark_oak_leaves", + "doaklogleaf": "dark_oak_leaves", + "doaktrunkleaf": "dark_oak_leaves", + "doakwoodleaf": "dark_oak_leaves", + "doakleaf": "dark_oak_leaves", + "doaktreeleave": "dark_oak_leaves", + "doaklogleave": "dark_oak_leaves", + "doaktrunkleave": "dark_oak_leaves", + "doakwoodleave": "dark_oak_leaves", + "doakleave": "dark_oak_leaves", + "dotreeleaves": "dark_oak_leaves", + "dologleaves": "dark_oak_leaves", + "dotrunkleaves": "dark_oak_leaves", + "dowoodleaves": "dark_oak_leaves", + "doleaves": "dark_oak_leaves", + "dotreeleaf": "dark_oak_leaves", + "dologleaf": "dark_oak_leaves", + "dotrunkleaf": "dark_oak_leaves", + "dowoodleaf": "dark_oak_leaves", + "doleaf": "dark_oak_leaves", + "dotreeleave": "dark_oak_leaves", + "dologleave": "dark_oak_leaves", + "dotrunkleave": "dark_oak_leaves", + "dowoodleave": "dark_oak_leaves", + "doleave": "dark_oak_leaves", + "dark_oak_log": { + "material": "DARK_OAK_LOG" + }, + "darkoaklog": "dark_oak_log", + "darkoak": "dark_oak_log", + "logdarkoak": "dark_oak_log", + "darkoaktrunk": "dark_oak_log", + "darkoaktree": "dark_oak_log", + "doak": "dark_oak_log", + "logdoak": "dark_oak_log", + "doaktrunk": "dark_oak_log", + "doaklog": "dark_oak_log", + "doaktree": "dark_oak_log", + "do": "diamond_ore", + "logdo": "dark_oak_log", + "dotrunk": "dark_oak_log", + "dolog": "dark_oak_log", + "dotree": "dark_oak_log", + "dark_oak_planks": { + "material": "DARK_OAK_PLANKS" + }, + "darkoakplanks": "dark_oak_planks", + "darkoakwoodenplank": "dark_oak_planks", + "darkoakwoodplank": "dark_oak_planks", + "darkoakwplank": "dark_oak_planks", + "darkoakplankwooden": "dark_oak_planks", + "darkoakplankwood": "dark_oak_planks", + "darkoakplankw": "dark_oak_planks", + "darkoakplank": "dark_oak_planks", + "doakwoodenplank": "dark_oak_planks", + "doakwoodplank": "dark_oak_planks", + "doakwplank": "dark_oak_planks", + "doakplankwooden": "dark_oak_planks", + "doakplankwood": "dark_oak_planks", + "doakplankw": "dark_oak_planks", + "doakplank": "dark_oak_planks", + "dowoodenplank": "dark_oak_planks", + "dowoodplank": "dark_oak_planks", + "dowplank": "dark_oak_planks", + "doplankwooden": "dark_oak_planks", + "doplankwood": "dark_oak_planks", + "doplankw": "dark_oak_planks", + "doplank": "dark_oak_planks", + "dark_oak_pressure_plate": { + "material": "DARK_OAK_PRESSURE_PLATE" + }, + "darkoakpressureplate": "dark_oak_pressure_plate", + "darkoakpressplate": "dark_oak_pressure_plate", + "darkoakpplate": "dark_oak_pressure_plate", + "darkoakplate": "dark_oak_pressure_plate", + "doakpressureplate": "dark_oak_pressure_plate", + "doakpressplate": "dark_oak_pressure_plate", + "doakpplate": "dark_oak_pressure_plate", + "doakplate": "dark_oak_pressure_plate", + "dopressureplate": "dark_oak_pressure_plate", + "dopressplate": "dark_oak_pressure_plate", + "dopplate": "dark_oak_pressure_plate", + "doplate": "dark_oak_pressure_plate", + "dark_oak_sapling": { + "material": "DARK_OAK_SAPLING" + }, + "darkoaksapling": "dark_oak_sapling", + "darkoaktreesapling": "dark_oak_sapling", + "darkoaklogsapling": "dark_oak_sapling", + "darkoaktrunksapling": "dark_oak_sapling", + "darkoakwoodsapling": "dark_oak_sapling", + "doaksapling": "dark_oak_sapling", + "doaktreesapling": "dark_oak_sapling", + "doaklogsapling": "dark_oak_sapling", + "doaktrunksapling": "dark_oak_sapling", + "doakwoodsapling": "dark_oak_sapling", + "dosapling": "dark_oak_sapling", + "dotreesapling": "dark_oak_sapling", + "dologsapling": "dark_oak_sapling", + "dotrunksapling": "dark_oak_sapling", + "dowoodsapling": "dark_oak_sapling", + "dark_oak_sign": { + "material": "DARK_OAK_SIGN", + "fallbacks": [ + "SIGN" + ] + }, + "darkoaksign": "dark_oak_sign", + "dark_oak_slab": { + "material": "DARK_OAK_SLAB" + }, + "darkoakslab": "dark_oak_slab", + "darkoakwoodenstep": "dark_oak_slab", + "darkoakwoodstep": "dark_oak_slab", + "darkoakwstep": "dark_oak_slab", + "darkoakstep": "dark_oak_slab", + "darkoakwoodenslab": "dark_oak_slab", + "darkoakwoodslab": "dark_oak_slab", + "darkoakwslab": "dark_oak_slab", + "darkoakwoodenhalfblock": "dark_oak_slab", + "darkoakwoodhalfblock": "dark_oak_slab", + "darkoakwhalfblock": "dark_oak_slab", + "darkoakhalfblock": "dark_oak_slab", + "doakwoodenstep": "dark_oak_slab", + "doakwoodstep": "dark_oak_slab", + "doakwstep": "dark_oak_slab", + "doakstep": "dark_oak_slab", + "doakwoodenslab": "dark_oak_slab", + "doakwoodslab": "dark_oak_slab", + "doakwslab": "dark_oak_slab", + "doakwoodenhalfblock": "dark_oak_slab", + "doakwoodhalfblock": "dark_oak_slab", + "doakwhalfblock": "dark_oak_slab", + "doakhalfblock": "dark_oak_slab", + "dowoodenstep": "dark_oak_slab", + "dowoodstep": "dark_oak_slab", + "dowstep": "dark_oak_slab", + "dostep": "dark_oak_slab", + "dowoodenslab": "dark_oak_slab", + "dowoodslab": "dark_oak_slab", + "dowslab": "dark_oak_slab", + "dowoodenhalfblock": "dark_oak_slab", + "dowoodhalfblock": "dark_oak_slab", + "dowhalfblock": "dark_oak_slab", + "dohalfblock": "dark_oak_slab", + "dark_oak_stairs": { + "material": "DARK_OAK_STAIRS" + }, + "darkoakstairs": "dark_oak_stairs", + "darkoakwoodenstairs": "dark_oak_stairs", + "darkoakwoodstairs": "dark_oak_stairs", + "darkoakwstairs": "dark_oak_stairs", + "darkoakwoodenstair": "dark_oak_stairs", + "darkoakwoodstair": "dark_oak_stairs", + "darkoakwstair": "dark_oak_stairs", + "darkoakstair": "dark_oak_stairs", + "doakwoodenstairs": "dark_oak_stairs", + "doakwoodstairs": "dark_oak_stairs", + "doakwstairs": "dark_oak_stairs", + "doakwoodenstair": "dark_oak_stairs", + "doakwoodstair": "dark_oak_stairs", + "doakwstair": "dark_oak_stairs", + "doakstair": "dark_oak_stairs", + "dowoodenstairs": "dark_oak_stairs", + "dowoodstairs": "dark_oak_stairs", + "dowstairs": "dark_oak_stairs", + "dowoodenstair": "dark_oak_stairs", + "dowoodstair": "dark_oak_stairs", + "dowstair": "dark_oak_stairs", + "dostair": "dark_oak_stairs", + "dark_oak_trapdoor": { + "material": "DARK_OAK_TRAPDOOR" + }, + "darkoaktrapdoor": "dark_oak_trapdoor", + "darkoakdoortrap": "dark_oak_trapdoor", + "darkoakhatch": "dark_oak_trapdoor", + "darkoaktdoor": "dark_oak_trapdoor", + "darkoakdoort": "dark_oak_trapdoor", + "darkoaktrapd": "dark_oak_trapdoor", + "darkoakdtrap": "dark_oak_trapdoor", + "doaktrapdoor": "dark_oak_trapdoor", + "doakdoortrap": "dark_oak_trapdoor", + "doakhatch": "dark_oak_trapdoor", + "doaktdoor": "dark_oak_trapdoor", + "doakdoort": "dark_oak_trapdoor", + "doaktrapd": "dark_oak_trapdoor", + "doakdtrap": "dark_oak_trapdoor", + "dotrapdoor": "dark_oak_trapdoor", + "dodoortrap": "dark_oak_trapdoor", + "dohatch": "dark_oak_trapdoor", + "dotdoor": "dark_oak_trapdoor", + "dodoort": "dark_oak_trapdoor", + "dotrapd": "dark_oak_trapdoor", + "dodtrap": "dark_oak_trapdoor", + "dark_oak_wall_sign": { + "material": "DARK_OAK_WALL_SIGN", + "unspawnable": true + }, + "darkoakwallsign": "dark_oak_wall_sign", + "dark_oak_wood": { + "material": "DARK_OAK_WOOD" + }, + "darkoakwood": "dark_oak_wood", + "darkoaklogall": "dark_oak_wood", + "darkoaktrunkall": "dark_oak_wood", + "darkoaktreeall": "dark_oak_wood", + "doakwood": "dark_oak_wood", + "doaklogall": "dark_oak_wood", + "doaktrunkall": "dark_oak_wood", + "doaktreeall": "dark_oak_wood", + "dowood": "dark_oak_wood", + "dologall": "dark_oak_wood", + "dotrunkall": "dark_oak_wood", + "dotreeall": "dark_oak_wood", + "dark_prismarine": { + "material": "DARK_PRISMARINE" + }, + "darkprismarine": "dark_prismarine", + "dark_prismarine_slab": { + "material": "DARK_PRISMARINE_SLAB" + }, + "darkprismarineslab": "dark_prismarine_slab", + "darkprismarinesl": "dark_prismarine_slab", + "dprismarineslab": "dark_prismarine_slab", + "dprismarinesl": "dark_prismarine_slab", + "darkprisslab": "dark_prismarine_slab", + "darkprissl": "dark_prismarine_slab", + "dprisslab": "dark_prismarine_slab", + "dprissl": "dark_prismarine_slab", + "darkseaslab": "dark_prismarine_slab", + "darkseasl": "dark_prismarine_slab", + "dseaslab": "dark_prismarine_slab", + "dseasl": "dark_prismarine_slab", + "dark_prismarine_stairs": { + "material": "DARK_PRISMARINE_STAIRS" + }, + "darkprismarinestairs": "dark_prismarine_stairs", + "darkprismarinestair": "dark_prismarine_stairs", + "darkprismarinest": "dark_prismarine_stairs", + "dprismarinestairs": "dark_prismarine_stairs", + "dprismarinestair": "dark_prismarine_stairs", + "dprismarinest": "dark_prismarine_stairs", + "darkprisstairs": "dark_prismarine_stairs", + "darkprisstair": "dark_prismarine_stairs", + "darkprisst": "dark_prismarine_stairs", + "dprisstairs": "dark_prismarine_stairs", + "dprisstair": "dark_prismarine_stairs", + "dprisst": "dark_prismarine_stairs", + "darkseastairs": "dark_prismarine_stairs", + "darkseastair": "dark_prismarine_stairs", + "darkseast": "dark_prismarine_stairs", + "dseastairs": "dark_prismarine_stairs", + "dseastair": "dark_prismarine_stairs", + "dseast": "dark_prismarine_stairs", + "daylight_detector": { + "material": "DAYLIGHT_DETECTOR" + }, + "daylightdetector": "daylight_detector", + "daylightsensor": "daylight_detector", + "daylightsense": "daylight_detector", + "lightsensor": "daylight_detector", + "lightsense": "daylight_detector", + "daysensor": "daylight_detector", + "daysense": "daylight_detector", + "timesensor": "daylight_detector", + "timesense": "daylight_detector", + "dead_brain_coral": { + "material": "DEAD_BRAIN_CORAL" + }, + "deadbraincoral": "dead_brain_coral", + "dead_brain_coral_block": { + "material": "DEAD_BRAIN_CORAL_BLOCK" + }, + "deadbraincoralblock": "dead_brain_coral_block", + "dead_brain_coral_fan": { + "material": "DEAD_BRAIN_CORAL_FAN" + }, + "deadbraincoralfan": "dead_brain_coral_fan", + "dead_brain_coral_wall_fan": { + "material": "DEAD_BRAIN_CORAL_WALL_FAN", + "unspawnable": true + }, + "deadbraincoralwallfan": "dead_brain_coral_wall_fan", + "dead_bubble_coral": { + "material": "DEAD_BUBBLE_CORAL" + }, + "deadbubblecoral": "dead_bubble_coral", + "dead_bubble_coral_block": { + "material": "DEAD_BUBBLE_CORAL_BLOCK" + }, + "deadbubblecoralblock": "dead_bubble_coral_block", + "dead_bubble_coral_fan": { + "material": "DEAD_BUBBLE_CORAL_FAN" + }, + "deadbubblecoralfan": "dead_bubble_coral_fan", + "dead_bubble_coral_wall_fan": { + "material": "DEAD_BUBBLE_CORAL_WALL_FAN", + "unspawnable": true + }, + "deadbubblecoralwallfan": "dead_bubble_coral_wall_fan", + "dead_bush": { + "material": "DEAD_BUSH" + }, + "deadbush": "dead_bush", + "bush": "dead_bush", + "deadshrub": "dead_bush", + "dshrub": "dead_bush", + "dbush": "dead_bush", + "deadsapling": "dead_bush", + "dead_fire_coral": { + "material": "DEAD_FIRE_CORAL" + }, + "deadfirecoral": "dead_fire_coral", + "dead_fire_coral_block": { + "material": "DEAD_FIRE_CORAL_BLOCK" + }, + "deadfirecoralblock": "dead_fire_coral_block", + "dead_fire_coral_fan": { + "material": "DEAD_FIRE_CORAL_FAN" + }, + "deadfirecoralfan": "dead_fire_coral_fan", + "dead_fire_coral_wall_fan": { + "material": "DEAD_FIRE_CORAL_WALL_FAN", + "unspawnable": true + }, + "deadfirecoralwallfan": "dead_fire_coral_wall_fan", + "dead_horn_coral": { + "material": "DEAD_HORN_CORAL" + }, + "deadhorncoral": "dead_horn_coral", + "dead_horn_coral_block": { + "material": "DEAD_HORN_CORAL_BLOCK" + }, + "deadhorncoralblock": "dead_horn_coral_block", + "dead_horn_coral_fan": { + "material": "DEAD_HORN_CORAL_FAN" + }, + "deadhorncoralfan": "dead_horn_coral_fan", + "dead_horn_coral_wall_fan": { + "material": "DEAD_HORN_CORAL_WALL_FAN", + "unspawnable": true + }, + "deadhorncoralwallfan": "dead_horn_coral_wall_fan", + "dead_tube_coral": { + "material": "DEAD_TUBE_CORAL" + }, + "deadtubecoral": "dead_tube_coral", + "dead_tube_coral_block": { + "material": "DEAD_TUBE_CORAL_BLOCK" + }, + "deadtubecoralblock": "dead_tube_coral_block", + "dead_tube_coral_fan": { + "material": "DEAD_TUBE_CORAL_FAN" + }, + "deadtubecoralfan": "dead_tube_coral_fan", + "dead_tube_coral_wall_fan": { + "material": "DEAD_TUBE_CORAL_WALL_FAN", + "unspawnable": true + }, + "deadtubecoralwallfan": "dead_tube_coral_wall_fan", + "debug_stick": { + "material": "DEBUG_STICK" + }, + "debugstick": "debug_stick", + "detector_rail": { + "material": "DETECTOR_RAIL" + }, + "detectorrail": "detector_rail", + "detectorrails": "detector_rail", + "detectortrack": "detector_rail", + "detectingrails": "detector_rail", + "detectingrail": "detector_rail", + "detectingtrack": "detector_rail", + "detectrails": "detector_rail", + "detectrail": "detector_rail", + "detecttrack": "detector_rail", + "drails": "detector_rail", + "drail": "detector_rail", + "dtrack": "detector_rail", + "diamond": "diamond", + "diamond_axe": { + "material": "DIAMOND_AXE" + }, + "diamondaxe": "diamond_axe", + "crystalaxe": "diamond_axe", + "daxe": "diamond_axe", + "diamond_block": { + "material": "DIAMOND_BLOCK" + }, + "diamondblock": "diamond_block", + "crystalblock": "diamond_block", + "blockcrystal": "diamond_block", + "blockdiamond": "diamond_block", + "dblock": "diamond_block", + "blockd": "diamond_block", + "diamond_boots": { + "material": "DIAMOND_BOOTS" + }, + "diamondboots": "diamond_boots", + "crystalboots": "diamond_boots", + "crystalshoes": "diamond_boots", + "diamondshoes": "diamond_boots", + "dboots": "diamond_boots", + "dshoes": "diamond_boots", + "diamond_chestplate": { + "material": "DIAMOND_CHESTPLATE" + }, + "diamondchestplate": "diamond_chestplate", + "crystalchestplate": "diamond_chestplate", + "crystalplatebody": "diamond_chestplate", + "crystalplate": "diamond_chestplate", + "crystalshirt": "diamond_chestplate", + "crystaltunic": "diamond_chestplate", + "diamondplatebody": "diamond_chestplate", + "diamondplate": "diamond_chestplate", + "diamondshirt": "diamond_chestplate", + "diamondtunic": "diamond_chestplate", + "dchestplate": "diamond_chestplate", + "dplatebody": "diamond_chestplate", + "dplate": "diamond_chestplate", + "dshirt": "diamond_chestplate", + "dtunic": "diamond_chestplate", + "diamond_helmet": { + "material": "DIAMOND_HELMET" + }, + "diamondhelmet": "diamond_helmet", + "crystalhelmet": "diamond_helmet", + "crystalhelm": "diamond_helmet", + "crystalhat": "diamond_helmet", + "crystalcoif": "diamond_helmet", + "diamondhelm": "diamond_helmet", + "diamondhat": "diamond_helmet", + "diamondcoif": "diamond_helmet", + "dhelmet": "diamond_helmet", + "dhelm": "diamond_helmet", + "dhat": "diamond_helmet", + "dcoif": "diamond_helmet", + "diamond_hoe": { + "material": "DIAMOND_HOE" + }, + "diamondhoe": "diamond_hoe", + "crystalhoe": "diamond_hoe", + "dhoe": "diamond_hoe", + "diamond_horse_armor": { + "material": "DIAMOND_HORSE_ARMOR" + }, + "diamondhorsearmor": "diamond_horse_armor", + "crystalhorsearmor": "diamond_horse_armor", + "crystalharmor": "diamond_horse_armor", + "crystalarmor": "diamond_horse_armor", + "diamondharmor": "diamond_horse_armor", + "diamondarmor": "diamond_horse_armor", + "dhorsearmor": "diamond_horse_armor", + "dharmor": "diamond_horse_armor", + "darmor": "diamond_horse_armor", + "diamond_leggings": { + "material": "DIAMOND_LEGGINGS" + }, + "diamondleggings": "diamond_leggings", + "crystalleggings": "diamond_leggings", + "crystallegs": "diamond_leggings", + "crystalpants": "diamond_leggings", + "diamondlegs": "diamond_leggings", + "diamondpants": "diamond_leggings", + "dleggings": "diamond_leggings", + "dlegs": "diamond_leggings", + "dpants": "diamond_leggings", + "diamond_ore": { + "material": "DIAMOND_ORE" + }, + "diamondore": "diamond_ore", + "crystalore": "diamond_ore", + "crystalo": "diamond_ore", + "orecrystal": "diamond_ore", + "ocrystal": "diamond_ore", + "diamondo": "diamond_ore", + "orediamond": "diamond_ore", + "odiamond": "diamond_ore", + "dore": "diamond_ore", + "ored": "redstone_ore", + "od": "diamond_ore", + "diamond_pickaxe": { + "material": "DIAMOND_PICKAXE" + }, + "diamondpickaxe": "diamond_pickaxe", + "crystalpickaxe": "diamond_pickaxe", + "crystalpick": "diamond_pickaxe", + "diamondpick": "diamond_pickaxe", + "dpickaxe": "diamond_pickaxe", + "dpick": "diamond_pickaxe", + "diamond_shovel": { + "material": "DIAMOND_SHOVEL" + }, + "diamondshovel": "diamond_shovel", + "crystalshovel": "diamond_shovel", + "crystalspade": "diamond_shovel", + "diamondspade": "diamond_shovel", + "dshovel": "diamond_shovel", + "dspade": "diamond_shovel", + "diamond_sword": { + "material": "DIAMOND_SWORD" + }, + "diamondsword": "diamond_sword", + "crystalsword": "diamond_sword", + "dsword": "diamond_sword", + "diorite": "diorite", + "dstone": "diorite", + "diorite_slab": { + "material": "DIORITE_SLAB" + }, + "dioriteslab": "diorite_slab", + "diorite_stairs": { + "material": "DIORITE_STAIRS" + }, + "dioritestairs": "diorite_stairs", + "diorite_wall": { + "material": "DIORITE_WALL" + }, + "dioritewall": "diorite_wall", + "dirt": "dirt", + "earth": "dirt", + "land": "dirt", + "dispenser": "dispenser", + "dispense": "dispenser", + "dolphin_spawn_egg": { + "material": "DOLPHIN_SPAWN_EGG" + }, + "dolphinspawnegg": "dolphin_spawn_egg", + "dolphinegg": "dolphin_spawn_egg", + "eggdolphin": "dolphin_spawn_egg", + "spawneggdolphin": "dolphin_spawn_egg", + "dolphinspawn": "dolphin_spawn_egg", + "spawndolphin": "dolphin_spawn_egg", + "eccoegg": "dolphin_spawn_egg", + "eggecco": "dolphin_spawn_egg", + "eccospawnegg": "dolphin_spawn_egg", + "spawneggecco": "dolphin_spawn_egg", + "eccospawn": "dolphin_spawn_egg", + "spawnecco": "dolphin_spawn_egg", + "donkey_spawn_egg": { + "material": "DONKEY_SPAWN_EGG" + }, + "donkeyspawnegg": "donkey_spawn_egg", + "donkeyegg": "donkey_spawn_egg", + "eggdonkey": "donkey_spawn_egg", + "spawneggdonkey": "donkey_spawn_egg", + "donkeyspawn": "donkey_spawn_egg", + "spawndonkey": "donkey_spawn_egg", + "dragon_breath": { + "material": "DRAGON_BREATH" + }, + "dragonbreath": "dragon_breath", + "dragon_egg": { + "material": "DRAGON_EGG" + }, + "dragonegg": "dragon_egg", + "enderdragonegg": "dragon_egg", + "endegg": "dragon_egg", + "degg": "dragon_egg", + "bossegg": "dragon_egg", + "begg": "dragon_egg", + "dragon_head": { + "material": "DRAGON_HEAD" + }, + "dragonhead": "dragon_head", + "dragonskull": "dragon_head", + "headdragon": "dragon_head", + "stevedragon": "dragon_head", + "dragonmask": "dragon_head", + "dragonheadmask": "dragon_head", + "dragon_wall_head": { + "material": "DRAGON_WALL_HEAD", + "unspawnable": true + }, + "dragonwallhead": "dragon_wall_head", + "dried_kelp": { + "material": "DRIED_KELP" + }, + "driedkelp": "dried_kelp", + "dried_kelp_block": { + "material": "DRIED_KELP_BLOCK" + }, + "driedkelpblock": "dried_kelp_block", + "dropper": "dropper", + "drowned_spawn_egg": { + "material": "DROWNED_SPAWN_EGG" + }, + "drownedspawnegg": "drowned_spawn_egg", + "drownedegg": "drowned_spawn_egg", + "eggdrowned": "drowned_spawn_egg", + "spawneggdrowned": "drowned_spawn_egg", + "drownedspawn": "drowned_spawn_egg", + "spawndrowned": "drowned_spawn_egg", + "egg": "egg", + "elder_guardian_spawn_egg": { + "material": "ELDER_GUARDIAN_SPAWN_EGG" + }, + "elderguardianspawnegg": "elder_guardian_spawn_egg", + "elderguardianegg": "elder_guardian_spawn_egg", + "eggelderguardian": "elder_guardian_spawn_egg", + "spawneggelderguardian": "elder_guardian_spawn_egg", + "elderguardianspawn": "elder_guardian_spawn_egg", + "spawnelderguardian": "elder_guardian_spawn_egg", + "eguardianegg": "elder_guardian_spawn_egg", + "eggeguardian": "elder_guardian_spawn_egg", + "eguardianspawnegg": "elder_guardian_spawn_egg", + "spawneggeguardian": "elder_guardian_spawn_egg", + "eguardianspawn": "elder_guardian_spawn_egg", + "spawneguardian": "elder_guardian_spawn_egg", + "elytra": "elytra", + "hangglider": "elytra", + "glider": "elytra", + "wings": "elytra", + "wing": "elytra", + "playerwings": "elytra", + "playerwing": "elytra", + "pwings": "elytra", + "pwing": "elytra", + "emerald": "emerald", + "emerald_block": { + "material": "EMERALD_BLOCK" + }, + "emeraldblock": "emerald_block", + "blockemerald": "emerald_block", + "eblock": "emerald_block", + "blocke": "emerald_block", + "emerald_ore": { + "material": "EMERALD_ORE" + }, + "emeraldore": "emerald_ore", + "emeraldo": "emerald_ore", + "oreemerald": "emerald_ore", + "oemerald": "emerald_ore", + "eore": "emerald_ore", + "eo": "emerald_ore", + "oree": "emerald_ore", + "oe": "emerald_ore", + "enchanted_book": { + "material": "ENCHANTED_BOOK" + }, + "enchantedbook": "enchanted_book", + "enchanted_golden_apple": { + "material": "ENCHANTED_GOLDEN_APPLE" + }, + "enchantedgoldenapple": "enchanted_golden_apple", + "notchapple": "enchanted_golden_apple", + "godapple": "enchanted_golden_apple", + "enchgoldapple": "enchanted_golden_apple", + "enchanting_table": { + "material": "ENCHANTING_TABLE" + }, + "enchantingtable": "enchanting_table", + "enchantmenttable": "enchanting_table", + "enchanttable": "enchanting_table", + "etable": "enchanting_table", + "magicaltable": "enchanting_table", + "magictable": "enchanting_table", + "mtable": "enchanting_table", + "enchantmentdesk": "enchanting_table", + "enchantingdesk": "enchanting_table", + "enchantdesk": "enchanting_table", + "edesk": "enchanting_table", + "magicaldesk": "enchanting_table", + "magicdesk": "enchanting_table", + "mdesk": "enchanting_table", + "booktable": "enchanting_table", + "bookdesk": "enchanting_table", + "btable": "enchanting_table", + "bdesk": "enchanting_table", + "enderman_spawn_egg": { + "material": "ENDERMAN_SPAWN_EGG" + }, + "endermanspawnegg": "enderman_spawn_egg", + "endermanegg": "enderman_spawn_egg", + "eggenderman": "enderman_spawn_egg", + "spawneggenderman": "enderman_spawn_egg", + "endermanspawn": "enderman_spawn_egg", + "spawnenderman": "enderman_spawn_egg", + "endermite_spawn_egg": { + "material": "ENDERMITE_SPAWN_EGG" + }, + "endermitespawnegg": "endermite_spawn_egg", + "endermiteegg": "endermite_spawn_egg", + "eggendermite": "endermite_spawn_egg", + "spawneggendermite": "endermite_spawn_egg", + "endermitespawn": "endermite_spawn_egg", + "spawnendermite": "endermite_spawn_egg", + "ender_chest": { + "material": "ENDER_CHEST" + }, + "enderchest": "ender_chest", + "endchest": "ender_chest", + "echest": "ender_chest", + "chestender": "ender_chest", + "chestend": "ender_chest", + "cheste": "ender_chest", + "endercontainer": "ender_chest", + "endcontainer": "ender_chest", + "econtainer": "ender_chest", + "ender_eye": { + "material": "ENDER_EYE" + }, + "endereye": "ender_eye", + "ender_pearl": { + "material": "ENDER_PEARL" + }, + "enderpearl": "ender_pearl", + "end_crystal": { + "material": "END_CRYSTAL" + }, + "endcrystal": "end_crystal", + "end_gateway": { + "material": "END_GATEWAY", + "unspawnable": true + }, + "endgateway": "end_gateway", + "end_portal": { + "material": "END_PORTAL", + "unspawnable": true + }, + "endportal": "end_portal", + "endergoo": "end_portal", + "enderportal": "end_portal", + "endgoo": "end_portal", + "eportal": "end_portal", + "egoo": "end_portal", + "end_portal_frame": { + "material": "END_PORTAL_FRAME" + }, + "endportalframe": "end_portal_frame", + "endergooframe": "end_portal_frame", + "enderportalframe": "end_portal_frame", + "endgooframe": "end_portal_frame", + "eportalframe": "end_portal_frame", + "egooframe": "end_portal_frame", + "enderframe": "end_portal_frame", + "endframe": "end_portal_frame", + "end_rod": { + "material": "END_ROD" + }, + "endrod": "end_rod", + "end_stone": { + "material": "END_STONE" + }, + "endstone": "end_stone", + "enderstone": "end_stone", + "endrock": "end_stone", + "enderrock": "end_stone", + "erock": "end_stone", + "estone": "end_stone", + "end_stone_bricks": { + "material": "END_STONE_BRICKS" + }, + "endstonebricks": "end_stone_bricks", + "end_stone_brick_slab": { + "material": "END_STONE_BRICK_SLAB" + }, + "endstonebrickslab": "end_stone_brick_slab", + "stoneslab": "stone_slab", + "stonesl": "stone_slab", + "smoothstoneslab": "smooth_stone_slab", + "smoothstonesl": "stone_slab", + "sstoneslab": "stone_slab", + "sstonesl": "stone_slab", + "end_stone_brick_stairs": { + "material": "END_STONE_BRICK_STAIRS" + }, + "endstonebrickstairs": "end_stone_brick_stairs", + "stonestair": "stone_stairs", + "stonestairs": "stone_stairs", + "stonest": "stone_stairs", + "smoothstonestair": "stone_stairs", + "smoothstonestairs": "stone_stairs", + "smoothstonest": "stone_stairs", + "sstonestair": "stone_stairs", + "sstonestairs": "stone_stairs", + "sstonest": "stone_stairs", + "end_stone_brick_wall": { + "material": "END_STONE_BRICK_WALL" + }, + "endstonebrickwall": "end_stone_brick_wall", + "evoker_spawn_egg": { + "material": "EVOKER_SPAWN_EGG" + }, + "evokerspawnegg": "evoker_spawn_egg", + "evokeregg": "evoker_spawn_egg", + "eggevoker": "evoker_spawn_egg", + "spawneggevoker": "evoker_spawn_egg", + "evokerspawn": "evoker_spawn_egg", + "spawnevoker": "evoker_spawn_egg", + "experience_bottle": { + "material": "EXPERIENCE_BOTTLE" + }, + "experiencebottle": "experience_bottle", + "farmland": "farmland", + "feather": "feather", + "fermented_spider_eye": { + "material": "FERMENTED_SPIDER_EYE" + }, + "fermentedspidereye": "fermented_spider_eye", + "fern": "fern", + "filled_map": { + "material": "FILLED_MAP" + }, + "filledmap": "filled_map", + "fire": { + "material": "FIRE", + "unspawnable": true + }, + "firework_rocket": { + "material": "FIREWORK_ROCKET" + }, + "fireworkrocket": "firework_rocket", + "firework_star": { + "material": "FIREWORK_STAR" + }, + "fireworkstar": "firework_star", + "fire_charge": { + "material": "FIRE_CHARGE" + }, + "firecharge": "fire_charge", + "fire_coral": { + "material": "FIRE_CORAL" + }, + "firecoral": "fire_coral", + "fire_coral_block": { + "material": "FIRE_CORAL_BLOCK" + }, + "firecoralblock": "fire_coral_block", + "fire_coral_fan": { + "material": "FIRE_CORAL_FAN" + }, + "firecoralfan": "fire_coral_fan", + "fire_coral_wall_fan": { + "material": "FIRE_CORAL_WALL_FAN", + "unspawnable": true + }, + "firecoralwallfan": "fire_coral_wall_fan", + "fishing_rod": { + "material": "FISHING_ROD" + }, + "fishingrod": "fishing_rod", + "fletching_table": { + "material": "FLETCHING_TABLE" + }, + "fletchingtable": "fletching_table", + "flint": "flint", + "flint_and_steel": { + "material": "FLINT_AND_STEEL" + }, + "flintandsteel": "flint_and_steel", + "flower_banner_pattern": { + "material": "FLOWER_BANNER_PATTERN" + }, + "flowerbannerpattern": "flower_banner_pattern", + "flower_pot": { + "material": "FLOWER_POT" + }, + "flowerpot": "flower_pot", + "fox_spawn_egg": { + "material": "FOX_SPAWN_EGG" + }, + "foxspawnegg": "fox_spawn_egg", + "frosted_ice": { + "material": "FROSTED_ICE", + "unspawnable": true + }, + "frostedice": "frosted_ice", + "furnace": "furnace", + "furnace_minecart": { + "material": "FURNACE_MINECART" + }, + "furnaceminecart": "furnace_minecart", + "engineminecart": "furnace_minecart", + "enginemcart": "furnace_minecart", + "enginemc": "furnace_minecart", + "enginecart": "furnace_minecart", + "poweredminecart": "furnace_minecart", + "poweredmcart": "furnace_minecart", + "poweredmc": "furnace_minecart", + "poweredcart": "furnace_minecart", + "powerminecart": "furnace_minecart", + "powermcart": "furnace_minecart", + "powermc": "furnace_minecart", + "powercart": "furnace_minecart", + "furnacemcart": "furnace_minecart", + "furnacemc": "furnace_minecart", + "furnacecart": "furnace_minecart", + "eminecart": "furnace_minecart", + "emcart": "furnace_minecart", + "emc": "furnace_minecart", + "ecart": "furnace_minecart", + "pminecart": "furnace_minecart", + "pmcart": "furnace_minecart", + "pmc": "furnace_minecart", + "pcart": "furnace_minecart", + "fminecart": "furnace_minecart", + "fmcart": "furnace_minecart", + "fmc": "furnace_minecart", + "fcart": "furnace_minecart", + "ghast_spawn_egg": { + "material": "GHAST_SPAWN_EGG" + }, + "ghastspawnegg": "ghast_spawn_egg", + "ghastegg": "ghast_spawn_egg", + "eggghast": "ghast_spawn_egg", + "spawneggghast": "ghast_spawn_egg", + "ghastspawn": "ghast_spawn_egg", + "spawnghast": "ghast_spawn_egg", + "ghast_tear": { + "material": "GHAST_TEAR" + }, + "ghasttear": "ghast_tear", + "glass": "glass", + "blockglass": "glass", + "glassblock": "glass", + "glass_bottle": { + "material": "GLASS_BOTTLE" + }, + "glassbottle": "glass_bottle", + "glass_pane": { + "material": "GLASS_PANE" + }, + "glasspane": "glass_pane", + "glassp": "glass_pane", + "paneglass": "glass_pane", + "pglass": "glass_pane", + "flatglass": "glass_pane", + "fglass": "glass_pane", + "skinnyglass": "glass_pane", + "glassflat": "glass_pane", + "glassf": "glass_pane", + "glassskinny": "glass_pane", + "glasss": "glass_pane", + "glistering_melon_slice": { + "material": "GLISTERING_MELON_SLICE" + }, + "glisteringmelonslice": "glistering_melon_slice", + "globe_banner_pattern": { + "material": "GLOBE_BANNER_PATTERN" + }, + "globebannerpattern": "globe_banner_pattern", + "glowstone": "glowstone", + "glowingstoneblock": "glowstone", + "lightstoneblock": "glowstone", + "glowstoneblock": "glowstone", + "blockglowingstone": "glowstone", + "blocklightstone": "glowstone", + "blockglowstone": "glowstone", + "glowingstone": "glowstone", + "lightstone": "glowstone", + "glowingblock": "glowstone", + "lightblock": "glowstone", + "glowblock": "glowstone", + "lstone": "glowstone", + "glowstone_dust": { + "material": "GLOWSTONE_DUST" + }, + "glowstonedust": "glowstone_dust", + "golden_apple": { + "material": "GOLDEN_APPLE" + }, + "goldenapple": "golden_apple", + "goldapple": "golden_apple", + "newgoldapple": "golden_apple", + "notnotchapple": "golden_apple", + "golden_axe": { + "material": "GOLDEN_AXE" + }, + "goldenaxe": "golden_axe", + "goldaxe": "golden_axe", + "gaxe": "golden_axe", + "golden_boots": { + "material": "GOLDEN_BOOTS" + }, + "goldenboots": "golden_boots", + "goldboots": "golden_boots", + "goldshoes": "golden_boots", + "gboots": "golden_boots", + "gshoes": "golden_boots", + "golden_carrot": { + "material": "GOLDEN_CARROT" + }, + "goldencarrot": "golden_carrot", + "golden_chestplate": { + "material": "GOLDEN_CHESTPLATE" + }, + "goldenchestplate": "golden_chestplate", + "goldchestplate": "golden_chestplate", + "goldplatebody": "golden_chestplate", + "goldplate": "golden_chestplate", + "goldshirt": "golden_chestplate", + "goldtunic": "golden_chestplate", + "gchestplate": "golden_chestplate", + "gplatebody": "golden_chestplate", + "gplate": "golden_chestplate", + "gshirt": "golden_chestplate", + "gtunic": "golden_chestplate", + "golden_helmet": { + "material": "GOLDEN_HELMET" + }, + "goldenhelmet": "golden_helmet", + "goldhelmet": "golden_helmet", + "goldhelm": "golden_helmet", + "goldhat": "golden_helmet", + "goldcoif": "golden_helmet", + "ghelmet": "golden_helmet", + "ghelm": "golden_helmet", + "ghat": "golden_helmet", + "gcoif": "golden_helmet", + "golden_hoe": { + "material": "GOLDEN_HOE" + }, + "goldenhoe": "golden_hoe", + "goldhoe": "golden_hoe", + "ghoe": "golden_hoe", + "golden_horse_armor": { + "material": "GOLDEN_HORSE_ARMOR" + }, + "goldenhorsearmor": "golden_horse_armor", + "goldhorsearmor": "golden_horse_armor", + "goldharmor": "golden_horse_armor", + "goldarmor": "golden_horse_armor", + "ghorsearmor": "golden_horse_armor", + "gharmor": "golden_horse_armor", + "garmor": "golden_horse_armor", + "golden_leggings": { + "material": "GOLDEN_LEGGINGS" + }, + "goldenleggings": "golden_leggings", + "goldleggings": "golden_leggings", + "goldlegs": "golden_leggings", + "goldpants": "golden_leggings", + "gleggings": "golden_leggings", + "glegs": "golden_leggings", + "gpants": "golden_leggings", + "golden_pickaxe": { + "material": "GOLDEN_PICKAXE" + }, + "goldenpickaxe": "golden_pickaxe", + "goldpickaxe": "golden_pickaxe", + "goldpick": "golden_pickaxe", + "gpickaxe": "golden_pickaxe", + "gpick": "golden_pickaxe", + "golden_shovel": { + "material": "GOLDEN_SHOVEL" + }, + "goldenshovel": "golden_shovel", + "goldshovel": "golden_shovel", + "goldspade": "golden_shovel", + "gshovel": "golden_shovel", + "gspade": "golden_shovel", + "golden_sword": { + "material": "GOLDEN_SWORD" + }, + "goldensword": "golden_sword", + "goldsword": "golden_sword", + "gsword": "golden_sword", + "gold_block": { + "material": "GOLD_BLOCK" + }, + "goldblock": "gold_block", + "blockgold": "gold_block", + "gblock": "gold_block", + "blockg": "gold_block", + "gold_ingot": { + "material": "GOLD_INGOT" + }, + "goldingot": "gold_ingot", + "goldbar": "gold_ingot", + "goldi": "gold_ingot", + "ingotgold": "gold_ingot", + "bargold": "gold_ingot", + "igold": "gold_ingot", + "gingot": "gold_ingot", + "gbar": "gold_ingot", + "gi": "gold_ingot", + "ingotg": "gold_ingot", + "barg": "gold_ingot", + "ig": "gold_ingot", + "gold_nugget": { + "material": "GOLD_NUGGET" + }, + "goldnugget": "gold_nugget", + "gold_ore": { + "material": "GOLD_ORE" + }, + "goldore": "gold_ore", + "goldo": "gold_ore", + "oregold": "gold_ore", + "ogold": "gold_ore", + "gore": "gold_ore", + "go": "gold_ore", + "oreg": "gold_ore", + "og": "gold_ore", + "granite": "granite", + "gstone": "granite", + "granite_slab": { + "material": "GRANITE_SLAB" + }, + "graniteslab": "granite_slab", + "granite_stairs": { + "material": "GRANITE_STAIRS" + }, + "granitestairs": "granite_stairs", + "granite_wall": { + "material": "GRANITE_WALL" + }, + "granitewall": "granite_wall", + "grass": "grass", + "grass_block": { + "material": "GRASS_BLOCK" + }, + "grassblock": "grass_block", + "greendirt": "grass_block", + "greenearth": "grass_block", + "greenland": "grass_block", + "grass_path": { + "material": "GRASS_PATH" + }, + "grasspath": "grass_path", + "gravel": "gravel", + "gray_banner": { + "material": "GRAY_BANNER" + }, + "graybanner": "gray_banner", + "grastandingbanner": "gray_banner", + "grabanner": "gray_banner", + "greystandingbanner": "gray_banner", + "greybanner": "gray_banner", + "graystandingbanner": "gray_banner", + "dgrastandingbanner": "gray_banner", + "dgrabanner": "gray_banner", + "darkgrastandingbanner": "gray_banner", + "darkgrabanner": "gray_banner", + "dgreystandingbanner": "gray_banner", + "dgreybanner": "gray_banner", + "dgraystandingbanner": "gray_banner", + "dgraybanner": "gray_banner", + "darkgreystandingbanner": "gray_banner", + "darkgreybanner": "gray_banner", + "darkgraystandingbanner": "gray_banner", + "darkgraybanner": "gray_banner", + "gray_bed": { + "material": "GRAY_BED" + }, + "graybed": "gray_bed", + "grabed": "gray_bed", + "greybed": "gray_bed", + "dgrabed": "gray_bed", + "darkgrabed": "gray_bed", + "dgreybed": "gray_bed", + "dgraybed": "gray_bed", + "darkgreybed": "gray_bed", + "darkgraybed": "gray_bed", + "gray_carpet": { + "material": "GRAY_CARPET" + }, + "graycarpet": "gray_carpet", + "gracarpet": "gray_carpet", + "grafloor": "gray_carpet", + "greycarpet": "gray_carpet", + "greyfloor": "gray_carpet", + "grayfloor": "gray_carpet", + "dgracarpet": "gray_carpet", + "dgrafloor": "gray_carpet", + "darkgracarpet": "gray_carpet", + "darkgrafloor": "gray_carpet", + "dgreycarpet": "gray_carpet", + "dgreyfloor": "gray_carpet", + "dgraycarpet": "gray_carpet", + "dgrayfloor": "gray_carpet", + "darkgreycarpet": "gray_carpet", + "darkgreyfloor": "gray_carpet", + "darkgraycarpet": "gray_carpet", + "darkgrayfloor": "gray_carpet", + "gray_concrete": { + "material": "GRAY_CONCRETE" + }, + "grayconcrete": "gray_concrete", + "graconcrete": "gray_concrete", + "greyconcrete": "gray_concrete", + "dgraconcrete": "gray_concrete", + "darkgraconcrete": "gray_concrete", + "dgreyconcrete": "gray_concrete", + "dgrayconcrete": "gray_concrete", + "darkgreyconcrete": "gray_concrete", + "darkgrayconcrete": "gray_concrete", + "gray_concrete_powder": { + "material": "GRAY_CONCRETE_POWDER" + }, + "grayconcretepowder": "gray_concrete_powder", + "graconcretepowder": "gray_concrete_powder", + "graconcretesand": "gray_concrete_powder", + "gracpowder": "gray_concrete_powder", + "gracdust": "gray_concrete_powder", + "gracp": "gray_concrete_powder", + "greyconcretepowder": "gray_concrete_powder", + "greyconcretesand": "gray_concrete_powder", + "greycpowder": "gray_concrete_powder", + "greycdust": "gray_concrete_powder", + "greycp": "gray_concrete_powder", + "grayconcretesand": "gray_concrete_powder", + "graycpowder": "gray_concrete_powder", + "graycdust": "gray_concrete_powder", + "graycp": "gray_concrete_powder", + "dgraconcretepowder": "gray_concrete_powder", + "dgraconcretesand": "gray_concrete_powder", + "dgracpowder": "gray_concrete_powder", + "dgracdust": "gray_concrete_powder", + "dgracp": "gray_concrete_powder", + "darkgraconcretepowder": "gray_concrete_powder", + "darkgraconcretesand": "gray_concrete_powder", + "darkgracpowder": "gray_concrete_powder", + "darkgracdust": "gray_concrete_powder", + "darkgracp": "gray_concrete_powder", + "dgreyconcretepowder": "gray_concrete_powder", + "dgreyconcretesand": "gray_concrete_powder", + "dgreycpowder": "gray_concrete_powder", + "dgreycdust": "gray_concrete_powder", + "dgreycp": "gray_concrete_powder", + "dgrayconcretepowder": "gray_concrete_powder", + "dgrayconcretesand": "gray_concrete_powder", + "dgraycpowder": "gray_concrete_powder", + "dgraycdust": "gray_concrete_powder", + "dgraycp": "gray_concrete_powder", + "darkgreyconcretepowder": "gray_concrete_powder", + "darkgreyconcretesand": "gray_concrete_powder", + "darkgreycpowder": "gray_concrete_powder", + "darkgreycdust": "gray_concrete_powder", + "darkgreycp": "gray_concrete_powder", + "darkgrayconcretepowder": "gray_concrete_powder", + "darkgrayconcretesand": "gray_concrete_powder", + "darkgraycpowder": "gray_concrete_powder", + "darkgraycdust": "gray_concrete_powder", + "darkgraycp": "gray_concrete_powder", + "gray_dye": { + "material": "GRAY_DYE" + }, + "graydye": "gray_dye", + "gray_glazed_terracotta": { + "material": "GRAY_GLAZED_TERRACOTTA" + }, + "grayglazedterracotta": "gray_glazed_terracotta", + "graglazedtcota": "gray_glazed_terracotta", + "graglazedterra": "gray_glazed_terracotta", + "graglazedterracotta": "gray_glazed_terracotta", + "graglazedterracota": "gray_glazed_terracotta", + "greyglazedtcota": "gray_glazed_terracotta", + "greyglazedterra": "gray_glazed_terracotta", + "greyglazedterracotta": "gray_glazed_terracotta", + "greyglazedterracota": "gray_glazed_terracotta", + "grayglazedtcota": "gray_glazed_terracotta", + "grayglazedterra": "gray_glazed_terracotta", + "grayglazedterracota": "gray_glazed_terracotta", + "dgraglazedtcota": "gray_glazed_terracotta", + "dgraglazedterra": "gray_glazed_terracotta", + "dgraglazedterracotta": "gray_glazed_terracotta", + "dgraglazedterracota": "gray_glazed_terracotta", + "darkgraglazedtcota": "gray_glazed_terracotta", + "darkgraglazedterra": "gray_glazed_terracotta", + "darkgraglazedterracotta": "gray_glazed_terracotta", + "darkgraglazedterracota": "gray_glazed_terracotta", + "dgreyglazedtcota": "gray_glazed_terracotta", + "dgreyglazedterra": "gray_glazed_terracotta", + "dgreyglazedterracotta": "gray_glazed_terracotta", + "dgreyglazedterracota": "gray_glazed_terracotta", + "dgrayglazedtcota": "gray_glazed_terracotta", + "dgrayglazedterra": "gray_glazed_terracotta", + "dgrayglazedterracotta": "gray_glazed_terracotta", + "dgrayglazedterracota": "gray_glazed_terracotta", + "darkgreyglazedtcota": "gray_glazed_terracotta", + "darkgreyglazedterra": "gray_glazed_terracotta", + "darkgreyglazedterracotta": "gray_glazed_terracotta", + "darkgreyglazedterracota": "gray_glazed_terracotta", + "darkgrayglazedtcota": "gray_glazed_terracotta", + "darkgrayglazedterra": "gray_glazed_terracotta", + "darkgrayglazedterracotta": "gray_glazed_terracotta", + "darkgrayglazedterracota": "gray_glazed_terracotta", + "gray_shulker_box": { + "material": "GRAY_SHULKER_BOX" + }, + "grayshulkerbox": "gray_shulker_box", + "grashulkerbox": "gray_shulker_box", + "grachest": "gray_shulker_box", + "greyshulkerbox": "gray_shulker_box", + "greychest": "gray_shulker_box", + "graychest": "gray_shulker_box", + "dgrashulkerbox": "gray_shulker_box", + "dgrachest": "gray_shulker_box", + "darkgrashulkerbox": "gray_shulker_box", + "darkgrachest": "gray_shulker_box", + "dgreyshulkerbox": "gray_shulker_box", + "dgreychest": "gray_shulker_box", + "dgrayshulkerbox": "gray_shulker_box", + "dgraychest": "gray_shulker_box", + "darkgreyshulkerbox": "gray_shulker_box", + "darkgreychest": "gray_shulker_box", + "darkgrayshulkerbox": "gray_shulker_box", + "darkgraychest": "gray_shulker_box", + "gray_stained_glass": { + "material": "GRAY_STAINED_GLASS" + }, + "graystainedglass": "gray_stained_glass", + "graglass": "gray_stained_glass", + "grasglass": "gray_stained_glass", + "grastainedglass": "gray_stained_glass", + "greyglass": "gray_stained_glass", + "greysglass": "gray_stained_glass", + "greystainedglass": "gray_stained_glass", + "grayglass": "gray_stained_glass", + "graysglass": "gray_stained_glass", + "dgraglass": "gray_stained_glass", + "dgrasglass": "gray_stained_glass", + "dgrastainedglass": "gray_stained_glass", + "darkgraglass": "gray_stained_glass", + "darkgrasglass": "gray_stained_glass", + "darkgrastainedglass": "gray_stained_glass", + "dgreyglass": "gray_stained_glass", + "dgreysglass": "gray_stained_glass", + "dgreystainedglass": "gray_stained_glass", + "dgrayglass": "gray_stained_glass", + "dgraysglass": "gray_stained_glass", + "dgraystainedglass": "gray_stained_glass", + "darkgreyglass": "gray_stained_glass", + "darkgreysglass": "gray_stained_glass", + "darkgreystainedglass": "gray_stained_glass", + "darkgrayglass": "gray_stained_glass", + "darkgraysglass": "gray_stained_glass", + "darkgraystainedglass": "gray_stained_glass", + "gray_stained_glass_pane": { + "material": "GRAY_STAINED_GLASS_PANE" + }, + "graystainedglasspane": "gray_stained_glass_pane", + "graglasspane": "gray_stained_glass_pane", + "grasglasspane": "gray_stained_glass_pane", + "grastainedglasspane": "gray_stained_glass_pane", + "gragpane": "gray_stained_glass_pane", + "greyglasspane": "gray_stained_glass_pane", + "greysglasspane": "gray_stained_glass_pane", + "greystainedglasspane": "gray_stained_glass_pane", + "greygpane": "gray_stained_glass_pane", + "grayglasspane": "gray_stained_glass_pane", + "graysglasspane": "gray_stained_glass_pane", + "graygpane": "gray_stained_glass_pane", + "dgraglasspane": "gray_stained_glass_pane", + "dgrasglasspane": "gray_stained_glass_pane", + "dgrastainedglasspane": "gray_stained_glass_pane", + "dgragpane": "gray_stained_glass_pane", + "darkgraglasspane": "gray_stained_glass_pane", + "darkgrasglasspane": "gray_stained_glass_pane", + "darkgrastainedglasspane": "gray_stained_glass_pane", + "darkgragpane": "gray_stained_glass_pane", + "dgreyglasspane": "gray_stained_glass_pane", + "dgreysglasspane": "gray_stained_glass_pane", + "dgreystainedglasspane": "gray_stained_glass_pane", + "dgreygpane": "gray_stained_glass_pane", + "dgrayglasspane": "gray_stained_glass_pane", + "dgraysglasspane": "gray_stained_glass_pane", + "dgraystainedglasspane": "gray_stained_glass_pane", + "dgraygpane": "gray_stained_glass_pane", + "darkgreyglasspane": "gray_stained_glass_pane", + "darkgreysglasspane": "gray_stained_glass_pane", + "darkgreystainedglasspane": "gray_stained_glass_pane", + "darkgreygpane": "gray_stained_glass_pane", + "darkgrayglasspane": "gray_stained_glass_pane", + "darkgraysglasspane": "gray_stained_glass_pane", + "darkgraystainedglasspane": "gray_stained_glass_pane", + "darkgraygpane": "gray_stained_glass_pane", + "gray_terracotta": { + "material": "GRAY_TERRACOTTA" + }, + "grayterracotta": "gray_terracotta", + "graclay": "gray_terracotta", + "grasclay": "gray_terracotta", + "grastainedclay": "gray_terracotta", + "graterra": "gray_terracotta", + "gratcota": "gray_terracotta", + "graterracota": "gray_terracotta", + "graterracotta": "gray_terracotta", + "greyclay": "gray_terracotta", + "greysclay": "gray_terracotta", + "greystainedclay": "gray_terracotta", + "greyterra": "gray_terracotta", + "greytcota": "gray_terracotta", + "greyterracota": "gray_terracotta", + "greyterracotta": "gray_terracotta", + "grayclay": "gray_terracotta", + "graysclay": "gray_terracotta", + "graystainedclay": "gray_terracotta", + "grayterra": "gray_terracotta", + "graytcota": "gray_terracotta", + "grayterracota": "gray_terracotta", + "dgraclay": "gray_terracotta", + "dgrasclay": "gray_terracotta", + "dgrastainedclay": "gray_terracotta", + "dgraterra": "gray_terracotta", + "dgratcota": "gray_terracotta", + "dgraterracota": "gray_terracotta", + "dgraterracotta": "gray_terracotta", + "darkgraclay": "gray_terracotta", + "darkgrasclay": "gray_terracotta", + "darkgrastainedclay": "gray_terracotta", + "darkgraterra": "gray_terracotta", + "darkgratcota": "gray_terracotta", + "darkgraterracota": "gray_terracotta", + "darkgraterracotta": "gray_terracotta", + "dgreyclay": "gray_terracotta", + "dgreysclay": "gray_terracotta", + "dgreystainedclay": "gray_terracotta", + "dgreyterra": "gray_terracotta", + "dgreytcota": "gray_terracotta", + "dgreyterracota": "gray_terracotta", + "dgreyterracotta": "gray_terracotta", + "dgrayclay": "gray_terracotta", + "dgraysclay": "gray_terracotta", + "dgraystainedclay": "gray_terracotta", + "dgrayterra": "gray_terracotta", + "dgraytcota": "gray_terracotta", + "dgrayterracota": "gray_terracotta", + "dgrayterracotta": "gray_terracotta", + "darkgreyclay": "gray_terracotta", + "darkgreysclay": "gray_terracotta", + "darkgreystainedclay": "gray_terracotta", + "darkgreyterra": "gray_terracotta", + "darkgreytcota": "gray_terracotta", + "darkgreyterracota": "gray_terracotta", + "darkgreyterracotta": "gray_terracotta", + "darkgrayclay": "gray_terracotta", + "darkgraysclay": "gray_terracotta", + "darkgraystainedclay": "gray_terracotta", + "darkgrayterra": "gray_terracotta", + "darkgraytcota": "gray_terracotta", + "darkgrayterracota": "gray_terracotta", + "darkgrayterracotta": "gray_terracotta", + "gray_wall_banner": { + "material": "GRAY_WALL_BANNER", + "unspawnable": true + }, + "graywallbanner": "gray_wall_banner", + "gray_wool": { + "material": "GRAY_WOOL" + }, + "graywool": "gray_wool", + "grawool": "gray_wool", + "gracloth": "gray_wool", + "gracotton": "gray_wool", + "greywool": "gray_wool", + "greycloth": "gray_wool", + "greycotton": "gray_wool", + "graycloth": "gray_wool", + "graycotton": "gray_wool", + "dgrawool": "gray_wool", + "dgracloth": "gray_wool", + "dgracotton": "gray_wool", + "darkgrawool": "gray_wool", + "darkgracloth": "gray_wool", + "darkgracotton": "gray_wool", + "dgreywool": "gray_wool", + "dgreycloth": "gray_wool", + "dgreycotton": "gray_wool", + "dgraywool": "gray_wool", + "dgraycloth": "gray_wool", + "dgraycotton": "gray_wool", + "darkgreywool": "gray_wool", + "darkgreycloth": "gray_wool", + "darkgreycotton": "gray_wool", + "darkgraywool": "gray_wool", + "darkgraycloth": "gray_wool", + "darkgraycotton": "gray_wool", + "green_banner": { + "material": "GREEN_BANNER" + }, + "greenbanner": "green_banner", + "grestandingbanner": "green_banner", + "grebanner": "green_banner", + "dgrestandingbanner": "green_banner", + "dgrebanner": "green_banner", + "darkgrestandingbanner": "green_banner", + "darkgrebanner": "green_banner", + "greenstandingbanner": "green_banner", + "dgreenstandingbanner": "green_banner", + "dgreenbanner": "green_banner", + "darkgreenstandingbanner": "green_banner", + "darkgreenbanner": "green_banner", + "green_bed": { + "material": "GREEN_BED" + }, + "greenbed": "green_bed", + "grebed": "green_bed", + "dgrebed": "green_bed", + "darkgrebed": "green_bed", + "dgreenbed": "green_bed", + "darkgreenbed": "green_bed", + "green_carpet": { + "material": "GREEN_CARPET" + }, + "greencarpet": "green_carpet", + "grecarpet": "green_carpet", + "grefloor": "green_carpet", + "dgrecarpet": "green_carpet", + "dgrefloor": "green_carpet", + "darkgrecarpet": "green_carpet", + "darkgrefloor": "green_carpet", + "greenfloor": "green_carpet", + "dgreencarpet": "green_carpet", + "dgreenfloor": "green_carpet", + "darkgreencarpet": "green_carpet", + "darkgreenfloor": "green_carpet", + "green_concrete": { + "material": "GREEN_CONCRETE" + }, + "greenconcrete": "green_concrete", + "greconcrete": "green_concrete", + "dgreconcrete": "green_concrete", + "darkgreconcrete": "green_concrete", + "dgreenconcrete": "green_concrete", + "darkgreenconcrete": "green_concrete", + "green_concrete_powder": { + "material": "GREEN_CONCRETE_POWDER" + }, + "greenconcretepowder": "green_concrete_powder", + "greconcretepowder": "green_concrete_powder", + "greconcretesand": "green_concrete_powder", + "grecpowder": "green_concrete_powder", + "grecdust": "green_concrete_powder", + "grecp": "green_concrete_powder", + "dgreconcretepowder": "green_concrete_powder", + "dgreconcretesand": "green_concrete_powder", + "dgrecpowder": "green_concrete_powder", + "dgrecdust": "green_concrete_powder", + "dgrecp": "green_concrete_powder", + "darkgreconcretepowder": "green_concrete_powder", + "darkgreconcretesand": "green_concrete_powder", + "darkgrecpowder": "green_concrete_powder", + "darkgrecdust": "green_concrete_powder", + "darkgrecp": "green_concrete_powder", + "greenconcretesand": "green_concrete_powder", + "greencpowder": "green_concrete_powder", + "greencdust": "green_concrete_powder", + "greencp": "green_concrete_powder", + "dgreenconcretepowder": "green_concrete_powder", + "dgreenconcretesand": "green_concrete_powder", + "dgreencpowder": "green_concrete_powder", + "dgreencdust": "green_concrete_powder", + "dgreencp": "green_concrete_powder", + "darkgreenconcretepowder": "green_concrete_powder", + "darkgreenconcretesand": "green_concrete_powder", + "darkgreencpowder": "green_concrete_powder", + "darkgreencdust": "green_concrete_powder", + "darkgreencp": "green_concrete_powder", + "green_dye": { + "material": "GREEN_DYE", + "fallbacks": [ + "CACTUS_GREEN" + ] + }, + "greendye": "green_dye", + "green_glazed_terracotta": { + "material": "GREEN_GLAZED_TERRACOTTA" + }, + "greenglazedterracotta": "green_glazed_terracotta", + "greglazedtcota": "green_glazed_terracotta", + "greglazedterra": "green_glazed_terracotta", + "greglazedterracotta": "green_glazed_terracotta", + "greglazedterracota": "green_glazed_terracotta", + "dgreglazedtcota": "green_glazed_terracotta", + "dgreglazedterra": "green_glazed_terracotta", + "dgreglazedterracotta": "green_glazed_terracotta", + "dgreglazedterracota": "green_glazed_terracotta", + "darkgreglazedtcota": "green_glazed_terracotta", + "darkgreglazedterra": "green_glazed_terracotta", + "darkgreglazedterracotta": "green_glazed_terracotta", + "darkgreglazedterracota": "green_glazed_terracotta", + "greenglazedtcota": "green_glazed_terracotta", + "greenglazedterra": "green_glazed_terracotta", + "greenglazedterracota": "green_glazed_terracotta", + "dgreenglazedtcota": "green_glazed_terracotta", + "dgreenglazedterra": "green_glazed_terracotta", + "dgreenglazedterracotta": "green_glazed_terracotta", + "dgreenglazedterracota": "green_glazed_terracotta", + "darkgreenglazedtcota": "green_glazed_terracotta", + "darkgreenglazedterra": "green_glazed_terracotta", + "darkgreenglazedterracotta": "green_glazed_terracotta", + "darkgreenglazedterracota": "green_glazed_terracotta", + "green_shulker_box": { + "material": "GREEN_SHULKER_BOX" + }, + "greenshulkerbox": "green_shulker_box", + "greshulkerbox": "green_shulker_box", + "grechest": "green_shulker_box", + "dgreshulkerbox": "green_shulker_box", + "dgrechest": "green_shulker_box", + "darkgreshulkerbox": "green_shulker_box", + "darkgrechest": "green_shulker_box", + "greenchest": "green_shulker_box", + "dgreenshulkerbox": "green_shulker_box", + "dgreenchest": "green_shulker_box", + "darkgreenshulkerbox": "green_shulker_box", + "darkgreenchest": "green_shulker_box", + "green_stained_glass": { + "material": "GREEN_STAINED_GLASS" + }, + "greenstainedglass": "green_stained_glass", + "greglass": "green_stained_glass", + "gresglass": "green_stained_glass", + "grestainedglass": "green_stained_glass", + "dgreglass": "green_stained_glass", + "dgresglass": "green_stained_glass", + "dgrestainedglass": "green_stained_glass", + "darkgreglass": "green_stained_glass", + "darkgresglass": "green_stained_glass", + "darkgrestainedglass": "green_stained_glass", + "greenglass": "green_stained_glass", + "greensglass": "green_stained_glass", + "dgreenglass": "green_stained_glass", + "dgreensglass": "green_stained_glass", + "dgreenstainedglass": "green_stained_glass", + "darkgreenglass": "green_stained_glass", + "darkgreensglass": "green_stained_glass", + "darkgreenstainedglass": "green_stained_glass", + "green_stained_glass_pane": { + "material": "GREEN_STAINED_GLASS_PANE" + }, + "greenstainedglasspane": "green_stained_glass_pane", + "greglasspane": "green_stained_glass_pane", + "gresglasspane": "green_stained_glass_pane", + "grestainedglasspane": "green_stained_glass_pane", + "gregpane": "green_stained_glass_pane", + "dgreglasspane": "green_stained_glass_pane", + "dgresglasspane": "green_stained_glass_pane", + "dgrestainedglasspane": "green_stained_glass_pane", + "dgregpane": "green_stained_glass_pane", + "darkgreglasspane": "green_stained_glass_pane", + "darkgresglasspane": "green_stained_glass_pane", + "darkgrestainedglasspane": "green_stained_glass_pane", + "darkgregpane": "green_stained_glass_pane", + "greenglasspane": "green_stained_glass_pane", + "greensglasspane": "green_stained_glass_pane", + "greengpane": "green_stained_glass_pane", + "dgreenglasspane": "green_stained_glass_pane", + "dgreensglasspane": "green_stained_glass_pane", + "dgreenstainedglasspane": "green_stained_glass_pane", + "dgreengpane": "green_stained_glass_pane", + "darkgreenglasspane": "green_stained_glass_pane", + "darkgreensglasspane": "green_stained_glass_pane", + "darkgreenstainedglasspane": "green_stained_glass_pane", + "darkgreengpane": "green_stained_glass_pane", + "green_terracotta": { + "material": "GREEN_TERRACOTTA" + }, + "greenterracotta": "green_terracotta", + "greclay": "green_terracotta", + "gresclay": "green_terracotta", + "grestainedclay": "green_terracotta", + "greterra": "green_terracotta", + "gretcota": "green_terracotta", + "greterracota": "green_terracotta", + "greterracotta": "green_terracotta", + "dgreclay": "green_terracotta", + "dgresclay": "green_terracotta", + "dgrestainedclay": "green_terracotta", + "dgreterra": "green_terracotta", + "dgretcota": "green_terracotta", + "dgreterracota": "green_terracotta", + "dgreterracotta": "green_terracotta", + "darkgreclay": "green_terracotta", + "darkgresclay": "green_terracotta", + "darkgrestainedclay": "green_terracotta", + "darkgreterra": "green_terracotta", + "darkgretcota": "green_terracotta", + "darkgreterracota": "green_terracotta", + "darkgreterracotta": "green_terracotta", + "greenclay": "green_terracotta", + "greensclay": "green_terracotta", + "greenstainedclay": "green_terracotta", + "greenterra": "green_terracotta", + "greentcota": "green_terracotta", + "greenterracota": "green_terracotta", + "dgreenclay": "green_terracotta", + "dgreensclay": "green_terracotta", + "dgreenstainedclay": "green_terracotta", + "dgreenterra": "green_terracotta", + "dgreentcota": "green_terracotta", + "dgreenterracota": "green_terracotta", + "dgreenterracotta": "green_terracotta", + "darkgreenclay": "green_terracotta", + "darkgreensclay": "green_terracotta", + "darkgreenstainedclay": "green_terracotta", + "darkgreenterra": "green_terracotta", + "darkgreentcota": "green_terracotta", + "darkgreenterracota": "green_terracotta", + "darkgreenterracotta": "green_terracotta", + "green_wall_banner": { + "material": "GREEN_WALL_BANNER", + "unspawnable": true + }, + "greenwallbanner": "green_wall_banner", + "green_wool": { + "material": "GREEN_WOOL" + }, + "greenwool": "green_wool", + "grewool": "green_wool", + "grecloth": "green_wool", + "grecotton": "green_wool", + "dgrewool": "green_wool", + "dgrecloth": "green_wool", + "dgrecotton": "green_wool", + "darkgrewool": "green_wool", + "darkgrecloth": "green_wool", + "darkgrecotton": "green_wool", + "greencloth": "green_wool", + "greencotton": "green_wool", + "dgreenwool": "green_wool", + "dgreencloth": "green_wool", + "dgreencotton": "green_wool", + "darkgreenwool": "green_wool", + "darkgreencloth": "green_wool", + "darkgreencotton": "green_wool", + "grindstone": "grindstone", + "guardian_spawn_egg": { + "material": "GUARDIAN_SPAWN_EGG" + }, + "guardianspawnegg": "guardian_spawn_egg", + "guardianegg": "guardian_spawn_egg", + "eggguardian": "guardian_spawn_egg", + "spawneggguardian": "guardian_spawn_egg", + "guardianspawn": "guardian_spawn_egg", + "spawnguardian": "guardian_spawn_egg", + "gunpowder": "gunpowder", + "hay_block": { + "material": "HAY_BLOCK" + }, + "hayblock": "hay_block", + "hay": "hay_block", + "haybale": "hay_block", + "baleofhay": "hay_block", + "hayofbale": "hay_block", + "heart_of_the_sea": { + "material": "HEART_OF_THE_SEA" + }, + "heartofthesea": "heart_of_the_sea", + "heavy_weighted_pressure_plate": { + "material": "HEAVY_WEIGHTED_PRESSURE_PLATE" + }, + "heavyweightedpressureplate": "heavy_weighted_pressure_plate", + "hopper": "hopper", + "chestpuller": "hopper", + "chestpull": "hopper", + "cheststorer": "hopper", + "cheststore": "hopper", + "itempuller": "hopper", + "itempull": "hopper", + "itemstorer": "hopper", + "itemstore": "hopper", + "hopper_minecart": { + "material": "HOPPER_MINECART" + }, + "hopperminecart": "hopper_minecart", + "hoppermcart": "hopper_minecart", + "hoppermc": "hopper_minecart", + "hoppercart": "hopper_minecart", + "hopminecart": "hopper_minecart", + "hopmcart": "hopper_minecart", + "hopmc": "hopper_minecart", + "hopcart": "hopper_minecart", + "hminecart": "hopper_minecart", + "hmcart": "hopper_minecart", + "hmc": "hopper_minecart", + "hcart": "hopper_minecart", + "horn_coral": { + "material": "HORN_CORAL" + }, + "horncoral": "horn_coral", + "horn_coral_block": { + "material": "HORN_CORAL_BLOCK" + }, + "horncoralblock": "horn_coral_block", + "horn_coral_fan": { + "material": "HORN_CORAL_FAN" + }, + "horncoralfan": "horn_coral_fan", + "horn_coral_wall_fan": { + "material": "HORN_CORAL_WALL_FAN", + "unspawnable": true + }, + "horncoralwallfan": "horn_coral_wall_fan", + "horse_spawn_egg": { + "material": "HORSE_SPAWN_EGG" + }, + "horsespawnegg": "horse_spawn_egg", + "horseegg": "horse_spawn_egg", + "egghorse": "horse_spawn_egg", + "spawnegghorse": "horse_spawn_egg", + "horsespawn": "horse_spawn_egg", + "spawnhorse": "horse_spawn_egg", + "husk_spawn_egg": { + "material": "HUSK_SPAWN_EGG" + }, + "huskspawnegg": "husk_spawn_egg", + "huskegg": "husk_spawn_egg", + "egghusk": "husk_spawn_egg", + "spawnegghusk": "husk_spawn_egg", + "huskspawn": "husk_spawn_egg", + "spawnhusk": "husk_spawn_egg", + "ice": "ice", + "frozenwater": "ice", + "waterfrozen": "ice", + "freezewater": "ice", + "waterfreeze": "ice", + "infested_chiseled_stone_bricks": { + "material": "INFESTED_CHISELED_STONE_BRICKS" + }, + "infestedchiseledstonebricks": "infested_chiseled_stone_bricks", + "silverfishchiseledstonebrick": "infested_chiseled_stone_bricks", + "silverfishcirclestonebrick": "infested_chiseled_stone_bricks", + "silverfishcistonebrick": "infested_chiseled_stone_bricks", + "sfishchiseledstonebrick": "infested_chiseled_stone_bricks", + "sfishcirclestonebrick": "infested_chiseled_stone_bricks", + "sfishcistonebrick": "infested_chiseled_stone_bricks", + "fishchiseledstonebrick": "infested_chiseled_stone_bricks", + "fishcirclestonebrick": "infested_chiseled_stone_bricks", + "fishcistonebrick": "infested_chiseled_stone_bricks", + "infestedchiseledstonebrick": "infested_chiseled_stone_bricks", + "infestedcirclestonebrick": "infested_chiseled_stone_bricks", + "infestedcistonebrick": "infested_chiseled_stone_bricks", + "monstereggchiseledstonebrick": "infested_chiseled_stone_bricks", + "monstereggcirclestonebrick": "infested_chiseled_stone_bricks", + "monstereggcistonebrick": "infested_chiseled_stone_bricks", + "meggchiseledstonebrick": "infested_chiseled_stone_bricks", + "meggcirclestonebrick": "infested_chiseled_stone_bricks", + "meggcistonebrick": "infested_chiseled_stone_bricks", + "trapchiseledstonebrick": "infested_chiseled_stone_bricks", + "trapcirclestonebrick": "infested_chiseled_stone_bricks", + "trapcistonebrick": "infested_chiseled_stone_bricks", + "sfchiseledstonebrick": "infested_chiseled_stone_bricks", + "sfcirclestonebrick": "infested_chiseled_stone_bricks", + "sfcistonebrick": "infested_chiseled_stone_bricks", + "mechiseledstonebrick": "infested_chiseled_stone_bricks", + "mecirclestonebrick": "infested_chiseled_stone_bricks", + "mecistonebrick": "infested_chiseled_stone_bricks", + "silverfishchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "silverfishcirclestonebrickblock": "infested_chiseled_stone_bricks", + "silverfishcistonebrickblock": "infested_chiseled_stone_bricks", + "sfishchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "sfishcirclestonebrickblock": "infested_chiseled_stone_bricks", + "sfishcistonebrickblock": "infested_chiseled_stone_bricks", + "fishchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "fishcirclestonebrickblock": "infested_chiseled_stone_bricks", + "fishcistonebrickblock": "infested_chiseled_stone_bricks", + "infestedchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "infestedcirclestonebrickblock": "infested_chiseled_stone_bricks", + "infestedcistonebrickblock": "infested_chiseled_stone_bricks", + "monstereggchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "monstereggcirclestonebrickblock": "infested_chiseled_stone_bricks", + "monstereggcistonebrickblock": "infested_chiseled_stone_bricks", + "meggchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "meggcirclestonebrickblock": "infested_chiseled_stone_bricks", + "meggcistonebrickblock": "infested_chiseled_stone_bricks", + "trapchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "trapcirclestonebrickblock": "infested_chiseled_stone_bricks", + "trapcistonebrickblock": "infested_chiseled_stone_bricks", + "sfchiseledstonebrickblock": "infested_chiseled_stone_bricks", + "sfcirclestonebrickblock": "infested_chiseled_stone_bricks", + "sfcistonebrickblock": "infested_chiseled_stone_bricks", + "mechiseledstonebrickblock": "infested_chiseled_stone_bricks", + "mecirclestonebrickblock": "infested_chiseled_stone_bricks", + "mecistonebrickblock": "infested_chiseled_stone_bricks", + "silverfishchiseledstonebb": "infested_chiseled_stone_bricks", + "silverfishcirclestonebb": "infested_chiseled_stone_bricks", + "silverfishcistonebb": "infested_chiseled_stone_bricks", + "sfishchiseledstonebb": "infested_chiseled_stone_bricks", + "sfishcirclestonebb": "infested_chiseled_stone_bricks", + "sfishcistonebb": "infested_chiseled_stone_bricks", + "fishchiseledstonebb": "infested_chiseled_stone_bricks", + "fishcirclestonebb": "infested_chiseled_stone_bricks", + "fishcistonebb": "infested_chiseled_stone_bricks", + "infestedchiseledstonebb": "infested_chiseled_stone_bricks", + "infestedcirclestonebb": "infested_chiseled_stone_bricks", + "infestedcistonebb": "infested_chiseled_stone_bricks", + "monstereggchiseledstonebb": "infested_chiseled_stone_bricks", + "monstereggcirclestonebb": "infested_chiseled_stone_bricks", + "monstereggcistonebb": "infested_chiseled_stone_bricks", + "meggchiseledstonebb": "infested_chiseled_stone_bricks", + "meggcirclestonebb": "infested_chiseled_stone_bricks", + "meggcistonebb": "infested_chiseled_stone_bricks", + "trapchiseledstonebb": "infested_chiseled_stone_bricks", + "trapcirclestonebb": "infested_chiseled_stone_bricks", + "trapcistonebb": "infested_chiseled_stone_bricks", + "sfchiseledstonebb": "infested_chiseled_stone_bricks", + "sfcirclestonebb": "infested_chiseled_stone_bricks", + "sfcistonebb": "infested_chiseled_stone_bricks", + "mechiseledstonebb": "infested_chiseled_stone_bricks", + "mecirclestonebb": "infested_chiseled_stone_bricks", + "mecistonebb": "infested_chiseled_stone_bricks", + "silverfishchiseledsbrick": "infested_chiseled_stone_bricks", + "silverfishcirclesbrick": "infested_chiseled_stone_bricks", + "silverfishcisbrick": "infested_chiseled_stone_bricks", + "sfishchiseledsbrick": "infested_chiseled_stone_bricks", + "sfishcirclesbrick": "infested_chiseled_stone_bricks", + "sfishcisbrick": "infested_chiseled_stone_bricks", + "fishchiseledsbrick": "infested_chiseled_stone_bricks", + "fishcirclesbrick": "infested_chiseled_stone_bricks", + "fishcisbrick": "infested_chiseled_stone_bricks", + "infestedchiseledsbrick": "infested_chiseled_stone_bricks", + "infestedcirclesbrick": "infested_chiseled_stone_bricks", + "infestedcisbrick": "infested_chiseled_stone_bricks", + "monstereggchiseledsbrick": "infested_chiseled_stone_bricks", + "monstereggcirclesbrick": "infested_chiseled_stone_bricks", + "monstereggcisbrick": "infested_chiseled_stone_bricks", + "meggchiseledsbrick": "infested_chiseled_stone_bricks", + "meggcirclesbrick": "infested_chiseled_stone_bricks", + "meggcisbrick": "infested_chiseled_stone_bricks", + "trapchiseledsbrick": "infested_chiseled_stone_bricks", + "trapcirclesbrick": "infested_chiseled_stone_bricks", + "trapcisbrick": "infested_chiseled_stone_bricks", + "sfchiseledsbrick": "infested_chiseled_stone_bricks", + "sfcirclesbrick": "infested_chiseled_stone_bricks", + "sfcisbrick": "infested_chiseled_stone_bricks", + "mechiseledsbrick": "infested_chiseled_stone_bricks", + "mecirclesbrick": "infested_chiseled_stone_bricks", + "mecisbrick": "infested_chiseled_stone_bricks", + "silverfishchiseledsbricks": "infested_chiseled_stone_bricks", + "silverfishcirclesbricks": "infested_chiseled_stone_bricks", + "silverfishcisbricks": "infested_chiseled_stone_bricks", + "sfishchiseledsbricks": "infested_chiseled_stone_bricks", + "sfishcirclesbricks": "infested_chiseled_stone_bricks", + "sfishcisbricks": "infested_chiseled_stone_bricks", + "fishchiseledsbricks": "infested_chiseled_stone_bricks", + "fishcirclesbricks": "infested_chiseled_stone_bricks", + "fishcisbricks": "infested_chiseled_stone_bricks", + "infestedchiseledsbricks": "infested_chiseled_stone_bricks", + "infestedcirclesbricks": "infested_chiseled_stone_bricks", + "infestedcisbricks": "infested_chiseled_stone_bricks", + "monstereggchiseledsbricks": "infested_chiseled_stone_bricks", + "monstereggcirclesbricks": "infested_chiseled_stone_bricks", + "monstereggcisbricks": "infested_chiseled_stone_bricks", + "meggchiseledsbricks": "infested_chiseled_stone_bricks", + "meggcirclesbricks": "infested_chiseled_stone_bricks", + "meggcisbricks": "infested_chiseled_stone_bricks", + "trapchiseledsbricks": "infested_chiseled_stone_bricks", + "trapcirclesbricks": "infested_chiseled_stone_bricks", + "trapcisbricks": "infested_chiseled_stone_bricks", + "sfchiseledsbricks": "infested_chiseled_stone_bricks", + "sfcirclesbricks": "infested_chiseled_stone_bricks", + "sfcisbricks": "infested_chiseled_stone_bricks", + "mechiseledsbricks": "infested_chiseled_stone_bricks", + "mecirclesbricks": "infested_chiseled_stone_bricks", + "mecisbricks": "infested_chiseled_stone_bricks", + "silverfishchiseledsbrickblock": "infested_chiseled_stone_bricks", + "silverfishcirclesbrickblock": "infested_chiseled_stone_bricks", + "silverfishcisbrickblock": "infested_chiseled_stone_bricks", + "sfishchiseledsbrickblock": "infested_chiseled_stone_bricks", + "sfishcirclesbrickblock": "infested_chiseled_stone_bricks", + "sfishcisbrickblock": "infested_chiseled_stone_bricks", + "fishchiseledsbrickblock": "infested_chiseled_stone_bricks", + "fishcirclesbrickblock": "infested_chiseled_stone_bricks", + "fishcisbrickblock": "infested_chiseled_stone_bricks", + "infestedchiseledsbrickblock": "infested_chiseled_stone_bricks", + "infestedcirclesbrickblock": "infested_chiseled_stone_bricks", + "infestedcisbrickblock": "infested_chiseled_stone_bricks", + "monstereggchiseledsbrickblock": "infested_chiseled_stone_bricks", + "monstereggcirclesbrickblock": "infested_chiseled_stone_bricks", + "monstereggcisbrickblock": "infested_chiseled_stone_bricks", + "meggchiseledsbrickblock": "infested_chiseled_stone_bricks", + "meggcirclesbrickblock": "infested_chiseled_stone_bricks", + "meggcisbrickblock": "infested_chiseled_stone_bricks", + "trapchiseledsbrickblock": "infested_chiseled_stone_bricks", + "trapcirclesbrickblock": "infested_chiseled_stone_bricks", + "trapcisbrickblock": "infested_chiseled_stone_bricks", + "sfchiseledsbrickblock": "infested_chiseled_stone_bricks", + "sfcirclesbrickblock": "infested_chiseled_stone_bricks", + "sfcisbrickblock": "infested_chiseled_stone_bricks", + "mechiseledsbrickblock": "infested_chiseled_stone_bricks", + "mecirclesbrickblock": "infested_chiseled_stone_bricks", + "mecisbrickblock": "infested_chiseled_stone_bricks", + "silverfishchiseledstonebricks": "infested_chiseled_stone_bricks", + "silverfishcirclestonebricks": "infested_chiseled_stone_bricks", + "silverfishcistonebricks": "infested_chiseled_stone_bricks", + "sfishchiseledstonebricks": "infested_chiseled_stone_bricks", + "sfishcirclestonebricks": "infested_chiseled_stone_bricks", + "sfishcistonebricks": "infested_chiseled_stone_bricks", + "fishchiseledstonebricks": "infested_chiseled_stone_bricks", + "fishcirclestonebricks": "infested_chiseled_stone_bricks", + "fishcistonebricks": "infested_chiseled_stone_bricks", + "infestedcirclestonebricks": "infested_chiseled_stone_bricks", + "infestedcistonebricks": "infested_chiseled_stone_bricks", + "monstereggchiseledstonebricks": "infested_chiseled_stone_bricks", + "monstereggcirclestonebricks": "infested_chiseled_stone_bricks", + "monstereggcistonebricks": "infested_chiseled_stone_bricks", + "meggchiseledstonebricks": "infested_chiseled_stone_bricks", + "meggcirclestonebricks": "infested_chiseled_stone_bricks", + "meggcistonebricks": "infested_chiseled_stone_bricks", + "trapchiseledstonebricks": "infested_chiseled_stone_bricks", + "trapcirclestonebricks": "infested_chiseled_stone_bricks", + "trapcistonebricks": "infested_chiseled_stone_bricks", + "sfchiseledstonebricks": "infested_chiseled_stone_bricks", + "sfcirclestonebricks": "infested_chiseled_stone_bricks", + "sfcistonebricks": "infested_chiseled_stone_bricks", + "mechiseledstonebricks": "infested_chiseled_stone_bricks", + "mecirclestonebricks": "infested_chiseled_stone_bricks", + "mecistonebricks": "infested_chiseled_stone_bricks", + "silverfishchiseledsbb": "infested_chiseled_stone_bricks", + "silverfishcirclesbb": "infested_chiseled_stone_bricks", + "silverfishcisbb": "infested_chiseled_stone_bricks", + "sfishchiseledsbb": "infested_chiseled_stone_bricks", + "sfishcirclesbb": "infested_chiseled_stone_bricks", + "sfishcisbb": "infested_chiseled_stone_bricks", + "fishchiseledsbb": "infested_chiseled_stone_bricks", + "fishcirclesbb": "infested_chiseled_stone_bricks", + "fishcisbb": "infested_chiseled_stone_bricks", + "infestedchiseledsbb": "infested_chiseled_stone_bricks", + "infestedcirclesbb": "infested_chiseled_stone_bricks", + "infestedcisbb": "infested_chiseled_stone_bricks", + "monstereggchiseledsbb": "infested_chiseled_stone_bricks", + "monstereggcirclesbb": "infested_chiseled_stone_bricks", + "monstereggcisbb": "infested_chiseled_stone_bricks", + "meggchiseledsbb": "infested_chiseled_stone_bricks", + "meggcirclesbb": "infested_chiseled_stone_bricks", + "meggcisbb": "infested_chiseled_stone_bricks", + "trapchiseledsbb": "infested_chiseled_stone_bricks", + "trapcirclesbb": "infested_chiseled_stone_bricks", + "trapcisbb": "infested_chiseled_stone_bricks", + "sfchiseledsbb": "infested_chiseled_stone_bricks", + "sfcirclesbb": "infested_chiseled_stone_bricks", + "sfcisbb": "infested_chiseled_stone_bricks", + "mechiseledsbb": "infested_chiseled_stone_bricks", + "mecirclesbb": "infested_chiseled_stone_bricks", + "mecisbb": "infested_chiseled_stone_bricks", + "infested_cobblestone": { + "material": "INFESTED_COBBLESTONE" + }, + "infestedcobblestone": "infested_cobblestone", + "silverfishcobblestone": "infested_cobblestone", + "sfishcobblestone": "infested_cobblestone", + "fishcobblestone": "infested_cobblestone", + "monstereggcobblestone": "infested_cobblestone", + "meggcobblestone": "infested_cobblestone", + "trapcobblestone": "infested_cobblestone", + "sfcobblestone": "infested_cobblestone", + "mecobblestone": "infested_cobblestone", + "silverfishcstone": "infested_cobblestone", + "sfishcstone": "infested_cobblestone", + "fishcstone": "infested_cobblestone", + "infestedcstone": "infested_cobblestone", + "monstereggcstone": "infested_cobblestone", + "meggcstone": "infested_cobblestone", + "trapcstone": "infested_cobblestone", + "sfcstone": "infested_cobblestone", + "mecstone": "infested_cobblestone", + "silverfishcobble": "infested_cobblestone", + "sfishcobble": "infested_cobblestone", + "fishcobble": "infested_cobblestone", + "infestedcobble": "infested_cobblestone", + "monstereggcobble": "infested_cobblestone", + "meggcobble": "infested_cobblestone", + "trapcobble": "infested_cobblestone", + "sfcobble": "infested_cobblestone", + "mecobble": "infested_cobblestone", + "infested_cracked_stone_bricks": { + "material": "INFESTED_CRACKED_STONE_BRICKS" + }, + "infestedcrackedstonebricks": "infested_cracked_stone_bricks", + "silverfishcrackedstonebrick": "infested_cracked_stone_bricks", + "silverfishcrackstonebrick": "infested_cracked_stone_bricks", + "silverfishcrstonebrick": "infested_cracked_stone_bricks", + "silverfishcstonebrick": "infested_cracked_stone_bricks", + "sfishcrackedstonebrick": "infested_cracked_stone_bricks", + "sfishcrackstonebrick": "infested_cracked_stone_bricks", + "sfishcrstonebrick": "infested_cracked_stone_bricks", + "sfishcstonebrick": "infested_cracked_stone_bricks", + "fishcrackedstonebrick": "infested_cracked_stone_bricks", + "fishcrackstonebrick": "infested_cracked_stone_bricks", + "fishcrstonebrick": "infested_cracked_stone_bricks", + "fishcstonebrick": "infested_cracked_stone_bricks", + "infestedcrackedstonebrick": "infested_cracked_stone_bricks", + "infestedcrackstonebrick": "infested_cracked_stone_bricks", + "infestedcrstonebrick": "infested_cracked_stone_bricks", + "infestedcstonebrick": "infested_cracked_stone_bricks", + "monstereggcrackedstonebrick": "infested_cracked_stone_bricks", + "monstereggcrackstonebrick": "infested_cracked_stone_bricks", + "monstereggcrstonebrick": "infested_cracked_stone_bricks", + "monstereggcstonebrick": "infested_cracked_stone_bricks", + "meggcrackedstonebrick": "infested_cracked_stone_bricks", + "meggcrackstonebrick": "infested_cracked_stone_bricks", + "meggcrstonebrick": "infested_cracked_stone_bricks", + "meggcstonebrick": "infested_cracked_stone_bricks", + "trapcrackedstonebrick": "infested_cracked_stone_bricks", + "trapcrackstonebrick": "infested_cracked_stone_bricks", + "trapcrstonebrick": "infested_cracked_stone_bricks", + "trapcstonebrick": "infested_cracked_stone_bricks", + "sfcrackedstonebrick": "infested_cracked_stone_bricks", + "sfcrackstonebrick": "infested_cracked_stone_bricks", + "sfcrstonebrick": "infested_cracked_stone_bricks", + "sfcstonebrick": "infested_cracked_stone_bricks", + "mecrackedstonebrick": "infested_cracked_stone_bricks", + "mecrackstonebrick": "infested_cracked_stone_bricks", + "mecrstonebrick": "infested_cracked_stone_bricks", + "mecstonebrick": "infested_cracked_stone_bricks", + "silverfishcrackedstonebrickblock": "infested_cracked_stone_bricks", + "silverfishcrackstonebrickblock": "infested_cracked_stone_bricks", + "silverfishcrstonebrickblock": "infested_cracked_stone_bricks", + "silverfishcstonebrickblock": "infested_cracked_stone_bricks", + "sfishcrackedstonebrickblock": "infested_cracked_stone_bricks", + "sfishcrackstonebrickblock": "infested_cracked_stone_bricks", + "sfishcrstonebrickblock": "infested_cracked_stone_bricks", + "sfishcstonebrickblock": "infested_cracked_stone_bricks", + "fishcrackedstonebrickblock": "infested_cracked_stone_bricks", + "fishcrackstonebrickblock": "infested_cracked_stone_bricks", + "fishcrstonebrickblock": "infested_cracked_stone_bricks", + "fishcstonebrickblock": "infested_cracked_stone_bricks", + "infestedcrackedstonebrickblock": "infested_cracked_stone_bricks", + "infestedcrackstonebrickblock": "infested_cracked_stone_bricks", + "infestedcrstonebrickblock": "infested_cracked_stone_bricks", + "infestedcstonebrickblock": "infested_cracked_stone_bricks", + "monstereggcrackedstonebrickblock": "infested_cracked_stone_bricks", + "monstereggcrackstonebrickblock": "infested_cracked_stone_bricks", + "monstereggcrstonebrickblock": "infested_cracked_stone_bricks", + "monstereggcstonebrickblock": "infested_cracked_stone_bricks", + "meggcrackedstonebrickblock": "infested_cracked_stone_bricks", + "meggcrackstonebrickblock": "infested_cracked_stone_bricks", + "meggcrstonebrickblock": "infested_cracked_stone_bricks", + "meggcstonebrickblock": "infested_cracked_stone_bricks", + "trapcrackedstonebrickblock": "infested_cracked_stone_bricks", + "trapcrackstonebrickblock": "infested_cracked_stone_bricks", + "trapcrstonebrickblock": "infested_cracked_stone_bricks", + "trapcstonebrickblock": "infested_cracked_stone_bricks", + "sfcrackedstonebrickblock": "infested_cracked_stone_bricks", + "sfcrackstonebrickblock": "infested_cracked_stone_bricks", + "sfcrstonebrickblock": "infested_cracked_stone_bricks", + "sfcstonebrickblock": "infested_cracked_stone_bricks", + "mecrackedstonebrickblock": "infested_cracked_stone_bricks", + "mecrackstonebrickblock": "infested_cracked_stone_bricks", + "mecrstonebrickblock": "infested_cracked_stone_bricks", + "mecstonebrickblock": "infested_cracked_stone_bricks", + "silverfishcrackedstonebb": "infested_cracked_stone_bricks", + "silverfishcrackstonebb": "infested_cracked_stone_bricks", + "silverfishcrstonebb": "infested_cracked_stone_bricks", + "silverfishcstonebb": "infested_cracked_stone_bricks", + "sfishcrackedstonebb": "infested_cracked_stone_bricks", + "sfishcrackstonebb": "infested_cracked_stone_bricks", + "sfishcrstonebb": "infested_cracked_stone_bricks", + "sfishcstonebb": "infested_cracked_stone_bricks", + "fishcrackedstonebb": "infested_cracked_stone_bricks", + "fishcrackstonebb": "infested_cracked_stone_bricks", + "fishcrstonebb": "infested_cracked_stone_bricks", + "fishcstonebb": "infested_cracked_stone_bricks", + "infestedcrackedstonebb": "infested_cracked_stone_bricks", + "infestedcrackstonebb": "infested_cracked_stone_bricks", + "infestedcrstonebb": "infested_cracked_stone_bricks", + "infestedcstonebb": "infested_cracked_stone_bricks", + "monstereggcrackedstonebb": "infested_cracked_stone_bricks", + "monstereggcrackstonebb": "infested_cracked_stone_bricks", + "monstereggcrstonebb": "infested_cracked_stone_bricks", + "monstereggcstonebb": "infested_cracked_stone_bricks", + "meggcrackedstonebb": "infested_cracked_stone_bricks", + "meggcrackstonebb": "infested_cracked_stone_bricks", + "meggcrstonebb": "infested_cracked_stone_bricks", + "meggcstonebb": "infested_cracked_stone_bricks", + "trapcrackedstonebb": "infested_cracked_stone_bricks", + "trapcrackstonebb": "infested_cracked_stone_bricks", + "trapcrstonebb": "infested_cracked_stone_bricks", + "trapcstonebb": "infested_cracked_stone_bricks", + "sfcrackedstonebb": "infested_cracked_stone_bricks", + "sfcrackstonebb": "infested_cracked_stone_bricks", + "sfcrstonebb": "infested_cracked_stone_bricks", + "sfcstonebb": "infested_cracked_stone_bricks", + "mecrackedstonebb": "infested_cracked_stone_bricks", + "mecrackstonebb": "infested_cracked_stone_bricks", + "mecrstonebb": "infested_cracked_stone_bricks", + "mecstonebb": "infested_cracked_stone_bricks", + "silverfishcrackedsbrick": "infested_cracked_stone_bricks", + "silverfishcracksbrick": "infested_cracked_stone_bricks", + "silverfishcrsbrick": "infested_cracked_stone_bricks", + "silverfishcsbrick": "infested_cracked_stone_bricks", + "sfishcrackedsbrick": "infested_cracked_stone_bricks", + "sfishcracksbrick": "infested_cracked_stone_bricks", + "sfishcrsbrick": "infested_cracked_stone_bricks", + "sfishcsbrick": "infested_cracked_stone_bricks", + "fishcrackedsbrick": "infested_cracked_stone_bricks", + "fishcracksbrick": "infested_cracked_stone_bricks", + "fishcrsbrick": "infested_cracked_stone_bricks", + "fishcsbrick": "infested_cracked_stone_bricks", + "infestedcrackedsbrick": "infested_cracked_stone_bricks", + "infestedcracksbrick": "infested_cracked_stone_bricks", + "infestedcrsbrick": "infested_cracked_stone_bricks", + "infestedcsbrick": "infested_cracked_stone_bricks", + "monstereggcrackedsbrick": "infested_cracked_stone_bricks", + "monstereggcracksbrick": "infested_cracked_stone_bricks", + "monstereggcrsbrick": "infested_cracked_stone_bricks", + "monstereggcsbrick": "infested_cracked_stone_bricks", + "meggcrackedsbrick": "infested_cracked_stone_bricks", + "meggcracksbrick": "infested_cracked_stone_bricks", + "meggcrsbrick": "infested_cracked_stone_bricks", + "meggcsbrick": "infested_cracked_stone_bricks", + "trapcrackedsbrick": "infested_cracked_stone_bricks", + "trapcracksbrick": "infested_cracked_stone_bricks", + "trapcrsbrick": "infested_cracked_stone_bricks", + "trapcsbrick": "infested_cracked_stone_bricks", + "sfcrackedsbrick": "infested_cracked_stone_bricks", + "sfcracksbrick": "infested_cracked_stone_bricks", + "sfcrsbrick": "infested_cracked_stone_bricks", + "sfcsbrick": "infested_cracked_stone_bricks", + "mecrackedsbrick": "infested_cracked_stone_bricks", + "mecracksbrick": "infested_cracked_stone_bricks", + "mecrsbrick": "infested_cracked_stone_bricks", + "mecsbrick": "infested_cracked_stone_bricks", + "silverfishcrackedsbricks": "infested_cracked_stone_bricks", + "silverfishcracksbricks": "infested_cracked_stone_bricks", + "silverfishcrsbricks": "infested_cracked_stone_bricks", + "silverfishcsbricks": "infested_cracked_stone_bricks", + "sfishcrackedsbricks": "infested_cracked_stone_bricks", + "sfishcracksbricks": "infested_cracked_stone_bricks", + "sfishcrsbricks": "infested_cracked_stone_bricks", + "sfishcsbricks": "infested_cracked_stone_bricks", + "fishcrackedsbricks": "infested_cracked_stone_bricks", + "fishcracksbricks": "infested_cracked_stone_bricks", + "fishcrsbricks": "infested_cracked_stone_bricks", + "fishcsbricks": "infested_cracked_stone_bricks", + "infestedcrackedsbricks": "infested_cracked_stone_bricks", + "infestedcracksbricks": "infested_cracked_stone_bricks", + "infestedcrsbricks": "infested_cracked_stone_bricks", + "infestedcsbricks": "infested_cracked_stone_bricks", + "monstereggcrackedsbricks": "infested_cracked_stone_bricks", + "monstereggcracksbricks": "infested_cracked_stone_bricks", + "monstereggcrsbricks": "infested_cracked_stone_bricks", + "monstereggcsbricks": "infested_cracked_stone_bricks", + "meggcrackedsbricks": "infested_cracked_stone_bricks", + "meggcracksbricks": "infested_cracked_stone_bricks", + "meggcrsbricks": "infested_cracked_stone_bricks", + "meggcsbricks": "infested_cracked_stone_bricks", + "trapcrackedsbricks": "infested_cracked_stone_bricks", + "trapcracksbricks": "infested_cracked_stone_bricks", + "trapcrsbricks": "infested_cracked_stone_bricks", + "trapcsbricks": "infested_cracked_stone_bricks", + "sfcrackedsbricks": "infested_cracked_stone_bricks", + "sfcracksbricks": "infested_cracked_stone_bricks", + "sfcrsbricks": "infested_cracked_stone_bricks", + "sfcsbricks": "infested_cracked_stone_bricks", + "mecrackedsbricks": "infested_cracked_stone_bricks", + "mecracksbricks": "infested_cracked_stone_bricks", + "mecrsbricks": "infested_cracked_stone_bricks", + "mecsbricks": "infested_cracked_stone_bricks", + "silverfishcrackedsbrickblock": "infested_cracked_stone_bricks", + "silverfishcracksbrickblock": "infested_cracked_stone_bricks", + "silverfishcrsbrickblock": "infested_cracked_stone_bricks", + "silverfishcsbrickblock": "infested_cracked_stone_bricks", + "sfishcrackedsbrickblock": "infested_cracked_stone_bricks", + "sfishcracksbrickblock": "infested_cracked_stone_bricks", + "sfishcrsbrickblock": "infested_cracked_stone_bricks", + "sfishcsbrickblock": "infested_cracked_stone_bricks", + "fishcrackedsbrickblock": "infested_cracked_stone_bricks", + "fishcracksbrickblock": "infested_cracked_stone_bricks", + "fishcrsbrickblock": "infested_cracked_stone_bricks", + "fishcsbrickblock": "infested_cracked_stone_bricks", + "infestedcrackedsbrickblock": "infested_cracked_stone_bricks", + "infestedcracksbrickblock": "infested_cracked_stone_bricks", + "infestedcrsbrickblock": "infested_cracked_stone_bricks", + "infestedcsbrickblock": "infested_cracked_stone_bricks", + "monstereggcrackedsbrickblock": "infested_cracked_stone_bricks", + "monstereggcracksbrickblock": "infested_cracked_stone_bricks", + "monstereggcrsbrickblock": "infested_cracked_stone_bricks", + "monstereggcsbrickblock": "infested_cracked_stone_bricks", + "meggcrackedsbrickblock": "infested_cracked_stone_bricks", + "meggcracksbrickblock": "infested_cracked_stone_bricks", + "meggcrsbrickblock": "infested_cracked_stone_bricks", + "meggcsbrickblock": "infested_cracked_stone_bricks", + "trapcrackedsbrickblock": "infested_cracked_stone_bricks", + "trapcracksbrickblock": "infested_cracked_stone_bricks", + "trapcrsbrickblock": "infested_cracked_stone_bricks", + "trapcsbrickblock": "infested_cracked_stone_bricks", + "sfcrackedsbrickblock": "infested_cracked_stone_bricks", + "sfcracksbrickblock": "infested_cracked_stone_bricks", + "sfcrsbrickblock": "infested_cracked_stone_bricks", + "sfcsbrickblock": "infested_cracked_stone_bricks", + "mecrackedsbrickblock": "infested_cracked_stone_bricks", + "mecracksbrickblock": "infested_cracked_stone_bricks", + "mecrsbrickblock": "infested_cracked_stone_bricks", + "mecsbrickblock": "infested_cracked_stone_bricks", + "silverfishcrackedstonebricks": "infested_cracked_stone_bricks", + "silverfishcrackstonebricks": "infested_cracked_stone_bricks", + "silverfishcrstonebricks": "infested_cracked_stone_bricks", + "silverfishcstonebricks": "infested_cracked_stone_bricks", + "sfishcrackedstonebricks": "infested_cracked_stone_bricks", + "sfishcrackstonebricks": "infested_cracked_stone_bricks", + "sfishcrstonebricks": "infested_cracked_stone_bricks", + "sfishcstonebricks": "infested_cracked_stone_bricks", + "fishcrackedstonebricks": "infested_cracked_stone_bricks", + "fishcrackstonebricks": "infested_cracked_stone_bricks", + "fishcrstonebricks": "infested_cracked_stone_bricks", + "fishcstonebricks": "infested_cracked_stone_bricks", + "infestedcrackstonebricks": "infested_cracked_stone_bricks", + "infestedcrstonebricks": "infested_cracked_stone_bricks", + "infestedcstonebricks": "infested_cracked_stone_bricks", + "monstereggcrackedstonebricks": "infested_cracked_stone_bricks", + "monstereggcrackstonebricks": "infested_cracked_stone_bricks", + "monstereggcrstonebricks": "infested_cracked_stone_bricks", + "monstereggcstonebricks": "infested_cracked_stone_bricks", + "meggcrackedstonebricks": "infested_cracked_stone_bricks", + "meggcrackstonebricks": "infested_cracked_stone_bricks", + "meggcrstonebricks": "infested_cracked_stone_bricks", + "meggcstonebricks": "infested_cracked_stone_bricks", + "trapcrackedstonebricks": "infested_cracked_stone_bricks", + "trapcrackstonebricks": "infested_cracked_stone_bricks", + "trapcrstonebricks": "infested_cracked_stone_bricks", + "trapcstonebricks": "infested_cracked_stone_bricks", + "sfcrackedstonebricks": "infested_cracked_stone_bricks", + "sfcrackstonebricks": "infested_cracked_stone_bricks", + "sfcrstonebricks": "infested_cracked_stone_bricks", + "sfcstonebricks": "infested_cracked_stone_bricks", + "mecrackedstonebricks": "infested_cracked_stone_bricks", + "mecrackstonebricks": "infested_cracked_stone_bricks", + "mecrstonebricks": "infested_cracked_stone_bricks", + "mecstonebricks": "infested_cracked_stone_bricks", + "silverfishcrackedsbb": "infested_cracked_stone_bricks", + "silverfishcracksbb": "infested_cracked_stone_bricks", + "silverfishcrsbb": "infested_cracked_stone_bricks", + "silverfishcsbb": "infested_cracked_stone_bricks", + "sfishcrackedsbb": "infested_cracked_stone_bricks", + "sfishcracksbb": "infested_cracked_stone_bricks", + "sfishcrsbb": "infested_cracked_stone_bricks", + "sfishcsbb": "infested_cracked_stone_bricks", + "fishcrackedsbb": "infested_cracked_stone_bricks", + "fishcracksbb": "infested_cracked_stone_bricks", + "fishcrsbb": "infested_cracked_stone_bricks", + "fishcsbb": "infested_cracked_stone_bricks", + "infestedcrackedsbb": "infested_cracked_stone_bricks", + "infestedcracksbb": "infested_cracked_stone_bricks", + "infestedcrsbb": "infested_cracked_stone_bricks", + "infestedcsbb": "infested_cracked_stone_bricks", + "monstereggcrackedsbb": "infested_cracked_stone_bricks", + "monstereggcracksbb": "infested_cracked_stone_bricks", + "monstereggcrsbb": "infested_cracked_stone_bricks", + "monstereggcsbb": "infested_cracked_stone_bricks", + "meggcrackedsbb": "infested_cracked_stone_bricks", + "meggcracksbb": "infested_cracked_stone_bricks", + "meggcrsbb": "infested_cracked_stone_bricks", + "meggcsbb": "infested_cracked_stone_bricks", + "trapcrackedsbb": "infested_cracked_stone_bricks", + "trapcracksbb": "infested_cracked_stone_bricks", + "trapcrsbb": "infested_cracked_stone_bricks", + "trapcsbb": "infested_cracked_stone_bricks", + "sfcrackedsbb": "infested_cracked_stone_bricks", + "sfcracksbb": "infested_cracked_stone_bricks", + "sfcrsbb": "infested_cracked_stone_bricks", + "sfcsbb": "infested_cracked_stone_bricks", + "mecrackedsbb": "infested_cracked_stone_bricks", + "mecracksbb": "infested_cracked_stone_bricks", + "mecrsbb": "infested_cracked_stone_bricks", + "mecsbb": "infested_cracked_stone_bricks", + "infested_mossy_stone_bricks": { + "material": "INFESTED_MOSSY_STONE_BRICKS" + }, + "infestedmossystonebricks": "infested_mossy_stone_bricks", + "silverfishmossystonebrick": "infested_mossy_stone_bricks", + "silverfishmossstonebrick": "infested_mossy_stone_bricks", + "silverfishmstonebrick": "infested_mossy_stone_bricks", + "sfishmossystonebrick": "infested_mossy_stone_bricks", + "sfishmossstonebrick": "infested_mossy_stone_bricks", + "sfishmstonebrick": "infested_mossy_stone_bricks", + "fishmossystonebrick": "infested_mossy_stone_bricks", + "fishmossstonebrick": "infested_mossy_stone_bricks", + "fishmstonebrick": "infested_mossy_stone_bricks", + "infestedmossystonebrick": "infested_mossy_stone_bricks", + "infestedmossstonebrick": "infested_mossy_stone_bricks", + "infestedmstonebrick": "infested_mossy_stone_bricks", + "monstereggmossystonebrick": "infested_mossy_stone_bricks", + "monstereggmossstonebrick": "infested_mossy_stone_bricks", + "monstereggmstonebrick": "infested_mossy_stone_bricks", + "meggmossystonebrick": "infested_mossy_stone_bricks", + "meggmossstonebrick": "infested_mossy_stone_bricks", + "meggmstonebrick": "infested_mossy_stone_bricks", + "trapmossystonebrick": "infested_mossy_stone_bricks", + "trapmossstonebrick": "infested_mossy_stone_bricks", + "trapmstonebrick": "infested_mossy_stone_bricks", + "sfmossystonebrick": "infested_mossy_stone_bricks", + "sfmossstonebrick": "infested_mossy_stone_bricks", + "sfmstonebrick": "infested_mossy_stone_bricks", + "memossystonebrick": "infested_mossy_stone_bricks", + "memossstonebrick": "infested_mossy_stone_bricks", + "memstonebrick": "infested_mossy_stone_bricks", + "silverfishmossystonebrickblock": "infested_mossy_stone_bricks", + "silverfishmossstonebrickblock": "infested_mossy_stone_bricks", + "silverfishmstonebrickblock": "infested_mossy_stone_bricks", + "sfishmossystonebrickblock": "infested_mossy_stone_bricks", + "sfishmossstonebrickblock": "infested_mossy_stone_bricks", + "sfishmstonebrickblock": "infested_mossy_stone_bricks", + "fishmossystonebrickblock": "infested_mossy_stone_bricks", + "fishmossstonebrickblock": "infested_mossy_stone_bricks", + "fishmstonebrickblock": "infested_mossy_stone_bricks", + "infestedmossystonebrickblock": "infested_mossy_stone_bricks", + "infestedmossstonebrickblock": "infested_mossy_stone_bricks", + "infestedmstonebrickblock": "infested_mossy_stone_bricks", + "monstereggmossystonebrickblock": "infested_mossy_stone_bricks", + "monstereggmossstonebrickblock": "infested_mossy_stone_bricks", + "monstereggmstonebrickblock": "infested_mossy_stone_bricks", + "meggmossystonebrickblock": "infested_mossy_stone_bricks", + "meggmossstonebrickblock": "infested_mossy_stone_bricks", + "meggmstonebrickblock": "infested_mossy_stone_bricks", + "trapmossystonebrickblock": "infested_mossy_stone_bricks", + "trapmossstonebrickblock": "infested_mossy_stone_bricks", + "trapmstonebrickblock": "infested_mossy_stone_bricks", + "sfmossystonebrickblock": "infested_mossy_stone_bricks", + "sfmossstonebrickblock": "infested_mossy_stone_bricks", + "sfmstonebrickblock": "infested_mossy_stone_bricks", + "memossystonebrickblock": "infested_mossy_stone_bricks", + "memossstonebrickblock": "infested_mossy_stone_bricks", + "memstonebrickblock": "infested_mossy_stone_bricks", + "silverfishmossystonebb": "infested_mossy_stone_bricks", + "silverfishmossstonebb": "infested_mossy_stone_bricks", + "silverfishmstonebb": "infested_mossy_stone_bricks", + "sfishmossystonebb": "infested_mossy_stone_bricks", + "sfishmossstonebb": "infested_mossy_stone_bricks", + "sfishmstonebb": "infested_mossy_stone_bricks", + "fishmossystonebb": "infested_mossy_stone_bricks", + "fishmossstonebb": "infested_mossy_stone_bricks", + "fishmstonebb": "infested_mossy_stone_bricks", + "infestedmossystonebb": "infested_mossy_stone_bricks", + "infestedmossstonebb": "infested_mossy_stone_bricks", + "infestedmstonebb": "infested_mossy_stone_bricks", + "monstereggmossystonebb": "infested_mossy_stone_bricks", + "monstereggmossstonebb": "infested_mossy_stone_bricks", + "monstereggmstonebb": "infested_mossy_stone_bricks", + "meggmossystonebb": "infested_mossy_stone_bricks", + "meggmossstonebb": "infested_mossy_stone_bricks", + "meggmstonebb": "infested_mossy_stone_bricks", + "trapmossystonebb": "infested_mossy_stone_bricks", + "trapmossstonebb": "infested_mossy_stone_bricks", + "trapmstonebb": "infested_mossy_stone_bricks", + "sfmossystonebb": "infested_mossy_stone_bricks", + "sfmossstonebb": "infested_mossy_stone_bricks", + "sfmstonebb": "infested_mossy_stone_bricks", + "memossystonebb": "infested_mossy_stone_bricks", + "memossstonebb": "infested_mossy_stone_bricks", + "memstonebb": "infested_mossy_stone_bricks", + "silverfishmossysbrick": "infested_mossy_stone_bricks", + "silverfishmosssbrick": "infested_mossy_stone_bricks", + "silverfishmsbrick": "infested_mossy_stone_bricks", + "sfishmossysbrick": "infested_mossy_stone_bricks", + "sfishmosssbrick": "infested_mossy_stone_bricks", + "sfishmsbrick": "infested_mossy_stone_bricks", + "fishmossysbrick": "infested_mossy_stone_bricks", + "fishmosssbrick": "infested_mossy_stone_bricks", + "fishmsbrick": "infested_mossy_stone_bricks", + "infestedmossysbrick": "infested_mossy_stone_bricks", + "infestedmosssbrick": "infested_mossy_stone_bricks", + "infestedmsbrick": "infested_mossy_stone_bricks", + "monstereggmossysbrick": "infested_mossy_stone_bricks", + "monstereggmosssbrick": "infested_mossy_stone_bricks", + "monstereggmsbrick": "infested_mossy_stone_bricks", + "meggmossysbrick": "infested_mossy_stone_bricks", + "meggmosssbrick": "infested_mossy_stone_bricks", + "meggmsbrick": "infested_mossy_stone_bricks", + "trapmossysbrick": "infested_mossy_stone_bricks", + "trapmosssbrick": "infested_mossy_stone_bricks", + "trapmsbrick": "infested_mossy_stone_bricks", + "sfmossysbrick": "infested_mossy_stone_bricks", + "sfmosssbrick": "infested_mossy_stone_bricks", + "sfmsbrick": "infested_mossy_stone_bricks", + "memossysbrick": "infested_mossy_stone_bricks", + "memosssbrick": "infested_mossy_stone_bricks", + "memsbrick": "infested_mossy_stone_bricks", + "silverfishmossysbricks": "infested_mossy_stone_bricks", + "silverfishmosssbricks": "infested_mossy_stone_bricks", + "silverfishmsbricks": "infested_mossy_stone_bricks", + "sfishmossysbricks": "infested_mossy_stone_bricks", + "sfishmosssbricks": "infested_mossy_stone_bricks", + "sfishmsbricks": "infested_mossy_stone_bricks", + "fishmossysbricks": "infested_mossy_stone_bricks", + "fishmosssbricks": "infested_mossy_stone_bricks", + "fishmsbricks": "infested_mossy_stone_bricks", + "infestedmossysbricks": "infested_mossy_stone_bricks", + "infestedmosssbricks": "infested_mossy_stone_bricks", + "infestedmsbricks": "infested_mossy_stone_bricks", + "monstereggmossysbricks": "infested_mossy_stone_bricks", + "monstereggmosssbricks": "infested_mossy_stone_bricks", + "monstereggmsbricks": "infested_mossy_stone_bricks", + "meggmossysbricks": "infested_mossy_stone_bricks", + "meggmosssbricks": "infested_mossy_stone_bricks", + "meggmsbricks": "infested_mossy_stone_bricks", + "trapmossysbricks": "infested_mossy_stone_bricks", + "trapmosssbricks": "infested_mossy_stone_bricks", + "trapmsbricks": "infested_mossy_stone_bricks", + "sfmossysbricks": "infested_mossy_stone_bricks", + "sfmosssbricks": "infested_mossy_stone_bricks", + "sfmsbricks": "infested_mossy_stone_bricks", + "memossysbricks": "infested_mossy_stone_bricks", + "memosssbricks": "infested_mossy_stone_bricks", + "memsbricks": "infested_mossy_stone_bricks", + "silverfishmossysbrickblock": "infested_mossy_stone_bricks", + "silverfishmosssbrickblock": "infested_mossy_stone_bricks", + "silverfishmsbrickblock": "infested_mossy_stone_bricks", + "sfishmossysbrickblock": "infested_mossy_stone_bricks", + "sfishmosssbrickblock": "infested_mossy_stone_bricks", + "sfishmsbrickblock": "infested_mossy_stone_bricks", + "fishmossysbrickblock": "infested_mossy_stone_bricks", + "fishmosssbrickblock": "infested_mossy_stone_bricks", + "fishmsbrickblock": "infested_mossy_stone_bricks", + "infestedmossysbrickblock": "infested_mossy_stone_bricks", + "infestedmosssbrickblock": "infested_mossy_stone_bricks", + "infestedmsbrickblock": "infested_mossy_stone_bricks", + "monstereggmossysbrickblock": "infested_mossy_stone_bricks", + "monstereggmosssbrickblock": "infested_mossy_stone_bricks", + "monstereggmsbrickblock": "infested_mossy_stone_bricks", + "meggmossysbrickblock": "infested_mossy_stone_bricks", + "meggmosssbrickblock": "infested_mossy_stone_bricks", + "meggmsbrickblock": "infested_mossy_stone_bricks", + "trapmossysbrickblock": "infested_mossy_stone_bricks", + "trapmosssbrickblock": "infested_mossy_stone_bricks", + "trapmsbrickblock": "infested_mossy_stone_bricks", + "sfmossysbrickblock": "infested_mossy_stone_bricks", + "sfmosssbrickblock": "infested_mossy_stone_bricks", + "sfmsbrickblock": "infested_mossy_stone_bricks", + "memossysbrickblock": "infested_mossy_stone_bricks", + "memosssbrickblock": "infested_mossy_stone_bricks", + "memsbrickblock": "infested_mossy_stone_bricks", + "silverfishmossystonebricks": "infested_mossy_stone_bricks", + "silverfishmossstonebricks": "infested_mossy_stone_bricks", + "silverfishmstonebricks": "infested_mossy_stone_bricks", + "sfishmossystonebricks": "infested_mossy_stone_bricks", + "sfishmossstonebricks": "infested_mossy_stone_bricks", + "sfishmstonebricks": "infested_mossy_stone_bricks", + "fishmossystonebricks": "infested_mossy_stone_bricks", + "fishmossstonebricks": "infested_mossy_stone_bricks", + "fishmstonebricks": "infested_mossy_stone_bricks", + "infestedmossstonebricks": "infested_mossy_stone_bricks", + "infestedmstonebricks": "infested_mossy_stone_bricks", + "monstereggmossystonebricks": "infested_mossy_stone_bricks", + "monstereggmossstonebricks": "infested_mossy_stone_bricks", + "monstereggmstonebricks": "infested_mossy_stone_bricks", + "meggmossystonebricks": "infested_mossy_stone_bricks", + "meggmossstonebricks": "infested_mossy_stone_bricks", + "meggmstonebricks": "infested_mossy_stone_bricks", + "trapmossystonebricks": "infested_mossy_stone_bricks", + "trapmossstonebricks": "infested_mossy_stone_bricks", + "trapmstonebricks": "infested_mossy_stone_bricks", + "sfmossystonebricks": "infested_mossy_stone_bricks", + "sfmossstonebricks": "infested_mossy_stone_bricks", + "sfmstonebricks": "infested_mossy_stone_bricks", + "memossystonebricks": "infested_mossy_stone_bricks", + "memossstonebricks": "infested_mossy_stone_bricks", + "memstonebricks": "infested_mossy_stone_bricks", + "silverfishmossysbb": "infested_mossy_stone_bricks", + "silverfishmosssbb": "infested_mossy_stone_bricks", + "silverfishmsbb": "infested_mossy_stone_bricks", + "sfishmossysbb": "infested_mossy_stone_bricks", + "sfishmosssbb": "infested_mossy_stone_bricks", + "sfishmsbb": "infested_mossy_stone_bricks", + "fishmossysbb": "infested_mossy_stone_bricks", + "fishmosssbb": "infested_mossy_stone_bricks", + "fishmsbb": "infested_mossy_stone_bricks", + "infestedmossysbb": "infested_mossy_stone_bricks", + "infestedmosssbb": "infested_mossy_stone_bricks", + "infestedmsbb": "infested_mossy_stone_bricks", + "monstereggmossysbb": "infested_mossy_stone_bricks", + "monstereggmosssbb": "infested_mossy_stone_bricks", + "monstereggmsbb": "infested_mossy_stone_bricks", + "meggmossysbb": "infested_mossy_stone_bricks", + "meggmosssbb": "infested_mossy_stone_bricks", + "meggmsbb": "infested_mossy_stone_bricks", + "trapmossysbb": "infested_mossy_stone_bricks", + "trapmosssbb": "infested_mossy_stone_bricks", + "trapmsbb": "infested_mossy_stone_bricks", + "sfmossysbb": "infested_mossy_stone_bricks", + "sfmosssbb": "infested_mossy_stone_bricks", + "sfmsbb": "infested_mossy_stone_bricks", + "memossysbb": "infested_mossy_stone_bricks", + "memosssbb": "infested_mossy_stone_bricks", + "memsbb": "infested_mossy_stone_bricks", + "infested_stone": { + "material": "INFESTED_STONE" + }, + "infestedstone": "infested_stone", + "silverfishstone": "infested_stone", + "sfishstone": "infested_stone", + "fishstone": "infested_stone", + "monstereggstone": "infested_stone", + "meggstone": "infested_stone", + "trapstone": "infested_stone", + "sfstone": "infested_stone", + "mestone": "infested_stone", + "silverfishsmoothstone": "infested_stone", + "sfishsmoothstone": "infested_stone", + "fishsmoothstone": "infested_stone", + "infestedsmoothstone": "infested_stone", + "monstereggsmoothstone": "infested_stone", + "meggsmoothstone": "infested_stone", + "trapsmoothstone": "infested_stone", + "sfsmoothstone": "infested_stone", + "mesmoothstone": "infested_stone", + "silverfishsstone": "infested_stone", + "sfishsstone": "infested_stone", + "fishsstone": "infested_stone", + "infestedsstone": "infested_stone", + "monstereggsstone": "infested_stone", + "meggsstone": "infested_stone", + "trapsstone": "infested_stone", + "sfsstone": "infested_stone", + "messtone": "infested_stone", + "infested_stone_bricks": { + "material": "INFESTED_STONE_BRICKS" + }, + "infestedstonebricks": "infested_stone_bricks", + "silverfishstonebrick": "infested_stone_bricks", + "sfishstonebrick": "infested_stone_bricks", + "fishstonebrick": "infested_stone_bricks", + "infestedstonebrick": "infested_stone_bricks", + "monstereggstonebrick": "infested_stone_bricks", + "meggstonebrick": "infested_stone_bricks", + "trapstonebrick": "infested_stone_bricks", + "sfstonebrick": "infested_stone_bricks", + "mestonebrick": "infested_stone_bricks", + "silverfishstonebrickblock": "infested_stone_bricks", + "sfishstonebrickblock": "infested_stone_bricks", + "fishstonebrickblock": "infested_stone_bricks", + "infestedstonebrickblock": "infested_stone_bricks", + "monstereggstonebrickblock": "infested_stone_bricks", + "meggstonebrickblock": "infested_stone_bricks", + "trapstonebrickblock": "infested_stone_bricks", + "sfstonebrickblock": "infested_stone_bricks", + "mestonebrickblock": "infested_stone_bricks", + "silverfishstonebb": "infested_stone_bricks", + "sfishstonebb": "infested_stone_bricks", + "fishstonebb": "infested_stone_bricks", + "infestedstonebb": "infested_stone_bricks", + "monstereggstonebb": "infested_stone_bricks", + "meggstonebb": "infested_stone_bricks", + "trapstonebb": "infested_stone_bricks", + "sfstonebb": "infested_stone_bricks", + "mestonebb": "infested_stone_bricks", + "silverfishsbrick": "infested_stone_bricks", + "sfishsbrick": "infested_stone_bricks", + "fishsbrick": "infested_stone_bricks", + "infestedsbrick": "infested_stone_bricks", + "monstereggsbrick": "infested_stone_bricks", + "meggsbrick": "infested_stone_bricks", + "trapsbrick": "infested_stone_bricks", + "sfsbrick": "infested_stone_bricks", + "mesbrick": "infested_stone_bricks", + "silverfishsbricks": "infested_stone_bricks", + "sfishsbricks": "infested_stone_bricks", + "fishsbricks": "infested_stone_bricks", + "infestedsbricks": "infested_stone_bricks", + "monstereggsbricks": "infested_stone_bricks", + "meggsbricks": "infested_stone_bricks", + "trapsbricks": "infested_stone_bricks", + "sfsbricks": "infested_stone_bricks", + "mesbricks": "infested_stone_bricks", + "silverfishsbrickblock": "infested_stone_bricks", + "sfishsbrickblock": "infested_stone_bricks", + "fishsbrickblock": "infested_stone_bricks", + "infestedsbrickblock": "infested_stone_bricks", + "monstereggsbrickblock": "infested_stone_bricks", + "meggsbrickblock": "infested_stone_bricks", + "trapsbrickblock": "infested_stone_bricks", + "sfsbrickblock": "infested_stone_bricks", + "mesbrickblock": "infested_stone_bricks", + "silverfishstonebricks": "infested_stone_bricks", + "sfishstonebricks": "infested_stone_bricks", + "fishstonebricks": "infested_stone_bricks", + "monstereggstonebricks": "infested_stone_bricks", + "meggstonebricks": "infested_stone_bricks", + "trapstonebricks": "infested_stone_bricks", + "sfstonebricks": "infested_stone_bricks", + "mestonebricks": "infested_stone_bricks", + "silverfishsbb": "infested_stone_bricks", + "sfishsbb": "infested_stone_bricks", + "fishsbb": "infested_stone_bricks", + "infestedsbb": "infested_stone_bricks", + "monstereggsbb": "infested_stone_bricks", + "meggsbb": "infested_stone_bricks", + "trapsbb": "infested_stone_bricks", + "sfsbb": "infested_stone_bricks", + "mesbb": "infested_stone_bricks", + "ink_sac": { + "material": "INK_SAC" + }, + "inksac": "ink_sac", + "iron_axe": { + "material": "IRON_AXE" + }, + "ironaxe": "iron_axe", + "iaxe": "iron_axe", + "steelaxe": "iron_axe", + "saxe": "stone_axe", + "staxe": "iron_axe", + "iron_bars": { + "material": "IRON_BARS" + }, + "ironbars": "iron_bars", + "ironbarsb": "iron_bars", + "ironbarsblock": "iron_bars", + "ironfence": "iron_bars", + "metalbars": "iron_bars", + "metalbarsb": "iron_bars", + "metalbarsblock": "iron_bars", + "metalfence": "iron_bars", + "jailbars": "iron_bars", + "jailbarsb": "iron_bars", + "jailbarsblock": "iron_bars", + "jailfence": "iron_bars", + "mbars": "iron_bars", + "mbarsb": "iron_bars", + "mbarsblock": "iron_bars", + "mfence": "iron_bars", + "jbars": "iron_bars", + "jbarsb": "iron_bars", + "jbarsblock": "iron_bars", + "ibars": "iron_bars", + "ibarsb": "iron_bars", + "ibarsblock": "iron_bars", + "ifence": "iron_bars", + "iron_block": { + "material": "IRON_BLOCK" + }, + "ironblock": "iron_block", + "blockiron": "iron_block", + "iblock": "iron_block", + "blocki": "iron_block", + "steelblock": "iron_block", + "blocksteel": "iron_block", + "sblock": "iron_block", + "blocks": "iron_block", + "stblock": "iron_block", + "blockst": "iron_block", + "iron_boots": { + "material": "IRON_BOOTS" + }, + "ironboots": "iron_boots", + "ironshoes": "iron_boots", + "iboots": "iron_boots", + "ishoes": "iron_boots", + "steelboots": "iron_boots", + "steelshoes": "iron_boots", + "sboots": "iron_boots", + "sshoes": "iron_boots", + "stboots": "iron_boots", + "stshoes": "iron_boots", + "iron_chestplate": { + "material": "IRON_CHESTPLATE" + }, + "ironchestplate": "iron_chestplate", + "ironplatebody": "iron_chestplate", + "ironplate": "iron_chestplate", + "ironshirt": "iron_chestplate", + "irontunic": "iron_chestplate", + "ichestplate": "iron_chestplate", + "iplatebody": "iron_chestplate", + "iplate": "iron_chestplate", + "ishirt": "iron_chestplate", + "itunic": "iron_chestplate", + "steelchestplate": "iron_chestplate", + "steelplatebody": "iron_chestplate", + "steelplate": "iron_chestplate", + "steelshirt": "iron_chestplate", + "steeltunic": "iron_chestplate", + "schestplate": "iron_chestplate", + "splatebody": "iron_chestplate", + "sshirt": "iron_chestplate", + "stunic": "iron_chestplate", + "stchestplate": "iron_chestplate", + "stplatebody": "iron_chestplate", + "stplate": "iron_chestplate", + "stshirt": "iron_chestplate", + "sttunic": "iron_chestplate", + "iron_door": { + "material": "IRON_DOOR" + }, + "irondoor": "iron_door", + "dooriron": "iron_trapdoor", + "idoor": "iron_trapdoor", + "doori": "iron_trapdoor", + "steeldoor": "iron_trapdoor", + "doorsteel": "iron_trapdoor", + "sdoor": "iron_trapdoor", + "doors": "iron_trapdoor", + "stdoor": "spruce_trapdoor", + "doorst": "iron_trapdoor", + "iron_helmet": { + "material": "IRON_HELMET" + }, + "ironhelmet": "iron_helmet", + "ironhelm": "iron_helmet", + "ironhat": "iron_helmet", + "ironcoif": "iron_helmet", + "ihelmet": "iron_helmet", + "ihelm": "iron_helmet", + "ihat": "iron_helmet", + "icoif": "iron_helmet", + "steelhelmet": "iron_helmet", + "steelhelm": "iron_helmet", + "steelhat": "iron_helmet", + "steelcoif": "iron_helmet", + "shelmet": "iron_helmet", + "shelm": "iron_helmet", + "shat": "iron_helmet", + "scoif": "iron_helmet", + "sthelmet": "iron_helmet", + "sthelm": "iron_helmet", + "sthat": "iron_helmet", + "stcoif": "iron_helmet", + "iron_hoe": { + "material": "IRON_HOE" + }, + "ironhoe": "iron_hoe", + "ihoe": "iron_hoe", + "steelhoe": "iron_hoe", + "shoe": "stone_hoe", + "sthoe": "iron_hoe", + "iron_horse_armor": { + "material": "IRON_HORSE_ARMOR" + }, + "ironhorsearmor": "iron_horse_armor", + "ironharmor": "iron_horse_armor", + "ironarmor": "iron_horse_armor", + "ihorsearmor": "iron_horse_armor", + "iharmor": "iron_horse_armor", + "iarmor": "iron_horse_armor", + "steelhorsearmor": "iron_horse_armor", + "steelharmor": "iron_horse_armor", + "steelarmor": "iron_horse_armor", + "shorsearmor": "iron_horse_armor", + "sharmor": "iron_horse_armor", + "sarmor": "iron_horse_armor", + "sthorsearmor": "iron_horse_armor", + "stharmor": "iron_horse_armor", + "starmor": "iron_horse_armor", + "iron_ingot": { + "material": "IRON_INGOT" + }, + "ironingot": "iron_ingot", + "ironbar": "iron_ingot", + "ironi": "iron_ingot", + "ingotiron": "iron_ingot", + "bariron": "iron_ingot", + "iiron": "iron_ingot", + "iingot": "iron_ingot", + "ibar": "iron_ingot", + "ingoti": "iron_ingot", + "bari": "iron_ingot", + "steelingot": "iron_ingot", + "steelbar": "iron_ingot", + "steeli": "iron_ingot", + "ingotsteel": "iron_ingot", + "barsteel": "iron_ingot", + "isteel": "iron_ingot", + "singot": "iron_ingot", + "sbar": "iron_ingot", + "stingot": "iron_ingot", + "stbar": "iron_ingot", + "sti": "iron_ingot", + "ingotst": "iron_ingot", + "barst": "iron_ingot", + "ist": "iron_ingot", + "iron_leggings": { + "material": "IRON_LEGGINGS" + }, + "ironleggings": "iron_leggings", + "ironlegs": "iron_leggings", + "ironpants": "iron_leggings", + "ileggings": "iron_leggings", + "ilegs": "iron_leggings", + "ipants": "iron_leggings", + "steelleggings": "iron_leggings", + "steellegs": "iron_leggings", + "steelpants": "iron_leggings", + "sleggings": "iron_leggings", + "slegs": "iron_leggings", + "spants": "iron_leggings", + "stleggings": "iron_leggings", + "stlegs": "iron_leggings", + "stpants": "iron_leggings", + "iron_nugget": { + "material": "IRON_NUGGET" + }, + "ironnugget": "iron_nugget", + "iron_ore": { + "material": "IRON_ORE" + }, + "ironore": "iron_ore", + "irono": "iron_ore", + "oreiron": "iron_ore", + "oiron": "iron_ore", + "iore": "iron_ore", + "orei": "iron_ore", + "steelore": "iron_ore", + "steelo": "iron_ore", + "oresteel": "iron_ore", + "osteel": "iron_ore", + "sore": "iron_ore", + "ores": "iron_ore", + "store": "iron_ore", + "sto": "iron_ore", + "orest": "iron_ore", + "ost": "iron_ore", + "iron_pickaxe": { + "material": "IRON_PICKAXE" + }, + "ironpickaxe": "iron_pickaxe", + "ironpick": "iron_pickaxe", + "ipickaxe": "iron_pickaxe", + "ipick": "iron_pickaxe", + "steelpickaxe": "iron_pickaxe", + "steelpick": "iron_pickaxe", + "spickaxe": "stone_pickaxe", + "spick": "stone_pickaxe", + "stpickaxe": "iron_pickaxe", + "stpick": "iron_pickaxe", + "iron_shovel": { + "material": "IRON_SHOVEL" + }, + "ironshovel": "iron_shovel", + "ironspade": "iron_shovel", + "ishovel": "iron_shovel", + "ispade": "iron_shovel", + "steelshovel": "iron_shovel", + "steelspade": "iron_shovel", + "sshovel": "stone_shovel", + "sspade": "stone_shovel", + "stshovel": "iron_shovel", + "stspade": "iron_shovel", + "iron_sword": { + "material": "IRON_SWORD" + }, + "ironsword": "iron_sword", + "isword": "iron_sword", + "steelsword": "iron_sword", + "ssword": "stone_sword", + "stsword": "iron_sword", + "iron_trapdoor": { + "material": "IRON_TRAPDOOR" + }, + "irontrapdoor": "iron_trapdoor", + "item_frame": { + "material": "ITEM_FRAME" + }, + "itemframe": "item_frame", + "jack_o_lantern": { + "material": "JACK_O_LANTERN" + }, + "jackolantern": "jack_o_lantern", + "pumpkinlantern": "jack_o_lantern", + "glowingpumpkin": "jack_o_lantern", + "lightpumpkin": "jack_o_lantern", + "jpumpkin": "jack_o_lantern", + "plantren": "jack_o_lantern", + "glowpumpkin": "jack_o_lantern", + "gpumpkin": "jack_o_lantern", + "lpumpkin": "jack_o_lantern", + "jigsaw": "jigsaw", + "jukebox": "jukebox", + "jbox": "jukebox", + "jungle_boat": { + "material": "JUNGLE_BOAT" + }, + "jungleboat": "jungle_boat", + "jboat": "jungle_boat", + "forestboat": "jungle_boat", + "fboat": "jungle_boat", + "jungle_button": { + "material": "JUNGLE_BUTTON" + }, + "junglebutton": "jungle_button", + "jungle_door": { + "material": "JUNGLE_DOOR" + }, + "jungledoor": "jungle_door", + "jungle_fence": { + "material": "JUNGLE_FENCE" + }, + "junglefence": "jungle_fence", + "jfence": "jungle_fence", + "forestfence": "jungle_fence", + "ffence": "jungle_fence", + "jungle_fence_gate": { + "material": "JUNGLE_FENCE_GATE" + }, + "junglefencegate": "jungle_fence_gate", + "junglegate": "jungle_fence_gate", + "jfencegate": "jungle_fence_gate", + "jgate": "jungle_fence_gate", + "forestfencegate": "jungle_fence_gate", + "forestgate": "jungle_fence_gate", + "ffencegate": "jungle_fence_gate", + "fgate": "jungle_fence_gate", + "jungle_leaves": { + "material": "JUNGLE_LEAVES" + }, + "jungleleaves": "jungle_leaves", + "jungletreeleaves": "jungle_leaves", + "junglelogleaves": "jungle_leaves", + "jungletrunkleaves": "jungle_leaves", + "junglewoodleaves": "jungle_leaves", + "jungletreeleaf": "jungle_leaves", + "junglelogleaf": "jungle_leaves", + "jungletrunkleaf": "jungle_leaves", + "junglewoodleaf": "jungle_leaves", + "jungleleaf": "jungle_leaves", + "jungletreeleave": "jungle_leaves", + "junglelogleave": "jungle_leaves", + "jungletrunkleave": "jungle_leaves", + "junglewoodleave": "jungle_leaves", + "jungleleave": "jungle_leaves", + "jtreeleaves": "jungle_leaves", + "jlogleaves": "jungle_leaves", + "jtrunkleaves": "jungle_leaves", + "jwoodleaves": "jungle_leaves", + "jleaves": "jungle_leaves", + "jtreeleaf": "jungle_leaves", + "jlogleaf": "jungle_leaves", + "jtrunkleaf": "jungle_leaves", + "jwoodleaf": "jungle_leaves", + "jleaf": "jungle_leaves", + "jtreeleave": "jungle_leaves", + "jlogleave": "jungle_leaves", + "jtrunkleave": "jungle_leaves", + "jwoodleave": "jungle_leaves", + "jleave": "jungle_leaves", + "foresttreeleaves": "jungle_leaves", + "forestlogleaves": "jungle_leaves", + "foresttrunkleaves": "jungle_leaves", + "forestwoodleaves": "jungle_leaves", + "forestleaves": "jungle_leaves", + "foresttreeleaf": "jungle_leaves", + "forestlogleaf": "jungle_leaves", + "foresttrunkleaf": "jungle_leaves", + "forestwoodleaf": "jungle_leaves", + "forestleaf": "jungle_leaves", + "foresttreeleave": "jungle_leaves", + "forestlogleave": "jungle_leaves", + "foresttrunkleave": "jungle_leaves", + "forestwoodleave": "jungle_leaves", + "forestleave": "jungle_leaves", + "ftreeleaves": "jungle_leaves", + "flogleaves": "jungle_leaves", + "ftrunkleaves": "jungle_leaves", + "fwoodleaves": "jungle_leaves", + "fleaves": "jungle_leaves", + "ftreeleaf": "jungle_leaves", + "flogleaf": "jungle_leaves", + "ftrunkleaf": "jungle_leaves", + "fwoodleaf": "jungle_leaves", + "fleaf": "jungle_leaves", + "ftreeleave": "jungle_leaves", + "flogleave": "jungle_leaves", + "ftrunkleave": "jungle_leaves", + "fwoodleave": "jungle_leaves", + "fleave": "jungle_leaves", + "jungle_log": { + "material": "JUNGLE_LOG" + }, + "junglelog": "jungle_log", + "jungle": "jungle_log", + "logjungle": "jungle_log", + "jungletrunk": "jungle_log", + "jungletree": "jungle_log", + "j": "jungle_log", + "logj": "jungle_log", + "jtrunk": "jungle_log", + "jlog": "jungle_log", + "jtree": "jungle_log", + "forest": "jungle_log", + "logforest": "jungle_log", + "foresttrunk": "jungle_log", + "forestlog": "jungle_log", + "foresttree": "jungle_log", + "f": "jungle_log", + "logf": "jungle_log", + "ftrunk": "jungle_log", + "flog": "jungle_log", + "ftree": "jungle_log", + "jungle_planks": { + "material": "JUNGLE_PLANKS" + }, + "jungleplanks": "jungle_planks", + "junglewoodenplank": "jungle_planks", + "junglewoodplank": "jungle_planks", + "junglewplank": "jungle_planks", + "jungleplankwooden": "jungle_planks", + "jungleplankwood": "jungle_planks", + "jungleplankw": "jungle_planks", + "jungleplank": "jungle_planks", + "jwoodenplank": "jungle_planks", + "jwoodplank": "jungle_planks", + "jwplank": "jungle_planks", + "jplankwooden": "jungle_planks", + "jplankwood": "jungle_planks", + "jplankw": "jungle_planks", + "jplank": "jungle_planks", + "forestwoodenplank": "jungle_planks", + "forestwoodplank": "jungle_planks", + "forestwplank": "jungle_planks", + "forestplankwooden": "jungle_planks", + "forestplankwood": "jungle_planks", + "forestplankw": "jungle_planks", + "forestplank": "jungle_planks", + "fwoodenplank": "jungle_planks", + "fwoodplank": "jungle_planks", + "fwplank": "jungle_planks", + "fplankwooden": "jungle_planks", + "fplankwood": "jungle_planks", + "fplankw": "jungle_planks", + "fplank": "jungle_planks", + "jungle_pressure_plate": { + "material": "JUNGLE_PRESSURE_PLATE" + }, + "junglepressureplate": "jungle_pressure_plate", + "junglepressplate": "jungle_pressure_plate", + "junglepplate": "jungle_pressure_plate", + "jungleplate": "jungle_pressure_plate", + "jpressureplate": "jungle_pressure_plate", + "jpressplate": "jungle_pressure_plate", + "jpplate": "jungle_pressure_plate", + "jplate": "jungle_pressure_plate", + "forestpressureplate": "jungle_pressure_plate", + "forestpressplate": "jungle_pressure_plate", + "forestpplate": "jungle_pressure_plate", + "forestplate": "jungle_pressure_plate", + "fpressureplate": "jungle_pressure_plate", + "fpressplate": "jungle_pressure_plate", + "fpplate": "jungle_pressure_plate", + "fplate": "jungle_pressure_plate", + "jungle_sapling": { + "material": "JUNGLE_SAPLING" + }, + "junglesapling": "jungle_sapling", + "jungletreesapling": "jungle_sapling", + "junglelogsapling": "jungle_sapling", + "jungletrunksapling": "jungle_sapling", + "junglewoodsapling": "jungle_sapling", + "jsapling": "jungle_sapling", + "jtreesapling": "jungle_sapling", + "jlogsapling": "jungle_sapling", + "jtrunksapling": "jungle_sapling", + "jwoodsapling": "jungle_sapling", + "forestsapling": "jungle_sapling", + "foresttreesapling": "jungle_sapling", + "forestlogsapling": "jungle_sapling", + "foresttrunksapling": "jungle_sapling", + "forestwoodsapling": "jungle_sapling", + "fsapling": "jungle_sapling", + "ftreesapling": "jungle_sapling", + "flogsapling": "jungle_sapling", + "ftrunksapling": "jungle_sapling", + "fwoodsapling": "jungle_sapling", + "jungle_sign": { + "material": "JUNGLE_SIGN", + "fallbacks": [ + "SIGN" + ] + }, + "junglesign": "jungle_sign", + "jungle_slab": { + "material": "JUNGLE_SLAB" + }, + "jungleslab": "jungle_slab", + "junglewoodenstep": "jungle_slab", + "junglewoodstep": "jungle_slab", + "junglewstep": "jungle_slab", + "junglestep": "jungle_slab", + "junglewoodenslab": "jungle_slab", + "junglewoodslab": "jungle_slab", + "junglewslab": "jungle_slab", + "junglewoodenhalfblock": "jungle_slab", + "junglewoodhalfblock": "jungle_slab", + "junglewhalfblock": "jungle_slab", + "junglehalfblock": "jungle_slab", + "jwoodenstep": "jungle_slab", + "jwoodstep": "jungle_slab", + "jwstep": "jungle_slab", + "jstep": "jungle_slab", + "jwoodenslab": "jungle_slab", + "jwoodslab": "jungle_slab", + "jwslab": "jungle_slab", + "jwoodenhalfblock": "jungle_slab", + "jwoodhalfblock": "jungle_slab", + "jwhalfblock": "jungle_slab", + "jhalfblock": "jungle_slab", + "forestwoodenstep": "jungle_slab", + "forestwoodstep": "jungle_slab", + "forestwstep": "jungle_slab", + "foreststep": "jungle_slab", + "forestwoodenslab": "jungle_slab", + "forestwoodslab": "jungle_slab", + "forestwslab": "jungle_slab", + "forestwoodenhalfblock": "jungle_slab", + "forestwoodhalfblock": "jungle_slab", + "forestwhalfblock": "jungle_slab", + "foresthalfblock": "jungle_slab", + "fwoodenstep": "jungle_slab", + "fwoodstep": "jungle_slab", + "fwstep": "jungle_slab", + "fstep": "jungle_slab", + "fwoodenslab": "jungle_slab", + "fwoodslab": "jungle_slab", + "fwslab": "jungle_slab", + "fwoodenhalfblock": "jungle_slab", + "fwoodhalfblock": "jungle_slab", + "fwhalfblock": "jungle_slab", + "fhalfblock": "jungle_slab", + "jungle_stairs": { + "material": "JUNGLE_STAIRS" + }, + "junglestairs": "jungle_stairs", + "junglewoodenstairs": "jungle_stairs", + "junglewoodstairs": "jungle_stairs", + "junglewstairs": "jungle_stairs", + "junglewoodenstair": "jungle_stairs", + "junglewoodstair": "jungle_stairs", + "junglewstair": "jungle_stairs", + "junglestair": "jungle_stairs", + "jwoodenstairs": "jungle_stairs", + "jwoodstairs": "jungle_stairs", + "jwstairs": "jungle_stairs", + "jwoodenstair": "jungle_stairs", + "jwoodstair": "jungle_stairs", + "jwstair": "jungle_stairs", + "jstair": "jungle_stairs", + "forestwoodenstairs": "jungle_stairs", + "forestwoodstairs": "jungle_stairs", + "forestwstairs": "jungle_stairs", + "forestwoodenstair": "jungle_stairs", + "forestwoodstair": "jungle_stairs", + "forestwstair": "jungle_stairs", + "foreststair": "jungle_stairs", + "fwoodenstairs": "jungle_stairs", + "fwoodstairs": "jungle_stairs", + "fwstairs": "jungle_stairs", + "fwoodenstair": "jungle_stairs", + "fwoodstair": "jungle_stairs", + "fwstair": "jungle_stairs", + "fstair": "jungle_stairs", + "jungle_trapdoor": { + "material": "JUNGLE_TRAPDOOR" + }, + "jungletrapdoor": "jungle_trapdoor", + "jungledoortrap": "jungle_trapdoor", + "junglehatch": "jungle_trapdoor", + "jungletdoor": "jungle_trapdoor", + "jungledoort": "jungle_trapdoor", + "jungletrapd": "jungle_trapdoor", + "jungledtrap": "jungle_trapdoor", + "jtrapdoor": "jungle_trapdoor", + "jdoortrap": "jungle_trapdoor", + "jhatch": "jungle_trapdoor", + "jtdoor": "jungle_trapdoor", + "jdoort": "jungle_trapdoor", + "jtrapd": "jungle_trapdoor", + "jdtrap": "jungle_trapdoor", + "foresttrapdoor": "jungle_trapdoor", + "forestdoortrap": "jungle_trapdoor", + "foresthatch": "jungle_trapdoor", + "foresttdoor": "jungle_trapdoor", + "forestdoort": "jungle_trapdoor", + "foresttrapd": "jungle_trapdoor", + "forestdtrap": "jungle_trapdoor", + "ftrapdoor": "jungle_trapdoor", + "fdoortrap": "jungle_trapdoor", + "fhatch": "jungle_trapdoor", + "ftdoor": "jungle_trapdoor", + "fdoort": "jungle_trapdoor", + "ftrapd": "jungle_trapdoor", + "fdtrap": "jungle_trapdoor", + "jungle_wall_sign": { + "material": "JUNGLE_WALL_SIGN", + "unspawnable": true + }, + "junglewallsign": "jungle_wall_sign", + "jungle_wood": { + "material": "JUNGLE_WOOD" + }, + "junglewood": "jungle_wood", + "junglelogall": "jungle_wood", + "jungletrunkall": "jungle_wood", + "jungletreeall": "jungle_wood", + "jwood": "jungle_wood", + "jlogall": "jungle_wood", + "jtrunkall": "jungle_wood", + "jtreeall": "jungle_wood", + "forestwood": "jungle_wood", + "forestlogall": "jungle_wood", + "foresttrunkall": "jungle_wood", + "foresttreeall": "jungle_wood", + "fwood": "jungle_wood", + "flogall": "jungle_wood", + "ftrunkall": "jungle_wood", + "ftreeall": "jungle_wood", + "kelp": "kelp", + "kelp_plant": { + "material": "KELP_PLANT", + "unspawnable": true + }, + "kelpplant": "kelp_plant", + "knowledge_book": { + "material": "KNOWLEDGE_BOOK" + }, + "knowledgebook": "knowledge_book", + "ladder": "ladder", + "lantern": "lantern", + "lapis_block": { + "material": "LAPIS_BLOCK" + }, + "lapisblock": "lapis_block", + "lapislazuliblock": "lapis_block", + "blocklapislazuli": "lapis_block", + "blocklapis": "lapis_block", + "lblock": "lapis_block", + "blockl": "lapis_block", + "lapis_lazuli": { + "material": "LAPIS_LAZULI" + }, + "lapislazuli": "lapis_lazuli", + "lapis_ore": { + "material": "LAPIS_ORE" + }, + "lapisore": "lapis_ore", + "lapislazuliore": "lapis_ore", + "lapislazulio": "lapis_ore", + "orelapislazuli": "lapis_ore", + "olapislazuli": "lapis_ore", + "lapiso": "lapis_ore", + "orelapis": "lapis_ore", + "olapis": "lapis_ore", + "lore": "lapis_ore", + "lo": "lapis_ore", + "orel": "lapis_ore", + "ol": "lapis_ore", + "large_fern": { + "material": "LARGE_FERN" + }, + "largefern": "large_fern", + "lava": { + "material": "LAVA", + "unspawnable": true + }, + "stationarylava": "lava", + "stilllava": "lava", + "slava": "lava", + "lava_bucket": { + "material": "LAVA_BUCKET" + }, + "lavabucket": "lava_bucket", + "lead": "lead", + "leather": "leather", + "leather_boots": { + "material": "LEATHER_BOOTS" + }, + "leatherboots": "leather_boots", + "leathershoes": "leather_boots", + "lboots": "leather_boots", + "lshoes": "leather_boots", + "leather_chestplate": { + "material": "LEATHER_CHESTPLATE" + }, + "leatherchestplate": "leather_chestplate", + "leatherplatebody": "leather_chestplate", + "leatherplate": "leather_chestplate", + "leathershirt": "leather_chestplate", + "leathertunic": "leather_chestplate", + "lchestplate": "leather_chestplate", + "lplatebody": "leather_chestplate", + "lplate": "leather_chestplate", + "lshirt": "leather_chestplate", + "ltunic": "leather_chestplate", + "leather_helmet": { + "material": "LEATHER_HELMET" + }, + "leatherhelmet": "leather_helmet", + "leatherhelm": "leather_helmet", + "leatherhat": "leather_helmet", + "leathercoif": "leather_helmet", + "lhelmet": "leather_helmet", + "lhelm": "leather_helmet", + "lhat": "leather_helmet", + "lcoif": "leather_helmet", + "leather_horse_armor": { + "material": "LEATHER_HORSE_ARMOR" + }, + "leatherhorsearmor": "leather_horse_armor", + "leatherharmor": "leather_horse_armor", + "leatherarmor": "leather_horse_armor", + "lhorsearmor": "leather_horse_armor", + "lharmor": "leather_horse_armor", + "larmor": "leather_horse_armor", + "leather_leggings": { + "material": "LEATHER_LEGGINGS" + }, + "leatherleggings": "leather_leggings", + "leatherlegs": "leather_leggings", + "leatherpants": "leather_leggings", + "lleggings": "leather_leggings", + "llegs": "leather_leggings", + "lpants": "leather_leggings", + "lectern": "lectern", + "lever": "lever", + "light_blue_banner": { + "material": "LIGHT_BLUE_BANNER" + }, + "lightbluebanner": "light_blue_banner", + "lbstandingbanner": "light_blue_banner", + "lbbanner": "light_blue_banner", + "lblustandingbanner": "light_blue_banner", + "lblubanner": "light_blue_banner", + "lightblustandingbanner": "light_blue_banner", + "lightblubanner": "light_blue_banner", + "lbluestandingbanner": "light_blue_banner", + "lbluebanner": "light_blue_banner", + "lightbluestandingbanner": "light_blue_banner", + "light_blue_bed": { + "material": "LIGHT_BLUE_BED" + }, + "lightbluebed": "light_blue_bed", + "lbbed": "light_blue_bed", + "lblubed": "light_blue_bed", + "lightblubed": "light_blue_bed", + "lbluebed": "light_blue_bed", + "light_blue_carpet": { + "material": "LIGHT_BLUE_CARPET" + }, + "lightbluecarpet": "light_blue_carpet", + "lbcarpet": "light_blue_carpet", + "lbfloor": "light_blue_carpet", + "lblucarpet": "light_blue_carpet", + "lblufloor": "light_blue_carpet", + "lightblucarpet": "light_blue_carpet", + "lightblufloor": "light_blue_carpet", + "lbluecarpet": "light_blue_carpet", + "lbluefloor": "light_blue_carpet", + "lightbluefloor": "light_blue_carpet", + "light_blue_concrete": { + "material": "LIGHT_BLUE_CONCRETE" + }, + "lightblueconcrete": "light_blue_concrete", + "lbconcrete": "light_blue_concrete", + "lbluconcrete": "light_blue_concrete", + "lightbluconcrete": "light_blue_concrete", + "lblueconcrete": "light_blue_concrete", + "light_blue_concrete_powder": { + "material": "LIGHT_BLUE_CONCRETE_POWDER" + }, + "lightblueconcretepowder": "light_blue_concrete_powder", + "lbconcretepowder": "light_blue_concrete_powder", + "lbconcretesand": "light_blue_concrete_powder", + "lbcpowder": "light_blue_concrete_powder", + "lbcdust": "light_blue_concrete_powder", + "lbcp": "light_blue_concrete_powder", + "lbluconcretepowder": "light_blue_concrete_powder", + "lbluconcretesand": "light_blue_concrete_powder", + "lblucpowder": "light_blue_concrete_powder", + "lblucdust": "light_blue_concrete_powder", + "lblucp": "light_blue_concrete_powder", + "lightbluconcretepowder": "light_blue_concrete_powder", + "lightbluconcretesand": "light_blue_concrete_powder", + "lightblucpowder": "light_blue_concrete_powder", + "lightblucdust": "light_blue_concrete_powder", + "lightblucp": "light_blue_concrete_powder", + "lblueconcretepowder": "light_blue_concrete_powder", + "lblueconcretesand": "light_blue_concrete_powder", + "lbluecpowder": "light_blue_concrete_powder", + "lbluecdust": "light_blue_concrete_powder", + "lbluecp": "light_blue_concrete_powder", + "lightblueconcretesand": "light_blue_concrete_powder", + "lightbluecpowder": "light_blue_concrete_powder", + "lightbluecdust": "light_blue_concrete_powder", + "lightbluecp": "light_blue_concrete_powder", + "light_blue_dye": { + "material": "LIGHT_BLUE_DYE" + }, + "lightbluedye": "light_blue_dye", + "light_blue_glazed_terracotta": { + "material": "LIGHT_BLUE_GLAZED_TERRACOTTA" + }, + "lightblueglazedterracotta": "light_blue_glazed_terracotta", + "lbglazedtcota": "light_blue_glazed_terracotta", + "lbglazedterra": "light_blue_glazed_terracotta", + "lbglazedterracotta": "light_blue_glazed_terracotta", + "lbglazedterracota": "light_blue_glazed_terracotta", + "lbluglazedtcota": "light_blue_glazed_terracotta", + "lbluglazedterra": "light_blue_glazed_terracotta", + "lbluglazedterracotta": "light_blue_glazed_terracotta", + "lbluglazedterracota": "light_blue_glazed_terracotta", + "lightbluglazedtcota": "light_blue_glazed_terracotta", + "lightbluglazedterra": "light_blue_glazed_terracotta", + "lightbluglazedterracotta": "light_blue_glazed_terracotta", + "lightbluglazedterracota": "light_blue_glazed_terracotta", + "lblueglazedtcota": "light_blue_glazed_terracotta", + "lblueglazedterra": "light_blue_glazed_terracotta", + "lblueglazedterracotta": "light_blue_glazed_terracotta", + "lblueglazedterracota": "light_blue_glazed_terracotta", + "lightblueglazedtcota": "light_blue_glazed_terracotta", + "lightblueglazedterra": "light_blue_glazed_terracotta", + "lightblueglazedterracota": "light_blue_glazed_terracotta", + "light_blue_shulker_box": { + "material": "LIGHT_BLUE_SHULKER_BOX" + }, + "lightblueshulkerbox": "light_blue_shulker_box", + "lbshulkerbox": "light_blue_shulker_box", + "lbchest": "light_blue_shulker_box", + "lblushulkerbox": "light_blue_shulker_box", + "lbluchest": "light_blue_shulker_box", + "lightblushulkerbox": "light_blue_shulker_box", + "lightbluchest": "light_blue_shulker_box", + "lblueshulkerbox": "light_blue_shulker_box", + "lbluechest": "light_blue_shulker_box", + "lightbluechest": "light_blue_shulker_box", + "light_blue_stained_glass": { + "material": "LIGHT_BLUE_STAINED_GLASS" + }, + "lightbluestainedglass": "light_blue_stained_glass", + "lbglass": "light_blue_stained_glass", + "lbsglass": "light_blue_stained_glass", + "lbstainedglass": "light_blue_stained_glass", + "lbluglass": "light_blue_stained_glass", + "lblusglass": "light_blue_stained_glass", + "lblustainedglass": "light_blue_stained_glass", + "lightbluglass": "light_blue_stained_glass", + "lightblusglass": "light_blue_stained_glass", + "lightblustainedglass": "light_blue_stained_glass", + "lblueglass": "light_blue_stained_glass", + "lbluesglass": "light_blue_stained_glass", + "lbluestainedglass": "light_blue_stained_glass", + "lightblueglass": "light_blue_stained_glass", + "lightbluesglass": "light_blue_stained_glass", + "light_blue_stained_glass_pane": { + "material": "LIGHT_BLUE_STAINED_GLASS_PANE" + }, + "lightbluestainedglasspane": "light_blue_stained_glass_pane", + "lbglasspane": "light_blue_stained_glass_pane", + "lbsglasspane": "light_blue_stained_glass_pane", + "lbstainedglasspane": "light_blue_stained_glass_pane", + "lbgpane": "light_blue_stained_glass_pane", + "lbluglasspane": "light_blue_stained_glass_pane", + "lblusglasspane": "light_blue_stained_glass_pane", + "lblustainedglasspane": "light_blue_stained_glass_pane", + "lblugpane": "light_blue_stained_glass_pane", + "lightbluglasspane": "light_blue_stained_glass_pane", + "lightblusglasspane": "light_blue_stained_glass_pane", + "lightblustainedglasspane": "light_blue_stained_glass_pane", + "lightblugpane": "light_blue_stained_glass_pane", + "lblueglasspane": "light_blue_stained_glass_pane", + "lbluesglasspane": "light_blue_stained_glass_pane", + "lbluestainedglasspane": "light_blue_stained_glass_pane", + "lbluegpane": "light_blue_stained_glass_pane", + "lightblueglasspane": "light_blue_stained_glass_pane", + "lightbluesglasspane": "light_blue_stained_glass_pane", + "lightbluegpane": "light_blue_stained_glass_pane", + "light_blue_terracotta": { + "material": "LIGHT_BLUE_TERRACOTTA" + }, + "lightblueterracotta": "light_blue_terracotta", + "lbclay": "light_blue_terracotta", + "lbsclay": "light_blue_terracotta", + "lbstainedclay": "light_blue_terracotta", + "lbterra": "light_blue_terracotta", + "lbtcota": "light_blue_terracotta", + "lbterracota": "light_blue_terracotta", + "lbterracotta": "light_blue_terracotta", + "lbluclay": "light_blue_terracotta", + "lblusclay": "light_blue_terracotta", + "lblustainedclay": "light_blue_terracotta", + "lbluterra": "light_blue_terracotta", + "lblutcota": "light_blue_terracotta", + "lbluterracota": "light_blue_terracotta", + "lbluterracotta": "light_blue_terracotta", + "lightbluclay": "light_blue_terracotta", + "lightblusclay": "light_blue_terracotta", + "lightblustainedclay": "light_blue_terracotta", + "lightbluterra": "light_blue_terracotta", + "lightblutcota": "light_blue_terracotta", + "lightbluterracota": "light_blue_terracotta", + "lightbluterracotta": "light_blue_terracotta", + "lblueclay": "light_blue_terracotta", + "lbluesclay": "light_blue_terracotta", + "lbluestainedclay": "light_blue_terracotta", + "lblueterra": "light_blue_terracotta", + "lbluetcota": "light_blue_terracotta", + "lblueterracota": "light_blue_terracotta", + "lblueterracotta": "light_blue_terracotta", + "lightblueclay": "light_blue_terracotta", + "lightbluesclay": "light_blue_terracotta", + "lightbluestainedclay": "light_blue_terracotta", + "lightblueterra": "light_blue_terracotta", + "lightbluetcota": "light_blue_terracotta", + "lightblueterracota": "light_blue_terracotta", + "light_blue_wall_banner": { + "material": "LIGHT_BLUE_WALL_BANNER", + "unspawnable": true + }, + "lightbluewallbanner": "light_blue_wall_banner", + "light_blue_wool": { + "material": "LIGHT_BLUE_WOOL" + }, + "lightbluewool": "light_blue_wool", + "lbwool": "light_blue_wool", + "lbcloth": "light_blue_wool", + "lbcotton": "light_blue_wool", + "lbluwool": "light_blue_wool", + "lblucloth": "light_blue_wool", + "lblucotton": "light_blue_wool", + "lightbluwool": "light_blue_wool", + "lightblucloth": "light_blue_wool", + "lightblucotton": "light_blue_wool", + "lbluewool": "light_blue_wool", + "lbluecloth": "light_blue_wool", + "lbluecotton": "light_blue_wool", + "lightbluecloth": "light_blue_wool", + "lightbluecotton": "light_blue_wool", + "light_gray_banner": { + "material": "LIGHT_GRAY_BANNER" + }, + "lightgraybanner": "light_gray_banner", + "lgstandingbanner": "light_gray_banner", + "lgbanner": "light_gray_banner", + "lgrastandingbanner": "light_gray_banner", + "lgrabanner": "light_gray_banner", + "lgreystandingbanner": "light_gray_banner", + "lgreybanner": "light_gray_banner", + "lgraystandingbanner": "light_gray_banner", + "lgraybanner": "light_gray_banner", + "lightgrastandingbanner": "light_gray_banner", + "lightgrabanner": "light_gray_banner", + "lightgreystandingbanner": "light_gray_banner", + "lightgreybanner": "light_gray_banner", + "lightgraystandingbanner": "light_gray_banner", + "sistandingbanner": "light_gray_banner", + "sibanner": "light_gray_banner", + "siastandingbanner": "light_gray_banner", + "siabanner": "light_gray_banner", + "silverstandingbanner": "light_gray_banner", + "silverbanner": "light_gray_banner", + "light_gray_bed": { + "material": "LIGHT_GRAY_BED" + }, + "lightgraybed": "light_gray_bed", + "lgbed": "light_gray_bed", + "lgrabed": "light_gray_bed", + "lgreybed": "light_gray_bed", + "lgraybed": "light_gray_bed", + "lightgrabed": "light_gray_bed", + "lightgreybed": "light_gray_bed", + "sibed": "light_gray_bed", + "siabed": "light_gray_bed", + "silverbed": "light_gray_bed", + "light_gray_carpet": { + "material": "LIGHT_GRAY_CARPET" + }, + "lightgraycarpet": "light_gray_carpet", + "lgcarpet": "light_gray_carpet", + "lgfloor": "light_gray_carpet", + "lgracarpet": "light_gray_carpet", + "lgrafloor": "light_gray_carpet", + "lgreycarpet": "light_gray_carpet", + "lgreyfloor": "light_gray_carpet", + "lgraycarpet": "light_gray_carpet", + "lgrayfloor": "light_gray_carpet", + "lightgracarpet": "light_gray_carpet", + "lightgrafloor": "light_gray_carpet", + "lightgreycarpet": "light_gray_carpet", + "lightgreyfloor": "light_gray_carpet", + "lightgrayfloor": "light_gray_carpet", + "sicarpet": "light_gray_carpet", + "sifloor": "light_gray_carpet", + "siacarpet": "light_gray_carpet", + "siafloor": "light_gray_carpet", + "silvercarpet": "light_gray_carpet", + "silverfloor": "light_gray_carpet", + "light_gray_concrete": { + "material": "LIGHT_GRAY_CONCRETE" + }, + "lightgrayconcrete": "light_gray_concrete", + "lgconcrete": "light_gray_concrete", + "lgraconcrete": "light_gray_concrete", + "lgreyconcrete": "light_gray_concrete", + "lgrayconcrete": "light_gray_concrete", + "lightgraconcrete": "light_gray_concrete", + "lightgreyconcrete": "light_gray_concrete", + "siconcrete": "light_gray_concrete", + "siaconcrete": "light_gray_concrete", + "silverconcrete": "light_gray_concrete", + "light_gray_concrete_powder": { + "material": "LIGHT_GRAY_CONCRETE_POWDER" + }, + "lightgrayconcretepowder": "light_gray_concrete_powder", + "lgconcretepowder": "light_gray_concrete_powder", + "lgconcretesand": "light_gray_concrete_powder", + "lgcpowder": "light_gray_concrete_powder", + "lgcdust": "light_gray_concrete_powder", + "lgcp": "light_gray_concrete_powder", + "lgraconcretepowder": "light_gray_concrete_powder", + "lgraconcretesand": "light_gray_concrete_powder", + "lgracpowder": "light_gray_concrete_powder", + "lgracdust": "light_gray_concrete_powder", + "lgracp": "light_gray_concrete_powder", + "lgreyconcretepowder": "light_gray_concrete_powder", + "lgreyconcretesand": "light_gray_concrete_powder", + "lgreycpowder": "light_gray_concrete_powder", + "lgreycdust": "light_gray_concrete_powder", + "lgreycp": "light_gray_concrete_powder", + "lgrayconcretepowder": "light_gray_concrete_powder", + "lgrayconcretesand": "light_gray_concrete_powder", + "lgraycpowder": "light_gray_concrete_powder", + "lgraycdust": "light_gray_concrete_powder", + "lgraycp": "light_gray_concrete_powder", + "lightgraconcretepowder": "light_gray_concrete_powder", + "lightgraconcretesand": "light_gray_concrete_powder", + "lightgracpowder": "light_gray_concrete_powder", + "lightgracdust": "light_gray_concrete_powder", + "lightgracp": "light_gray_concrete_powder", + "lightgreyconcretepowder": "light_gray_concrete_powder", + "lightgreyconcretesand": "light_gray_concrete_powder", + "lightgreycpowder": "light_gray_concrete_powder", + "lightgreycdust": "light_gray_concrete_powder", + "lightgreycp": "light_gray_concrete_powder", + "lightgrayconcretesand": "light_gray_concrete_powder", + "lightgraycpowder": "light_gray_concrete_powder", + "lightgraycdust": "light_gray_concrete_powder", + "lightgraycp": "light_gray_concrete_powder", + "siconcretepowder": "light_gray_concrete_powder", + "siconcretesand": "light_gray_concrete_powder", + "sicpowder": "light_gray_concrete_powder", + "sicdust": "light_gray_concrete_powder", + "sicp": "light_gray_concrete_powder", + "siaconcretepowder": "light_gray_concrete_powder", + "siaconcretesand": "light_gray_concrete_powder", + "siacpowder": "light_gray_concrete_powder", + "siacdust": "light_gray_concrete_powder", + "siacp": "light_gray_concrete_powder", + "silverconcretepowder": "light_gray_concrete_powder", + "silverconcretesand": "light_gray_concrete_powder", + "silvercpowder": "light_gray_concrete_powder", + "silvercdust": "light_gray_concrete_powder", + "silvercp": "light_gray_concrete_powder", + "light_gray_dye": { + "material": "LIGHT_GRAY_DYE" + }, + "lightgraydye": "light_gray_dye", + "light_gray_glazed_terracotta": { + "material": "LIGHT_GRAY_GLAZED_TERRACOTTA" + }, + "lightgrayglazedterracotta": "light_gray_glazed_terracotta", + "lgglazedtcota": "light_gray_glazed_terracotta", + "lgglazedterra": "light_gray_glazed_terracotta", + "lgglazedterracotta": "light_gray_glazed_terracotta", + "lgglazedterracota": "light_gray_glazed_terracotta", + "lgraglazedtcota": "light_gray_glazed_terracotta", + "lgraglazedterra": "light_gray_glazed_terracotta", + "lgraglazedterracotta": "light_gray_glazed_terracotta", + "lgraglazedterracota": "light_gray_glazed_terracotta", + "lgreyglazedtcota": "light_gray_glazed_terracotta", + "lgreyglazedterra": "light_gray_glazed_terracotta", + "lgreyglazedterracotta": "light_gray_glazed_terracotta", + "lgreyglazedterracota": "light_gray_glazed_terracotta", + "lgrayglazedtcota": "light_gray_glazed_terracotta", + "lgrayglazedterra": "light_gray_glazed_terracotta", + "lgrayglazedterracotta": "light_gray_glazed_terracotta", + "lgrayglazedterracota": "light_gray_glazed_terracotta", + "lightgraglazedtcota": "light_gray_glazed_terracotta", + "lightgraglazedterra": "light_gray_glazed_terracotta", + "lightgraglazedterracotta": "light_gray_glazed_terracotta", + "lightgraglazedterracota": "light_gray_glazed_terracotta", + "lightgreyglazedtcota": "light_gray_glazed_terracotta", + "lightgreyglazedterra": "light_gray_glazed_terracotta", + "lightgreyglazedterracotta": "light_gray_glazed_terracotta", + "lightgreyglazedterracota": "light_gray_glazed_terracotta", + "lightgrayglazedtcota": "light_gray_glazed_terracotta", + "lightgrayglazedterra": "light_gray_glazed_terracotta", + "lightgrayglazedterracota": "light_gray_glazed_terracotta", + "siglazedtcota": "light_gray_glazed_terracotta", + "siglazedterra": "light_gray_glazed_terracotta", + "siglazedterracotta": "light_gray_glazed_terracotta", + "siglazedterracota": "light_gray_glazed_terracotta", + "siaglazedtcota": "light_gray_glazed_terracotta", + "siaglazedterra": "light_gray_glazed_terracotta", + "siaglazedterracotta": "light_gray_glazed_terracotta", + "siaglazedterracota": "light_gray_glazed_terracotta", + "silverglazedtcota": "light_gray_glazed_terracotta", + "silverglazedterra": "light_gray_glazed_terracotta", + "silverglazedterracotta": "light_gray_glazed_terracotta", + "silverglazedterracota": "light_gray_glazed_terracotta", + "light_gray_shulker_box": { + "material": "LIGHT_GRAY_SHULKER_BOX" + }, + "lightgrayshulkerbox": "light_gray_shulker_box", + "lgshulkerbox": "light_gray_shulker_box", + "lgchest": "light_gray_shulker_box", + "lgrashulkerbox": "light_gray_shulker_box", + "lgrachest": "light_gray_shulker_box", + "lgreyshulkerbox": "light_gray_shulker_box", + "lgreychest": "light_gray_shulker_box", + "lgrayshulkerbox": "light_gray_shulker_box", + "lgraychest": "light_gray_shulker_box", + "lightgrashulkerbox": "light_gray_shulker_box", + "lightgrachest": "light_gray_shulker_box", + "lightgreyshulkerbox": "light_gray_shulker_box", + "lightgreychest": "light_gray_shulker_box", + "lightgraychest": "light_gray_shulker_box", + "sishulkerbox": "light_gray_shulker_box", + "sichest": "light_gray_shulker_box", + "siashulkerbox": "light_gray_shulker_box", + "siachest": "light_gray_shulker_box", + "silvershulkerbox": "light_gray_shulker_box", + "silverchest": "light_gray_shulker_box", + "light_gray_stained_glass": { + "material": "LIGHT_GRAY_STAINED_GLASS" + }, + "lightgraystainedglass": "light_gray_stained_glass", + "lgglass": "light_gray_stained_glass", + "lgsglass": "light_gray_stained_glass", + "lgstainedglass": "light_gray_stained_glass", + "lgraglass": "light_gray_stained_glass", + "lgrasglass": "light_gray_stained_glass", + "lgrastainedglass": "light_gray_stained_glass", + "lgreyglass": "light_gray_stained_glass", + "lgreysglass": "light_gray_stained_glass", + "lgreystainedglass": "light_gray_stained_glass", + "lgrayglass": "light_gray_stained_glass", + "lgraysglass": "light_gray_stained_glass", + "lgraystainedglass": "light_gray_stained_glass", + "lightgraglass": "light_gray_stained_glass", + "lightgrasglass": "light_gray_stained_glass", + "lightgrastainedglass": "light_gray_stained_glass", + "lightgreyglass": "light_gray_stained_glass", + "lightgreysglass": "light_gray_stained_glass", + "lightgreystainedglass": "light_gray_stained_glass", + "lightgrayglass": "light_gray_stained_glass", + "lightgraysglass": "light_gray_stained_glass", + "siglass": "light_gray_stained_glass", + "sisglass": "light_gray_stained_glass", + "sistainedglass": "light_gray_stained_glass", + "siaglass": "light_gray_stained_glass", + "siasglass": "light_gray_stained_glass", + "siastainedglass": "light_gray_stained_glass", + "silverglass": "light_gray_stained_glass", + "silversglass": "light_gray_stained_glass", + "silverstainedglass": "light_gray_stained_glass", + "light_gray_stained_glass_pane": { + "material": "LIGHT_GRAY_STAINED_GLASS_PANE" + }, + "lightgraystainedglasspane": "light_gray_stained_glass_pane", + "lgglasspane": "light_gray_stained_glass_pane", + "lgsglasspane": "light_gray_stained_glass_pane", + "lgstainedglasspane": "light_gray_stained_glass_pane", + "lggpane": "light_gray_stained_glass_pane", + "lgraglasspane": "light_gray_stained_glass_pane", + "lgrasglasspane": "light_gray_stained_glass_pane", + "lgrastainedglasspane": "light_gray_stained_glass_pane", + "lgragpane": "light_gray_stained_glass_pane", + "lgreyglasspane": "light_gray_stained_glass_pane", + "lgreysglasspane": "light_gray_stained_glass_pane", + "lgreystainedglasspane": "light_gray_stained_glass_pane", + "lgreygpane": "light_gray_stained_glass_pane", + "lgrayglasspane": "light_gray_stained_glass_pane", + "lgraysglasspane": "light_gray_stained_glass_pane", + "lgraystainedglasspane": "light_gray_stained_glass_pane", + "lgraygpane": "light_gray_stained_glass_pane", + "lightgraglasspane": "light_gray_stained_glass_pane", + "lightgrasglasspane": "light_gray_stained_glass_pane", + "lightgrastainedglasspane": "light_gray_stained_glass_pane", + "lightgragpane": "light_gray_stained_glass_pane", + "lightgreyglasspane": "light_gray_stained_glass_pane", + "lightgreysglasspane": "light_gray_stained_glass_pane", + "lightgreystainedglasspane": "light_gray_stained_glass_pane", + "lightgreygpane": "light_gray_stained_glass_pane", + "lightgrayglasspane": "light_gray_stained_glass_pane", + "lightgraysglasspane": "light_gray_stained_glass_pane", + "lightgraygpane": "light_gray_stained_glass_pane", + "siglasspane": "light_gray_stained_glass_pane", + "sisglasspane": "light_gray_stained_glass_pane", + "sistainedglasspane": "light_gray_stained_glass_pane", + "sigpane": "light_gray_stained_glass_pane", + "siaglasspane": "light_gray_stained_glass_pane", + "siasglasspane": "light_gray_stained_glass_pane", + "siastainedglasspane": "light_gray_stained_glass_pane", + "siagpane": "light_gray_stained_glass_pane", + "silverglasspane": "light_gray_stained_glass_pane", + "silversglasspane": "light_gray_stained_glass_pane", + "silverstainedglasspane": "light_gray_stained_glass_pane", + "silvergpane": "light_gray_stained_glass_pane", + "light_gray_terracotta": { + "material": "LIGHT_GRAY_TERRACOTTA" + }, + "lightgrayterracotta": "light_gray_terracotta", + "lgclay": "light_gray_terracotta", + "lgsclay": "light_gray_terracotta", + "lgstainedclay": "light_gray_terracotta", + "lgterra": "light_gray_terracotta", + "lgtcota": "light_gray_terracotta", + "lgterracota": "light_gray_terracotta", + "lgterracotta": "light_gray_terracotta", + "lgraclay": "light_gray_terracotta", + "lgrasclay": "light_gray_terracotta", + "lgrastainedclay": "light_gray_terracotta", + "lgraterra": "light_gray_terracotta", + "lgratcota": "light_gray_terracotta", + "lgraterracota": "light_gray_terracotta", + "lgraterracotta": "light_gray_terracotta", + "lgreyclay": "light_gray_terracotta", + "lgreysclay": "light_gray_terracotta", + "lgreystainedclay": "light_gray_terracotta", + "lgreyterra": "light_gray_terracotta", + "lgreytcota": "light_gray_terracotta", + "lgreyterracota": "light_gray_terracotta", + "lgreyterracotta": "light_gray_terracotta", + "lgrayclay": "light_gray_terracotta", + "lgraysclay": "light_gray_terracotta", + "lgraystainedclay": "light_gray_terracotta", + "lgrayterra": "light_gray_terracotta", + "lgraytcota": "light_gray_terracotta", + "lgrayterracota": "light_gray_terracotta", + "lgrayterracotta": "light_gray_terracotta", + "lightgraclay": "light_gray_terracotta", + "lightgrasclay": "light_gray_terracotta", + "lightgrastainedclay": "light_gray_terracotta", + "lightgraterra": "light_gray_terracotta", + "lightgratcota": "light_gray_terracotta", + "lightgraterracota": "light_gray_terracotta", + "lightgraterracotta": "light_gray_terracotta", + "lightgreyclay": "light_gray_terracotta", + "lightgreysclay": "light_gray_terracotta", + "lightgreystainedclay": "light_gray_terracotta", + "lightgreyterra": "light_gray_terracotta", + "lightgreytcota": "light_gray_terracotta", + "lightgreyterracota": "light_gray_terracotta", + "lightgreyterracotta": "light_gray_terracotta", + "lightgrayclay": "light_gray_terracotta", + "lightgraysclay": "light_gray_terracotta", + "lightgraystainedclay": "light_gray_terracotta", + "lightgrayterra": "light_gray_terracotta", + "lightgraytcota": "light_gray_terracotta", + "lightgrayterracota": "light_gray_terracotta", + "siclay": "light_gray_terracotta", + "sisclay": "light_gray_terracotta", + "sistainedclay": "light_gray_terracotta", + "siterra": "light_gray_terracotta", + "sitcota": "light_gray_terracotta", + "siterracota": "light_gray_terracotta", + "siterracotta": "light_gray_terracotta", + "siaclay": "light_gray_terracotta", + "siasclay": "light_gray_terracotta", + "siastainedclay": "light_gray_terracotta", + "siaterra": "light_gray_terracotta", + "siatcota": "light_gray_terracotta", + "siaterracota": "light_gray_terracotta", + "siaterracotta": "light_gray_terracotta", + "silverclay": "light_gray_terracotta", + "silversclay": "light_gray_terracotta", + "silverstainedclay": "light_gray_terracotta", + "silverterra": "light_gray_terracotta", + "silvertcota": "light_gray_terracotta", + "silverterracota": "light_gray_terracotta", + "silverterracotta": "light_gray_terracotta", + "light_gray_wall_banner": { + "material": "LIGHT_GRAY_WALL_BANNER", + "unspawnable": true + }, + "lightgraywallbanner": "light_gray_wall_banner", + "light_gray_wool": { + "material": "LIGHT_GRAY_WOOL" + }, + "lightgraywool": "light_gray_wool", + "lgwool": "light_gray_wool", + "lgcloth": "light_gray_wool", + "lgcotton": "light_gray_wool", + "lgrawool": "light_gray_wool", + "lgracloth": "light_gray_wool", + "lgracotton": "light_gray_wool", + "lgreywool": "light_gray_wool", + "lgreycloth": "light_gray_wool", + "lgreycotton": "light_gray_wool", + "lgraywool": "light_gray_wool", + "lgraycloth": "light_gray_wool", + "lgraycotton": "light_gray_wool", + "lightgrawool": "light_gray_wool", + "lightgracloth": "light_gray_wool", + "lightgracotton": "light_gray_wool", + "lightgreywool": "light_gray_wool", + "lightgreycloth": "light_gray_wool", + "lightgreycotton": "light_gray_wool", + "lightgraycloth": "light_gray_wool", + "lightgraycotton": "light_gray_wool", + "siwool": "light_gray_wool", + "sicloth": "light_gray_wool", + "sicotton": "light_gray_wool", + "siawool": "light_gray_wool", + "siacloth": "light_gray_wool", + "siacotton": "light_gray_wool", + "silverwool": "light_gray_wool", + "silvercloth": "light_gray_wool", + "silvercotton": "light_gray_wool", + "light_weighted_pressure_plate": { + "material": "LIGHT_WEIGHTED_PRESSURE_PLATE" + }, + "lightweightedpressureplate": "light_weighted_pressure_plate", + "lilac": "lilac", + "lily_of_the_valley": { + "material": "LILY_OF_THE_VALLEY" + }, + "lilyofthevalley": "lily_of_the_valley", + "lily_pad": { + "material": "LILY_PAD" + }, + "lilypad": "lily_pad", + "waterlily": "lily_pad", + "lily": "lily_pad", + "swamppad": "lily_pad", + "lpad": "lily_pad", + "wlily": "lily_pad", + "lime_banner": { + "material": "LIME_BANNER" + }, + "limebanner": "lime_banner", + "lstandingbanner": "lime_banner", + "lbanner": "lime_banner", + "limestandingbanner": "lime_banner", + "lgrestandingbanner": "lime_banner", + "lgrebanner": "lime_banner", + "lightgrestandingbanner": "lime_banner", + "lightgrebanner": "lime_banner", + "lgreenstandingbanner": "lime_banner", + "lgreenbanner": "lime_banner", + "lightgreenstandingbanner": "lime_banner", + "lightgreenbanner": "lime_banner", + "lime_bed": { + "material": "LIME_BED" + }, + "limebed": "lime_bed", + "lbed": "lime_bed", + "lgrebed": "lime_bed", + "lightgrebed": "lime_bed", + "lgreenbed": "lime_bed", + "lightgreenbed": "lime_bed", + "lime_carpet": { + "material": "LIME_CARPET" + }, + "limecarpet": "lime_carpet", + "lcarpet": "lime_carpet", + "lfloor": "lime_carpet", + "limefloor": "lime_carpet", + "lgrecarpet": "lime_carpet", + "lgrefloor": "lime_carpet", + "lightgrecarpet": "lime_carpet", + "lightgrefloor": "lime_carpet", + "lgreencarpet": "lime_carpet", + "lgreenfloor": "lime_carpet", + "lightgreencarpet": "lime_carpet", + "lightgreenfloor": "lime_carpet", + "lime_concrete": { + "material": "LIME_CONCRETE" + }, + "limeconcrete": "lime_concrete", + "lconcrete": "lime_concrete", + "lgreconcrete": "lime_concrete", + "lightgreconcrete": "lime_concrete", + "lgreenconcrete": "lime_concrete", + "lightgreenconcrete": "lime_concrete", + "lime_concrete_powder": { + "material": "LIME_CONCRETE_POWDER" + }, + "limeconcretepowder": "lime_concrete_powder", + "lconcretepowder": "lime_concrete_powder", + "lconcretesand": "lime_concrete_powder", + "lcpowder": "lime_concrete_powder", + "lcdust": "lime_concrete_powder", + "lcp": "lime_concrete_powder", + "limeconcretesand": "lime_concrete_powder", + "limecpowder": "lime_concrete_powder", + "limecdust": "lime_concrete_powder", + "limecp": "lime_concrete_powder", + "lgreconcretepowder": "lime_concrete_powder", + "lgreconcretesand": "lime_concrete_powder", + "lgrecpowder": "lime_concrete_powder", + "lgrecdust": "lime_concrete_powder", + "lgrecp": "lime_concrete_powder", + "lightgreconcretepowder": "lime_concrete_powder", + "lightgreconcretesand": "lime_concrete_powder", + "lightgrecpowder": "lime_concrete_powder", + "lightgrecdust": "lime_concrete_powder", + "lightgrecp": "lime_concrete_powder", + "lgreenconcretepowder": "lime_concrete_powder", + "lgreenconcretesand": "lime_concrete_powder", + "lgreencpowder": "lime_concrete_powder", + "lgreencdust": "lime_concrete_powder", + "lgreencp": "lime_concrete_powder", + "lightgreenconcretepowder": "lime_concrete_powder", + "lightgreenconcretesand": "lime_concrete_powder", + "lightgreencpowder": "lime_concrete_powder", + "lightgreencdust": "lime_concrete_powder", + "lightgreencp": "lime_concrete_powder", + "lime_dye": { + "material": "LIME_DYE" + }, + "limedye": "lime_dye", + "lime_glazed_terracotta": { + "material": "LIME_GLAZED_TERRACOTTA" + }, + "limeglazedterracotta": "lime_glazed_terracotta", + "lglazedtcota": "lime_glazed_terracotta", + "lglazedterra": "lime_glazed_terracotta", + "lglazedterracotta": "lime_glazed_terracotta", + "lglazedterracota": "lime_glazed_terracotta", + "limeglazedtcota": "lime_glazed_terracotta", + "limeglazedterra": "lime_glazed_terracotta", + "limeglazedterracota": "lime_glazed_terracotta", + "lgreglazedtcota": "lime_glazed_terracotta", + "lgreglazedterra": "lime_glazed_terracotta", + "lgreglazedterracotta": "lime_glazed_terracotta", + "lgreglazedterracota": "lime_glazed_terracotta", + "lightgreglazedtcota": "lime_glazed_terracotta", + "lightgreglazedterra": "lime_glazed_terracotta", + "lightgreglazedterracotta": "lime_glazed_terracotta", + "lightgreglazedterracota": "lime_glazed_terracotta", + "lgreenglazedtcota": "lime_glazed_terracotta", + "lgreenglazedterra": "lime_glazed_terracotta", + "lgreenglazedterracotta": "lime_glazed_terracotta", + "lgreenglazedterracota": "lime_glazed_terracotta", + "lightgreenglazedtcota": "lime_glazed_terracotta", + "lightgreenglazedterra": "lime_glazed_terracotta", + "lightgreenglazedterracotta": "lime_glazed_terracotta", + "lightgreenglazedterracota": "lime_glazed_terracotta", + "lime_shulker_box": { + "material": "LIME_SHULKER_BOX" + }, + "limeshulkerbox": "lime_shulker_box", + "lshulkerbox": "lime_shulker_box", + "lchest": "lime_shulker_box", + "limechest": "lime_shulker_box", + "lgreshulkerbox": "lime_shulker_box", + "lgrechest": "lime_shulker_box", + "lightgreshulkerbox": "lime_shulker_box", + "lightgrechest": "lime_shulker_box", + "lgreenshulkerbox": "lime_shulker_box", + "lgreenchest": "lime_shulker_box", + "lightgreenshulkerbox": "lime_shulker_box", + "lightgreenchest": "lime_shulker_box", + "lime_stained_glass": { + "material": "LIME_STAINED_GLASS" + }, + "limestainedglass": "lime_stained_glass", + "lglass": "lime_stained_glass", + "lsglass": "lime_stained_glass", + "lstainedglass": "lime_stained_glass", + "limeglass": "lime_stained_glass", + "limesglass": "lime_stained_glass", + "lgreglass": "lime_stained_glass", + "lgresglass": "lime_stained_glass", + "lgrestainedglass": "lime_stained_glass", + "lightgreglass": "lime_stained_glass", + "lightgresglass": "lime_stained_glass", + "lightgrestainedglass": "lime_stained_glass", + "lgreenglass": "lime_stained_glass", + "lgreensglass": "lime_stained_glass", + "lgreenstainedglass": "lime_stained_glass", + "lightgreenglass": "lime_stained_glass", + "lightgreensglass": "lime_stained_glass", + "lightgreenstainedglass": "lime_stained_glass", + "lime_stained_glass_pane": { + "material": "LIME_STAINED_GLASS_PANE" + }, + "limestainedglasspane": "lime_stained_glass_pane", + "lglasspane": "lime_stained_glass_pane", + "lsglasspane": "lime_stained_glass_pane", + "lstainedglasspane": "lime_stained_glass_pane", + "lgpane": "lime_stained_glass_pane", + "limeglasspane": "lime_stained_glass_pane", + "limesglasspane": "lime_stained_glass_pane", + "limegpane": "lime_stained_glass_pane", + "lgreglasspane": "lime_stained_glass_pane", + "lgresglasspane": "lime_stained_glass_pane", + "lgrestainedglasspane": "lime_stained_glass_pane", + "lgregpane": "lime_stained_glass_pane", + "lightgreglasspane": "lime_stained_glass_pane", + "lightgresglasspane": "lime_stained_glass_pane", + "lightgrestainedglasspane": "lime_stained_glass_pane", + "lightgregpane": "lime_stained_glass_pane", + "lgreenglasspane": "lime_stained_glass_pane", + "lgreensglasspane": "lime_stained_glass_pane", + "lgreenstainedglasspane": "lime_stained_glass_pane", + "lgreengpane": "lime_stained_glass_pane", + "lightgreenglasspane": "lime_stained_glass_pane", + "lightgreensglasspane": "lime_stained_glass_pane", + "lightgreenstainedglasspane": "lime_stained_glass_pane", + "lightgreengpane": "lime_stained_glass_pane", + "lime_terracotta": { + "material": "LIME_TERRACOTTA" + }, + "limeterracotta": "lime_terracotta", + "lclay": "lime_terracotta", + "lsclay": "lime_terracotta", + "lstainedclay": "lime_terracotta", + "lterra": "lime_terracotta", + "ltcota": "lime_terracotta", + "lterracota": "lime_terracotta", + "lterracotta": "lime_terracotta", + "limeclay": "lime_terracotta", + "limesclay": "lime_terracotta", + "limestainedclay": "lime_terracotta", + "limeterra": "lime_terracotta", + "limetcota": "lime_terracotta", + "limeterracota": "lime_terracotta", + "lgreclay": "lime_terracotta", + "lgresclay": "lime_terracotta", + "lgrestainedclay": "lime_terracotta", + "lgreterra": "lime_terracotta", + "lgretcota": "lime_terracotta", + "lgreterracota": "lime_terracotta", + "lgreterracotta": "lime_terracotta", + "lightgreclay": "lime_terracotta", + "lightgresclay": "lime_terracotta", + "lightgrestainedclay": "lime_terracotta", + "lightgreterra": "lime_terracotta", + "lightgretcota": "lime_terracotta", + "lightgreterracota": "lime_terracotta", + "lightgreterracotta": "lime_terracotta", + "lgreenclay": "lime_terracotta", + "lgreensclay": "lime_terracotta", + "lgreenstainedclay": "lime_terracotta", + "lgreenterra": "lime_terracotta", + "lgreentcota": "lime_terracotta", + "lgreenterracota": "lime_terracotta", + "lgreenterracotta": "lime_terracotta", + "lightgreenclay": "lime_terracotta", + "lightgreensclay": "lime_terracotta", + "lightgreenstainedclay": "lime_terracotta", + "lightgreenterra": "lime_terracotta", + "lightgreentcota": "lime_terracotta", + "lightgreenterracota": "lime_terracotta", + "lightgreenterracotta": "lime_terracotta", + "lime_wall_banner": { + "material": "LIME_WALL_BANNER", + "unspawnable": true + }, + "limewallbanner": "lime_wall_banner", + "lime_wool": { + "material": "LIME_WOOL" + }, + "limewool": "lime_wool", + "lwool": "lime_wool", + "lcloth": "lime_wool", + "lcotton": "lime_wool", + "limecloth": "lime_wool", + "limecotton": "lime_wool", + "lgrewool": "lime_wool", + "lgrecloth": "lime_wool", + "lgrecotton": "lime_wool", + "lightgrewool": "lime_wool", + "lightgrecloth": "lime_wool", + "lightgrecotton": "lime_wool", + "lgreenwool": "lime_wool", + "lgreencloth": "lime_wool", + "lgreencotton": "lime_wool", + "lightgreenwool": "lime_wool", + "lightgreencloth": "lime_wool", + "lightgreencotton": "lime_wool", + "lingering_potion": { + "material": "LINGERING_POTION" + }, + "lingeringpotion": "lingering_potion", + "llama_spawn_egg": { + "material": "LLAMA_SPAWN_EGG" + }, + "llamaspawnegg": "llama_spawn_egg", + "llamaegg": "trader_llama_spawn_egg", + "eggllama": "trader_llama_spawn_egg", + "spawneggllama": "trader_llama_spawn_egg", + "llamaspawn": "trader_llama_spawn_egg", + "spawnllama": "trader_llama_spawn_egg", + "loom": "loom", + "magenta_banner": { + "material": "MAGENTA_BANNER" + }, + "magentabanner": "magenta_banner", + "mstandingbanner": "magenta_banner", + "mbanner": "magenta_banner", + "magentastandingbanner": "magenta_banner", + "magenta_bed": { + "material": "MAGENTA_BED" + }, + "magentabed": "magenta_bed", + "mbed": "magenta_bed", + "magenta_carpet": { + "material": "MAGENTA_CARPET" + }, + "magentacarpet": "magenta_carpet", + "mcarpet": "magenta_carpet", + "mfloor": "magenta_carpet", + "magentafloor": "magenta_carpet", + "magenta_concrete": { + "material": "MAGENTA_CONCRETE" + }, + "magentaconcrete": "magenta_concrete", + "mconcrete": "magenta_concrete", + "magenta_concrete_powder": { + "material": "MAGENTA_CONCRETE_POWDER" + }, + "magentaconcretepowder": "magenta_concrete_powder", + "mconcretepowder": "magenta_concrete_powder", + "mconcretesand": "magenta_concrete_powder", + "mcpowder": "magenta_concrete_powder", + "mcdust": "magenta_concrete_powder", + "mcp": "magenta_concrete_powder", + "magentaconcretesand": "magenta_concrete_powder", + "magentacpowder": "magenta_concrete_powder", + "magentacdust": "magenta_concrete_powder", + "magentacp": "magenta_concrete_powder", + "magenta_dye": { + "material": "MAGENTA_DYE" + }, + "magentadye": "magenta_dye", + "magenta_glazed_terracotta": { + "material": "MAGENTA_GLAZED_TERRACOTTA" + }, + "magentaglazedterracotta": "magenta_glazed_terracotta", + "mglazedtcota": "magenta_glazed_terracotta", + "mglazedterra": "magenta_glazed_terracotta", + "mglazedterracotta": "magenta_glazed_terracotta", + "mglazedterracota": "magenta_glazed_terracotta", + "magentaglazedtcota": "magenta_glazed_terracotta", + "magentaglazedterra": "magenta_glazed_terracotta", + "magentaglazedterracota": "magenta_glazed_terracotta", + "magenta_shulker_box": { + "material": "MAGENTA_SHULKER_BOX" + }, + "magentashulkerbox": "magenta_shulker_box", + "mshulkerbox": "magenta_shulker_box", + "mchest": "magenta_shulker_box", + "magentachest": "magenta_shulker_box", + "magenta_stained_glass": { + "material": "MAGENTA_STAINED_GLASS" + }, + "magentastainedglass": "magenta_stained_glass", + "mglass": "magenta_stained_glass", + "msglass": "magenta_stained_glass", + "mstainedglass": "magenta_stained_glass", + "magentaglass": "magenta_stained_glass", + "magentasglass": "magenta_stained_glass", + "magenta_stained_glass_pane": { + "material": "MAGENTA_STAINED_GLASS_PANE" + }, + "magentastainedglasspane": "magenta_stained_glass_pane", + "mglasspane": "magenta_stained_glass_pane", + "msglasspane": "magenta_stained_glass_pane", + "mstainedglasspane": "magenta_stained_glass_pane", + "mgpane": "magenta_stained_glass_pane", + "magentaglasspane": "magenta_stained_glass_pane", + "magentasglasspane": "magenta_stained_glass_pane", + "magentagpane": "magenta_stained_glass_pane", + "magenta_terracotta": { + "material": "MAGENTA_TERRACOTTA" + }, + "magentaterracotta": "magenta_terracotta", + "mclay": "magenta_terracotta", + "msclay": "magenta_terracotta", + "mstainedclay": "magenta_terracotta", + "mterra": "magenta_terracotta", + "mtcota": "magenta_terracotta", + "mterracota": "magenta_terracotta", + "mterracotta": "magenta_terracotta", + "magentaclay": "magenta_terracotta", + "magentasclay": "magenta_terracotta", + "magentastainedclay": "magenta_terracotta", + "magentaterra": "magenta_terracotta", + "magentatcota": "magenta_terracotta", + "magentaterracota": "magenta_terracotta", + "magenta_wall_banner": { + "material": "MAGENTA_WALL_BANNER", + "unspawnable": true + }, + "magentawallbanner": "magenta_wall_banner", + "magenta_wool": { + "material": "MAGENTA_WOOL" + }, + "magentawool": "magenta_wool", + "mwool": "magenta_wool", + "mcloth": "magenta_wool", + "mcotton": "magenta_wool", + "magentacloth": "magenta_wool", + "magentacotton": "magenta_wool", + "magma_block": { + "material": "MAGMA_BLOCK" + }, + "magmablock": "magma_block", + "magma_cream": { + "material": "MAGMA_CREAM" + }, + "magmacream": "magma_cream", + "magma_cube_spawn_egg": { + "material": "MAGMA_CUBE_SPAWN_EGG" + }, + "magmacubespawnegg": "magma_cube_spawn_egg", + "lavaslimeegg": "magma_cube_spawn_egg", + "egglavaslime": "magma_cube_spawn_egg", + "lavaslimespawnegg": "magma_cube_spawn_egg", + "spawnegglavaslime": "magma_cube_spawn_egg", + "lavaslimespawn": "magma_cube_spawn_egg", + "spawnlavaslime": "magma_cube_spawn_egg", + "lavacubeegg": "magma_cube_spawn_egg", + "egglavacube": "magma_cube_spawn_egg", + "lavacubespawnegg": "magma_cube_spawn_egg", + "spawnegglavacube": "magma_cube_spawn_egg", + "lavacubespawn": "magma_cube_spawn_egg", + "spawnlavacube": "magma_cube_spawn_egg", + "magmacubeegg": "magma_cube_spawn_egg", + "eggmagmacube": "magma_cube_spawn_egg", + "spawneggmagmacube": "magma_cube_spawn_egg", + "magmacubespawn": "magma_cube_spawn_egg", + "spawnmagmacube": "magma_cube_spawn_egg", + "magmaslimeegg": "magma_cube_spawn_egg", + "eggmagmaslime": "magma_cube_spawn_egg", + "magmaslimespawnegg": "magma_cube_spawn_egg", + "spawneggmagmaslime": "magma_cube_spawn_egg", + "magmaslimespawn": "magma_cube_spawn_egg", + "spawnmagmaslime": "magma_cube_spawn_egg", + "map": "map", + "melon": "melon", + "watermelon": "melon", + "greenmelon": "melon", + "melongreen": "melon", + "melonblock": "melon", + "watermelonblock": "melon", + "greenmelonblock": "melon", + "melon_seeds": { + "material": "MELON_SEEDS" + }, + "melonseeds": "melon_seeds", + "melon_slice": { + "material": "MELON_SLICE" + }, + "melonslice": "melon_slice", + "melon_stem": { + "material": "MELON_STEM", + "unspawnable": true + }, + "melonstem": "melon_stem", + "milk_bucket": { + "material": "MILK_BUCKET" + }, + "milkbucket": "milk_bucket", + "minecart": "minecart", + "mcart": "minecart", + "mc": "minecart", + "cart": "minecart", + "mojang_banner_pattern": { + "material": "MOJANG_BANNER_PATTERN" + }, + "mojangbannerpattern": "mojang_banner_pattern", + "mooshroom_spawn_egg": { + "material": "MOOSHROOM_SPAWN_EGG" + }, + "mooshroomspawnegg": "mooshroom_spawn_egg", + "mooshroomegg": "mooshroom_spawn_egg", + "eggmooshroom": "mooshroom_spawn_egg", + "spawneggmooshroom": "mooshroom_spawn_egg", + "mooshroomspawn": "mooshroom_spawn_egg", + "spawnmooshroom": "mooshroom_spawn_egg", + "mushroomegg": "mooshroom_spawn_egg", + "eggmushroom": "mooshroom_spawn_egg", + "mushroomspawnegg": "mooshroom_spawn_egg", + "spawneggmushroom": "mooshroom_spawn_egg", + "mushroomspawn": "mooshroom_spawn_egg", + "spawnmushroom": "mooshroom_spawn_egg", + "mushroomcowegg": "mooshroom_spawn_egg", + "eggmushroomcow": "mooshroom_spawn_egg", + "mushroomcowspawnegg": "mooshroom_spawn_egg", + "spawneggmushroomcow": "mooshroom_spawn_egg", + "mushroomcowspawn": "mooshroom_spawn_egg", + "spawnmushroomcow": "mooshroom_spawn_egg", + "mossy_cobblestone": { + "material": "MOSSY_COBBLESTONE" + }, + "mossycobblestone": "mossy_cobblestone", + "mosscobblestone": "mossy_cobblestone_stairs", + "mcobblestone": "mossy_cobblestone_stairs", + "mossycstone": "mossy_cobblestone_stairs", + "mosscstone": "mossy_cobblestone_stairs", + "mcstone": "mossy_cobblestone_stairs", + "mossycobble": "mossy_cobblestone_stairs", + "mosscobble": "mossy_cobblestone_stairs", + "mcobble": "mossy_cobblestone_stairs", + "mossy_cobblestone_slab": { + "material": "MOSSY_COBBLESTONE_SLAB" + }, + "mossycobblestoneslab": "mossy_cobblestone_slab", + "mossy_cobblestone_stairs": { + "material": "MOSSY_COBBLESTONE_STAIRS" + }, + "mossycobblestonestairs": "mossy_cobblestone_stairs", + "mossy_cobblestone_wall": { + "material": "MOSSY_COBBLESTONE_WALL" + }, + "mossycobblestonewall": "mossy_cobblestone_wall", + "mosscobblestonewall": "mossy_cobblestone_wall", + "mcobblestonewall": "mossy_cobblestone_wall", + "mossycobblewall": "mossy_cobblestone_wall", + "mosscobblewall": "mossy_cobblestone_wall", + "mcobblewall": "mossy_cobblestone_wall", + "mossycstonewall": "mossy_cobblestone_wall", + "mosscstonewall": "mossy_cobblestone_wall", + "mcstonewall": "mossy_cobblestone_wall", + "mossycswall": "mossy_cobblestone_wall", + "mosscswall": "mossy_cobblestone_wall", + "mcswall": "mossy_cobblestone_wall", + "mossycwall": "mossy_cobblestone_wall", + "mosscwall": "mossy_cobblestone_wall", + "mcwall": "mossy_cobblestone_wall", + "mossycobblestonefence": "mossy_cobblestone_wall", + "mosscobblestonefence": "mossy_cobblestone_wall", + "mcobblestonefence": "mossy_cobblestone_wall", + "mossycobblefence": "mossy_cobblestone_wall", + "mosscobblefence": "mossy_cobblestone_wall", + "mcobblefence": "mossy_cobblestone_wall", + "mossycstonefence": "mossy_cobblestone_wall", + "mosscstonefence": "mossy_cobblestone_wall", + "mcstonefence": "mossy_cobblestone_wall", + "mossycsfence": "mossy_cobblestone_wall", + "mosscsfence": "mossy_cobblestone_wall", + "mcsfence": "mossy_cobblestone_wall", + "mossycfence": "mossy_cobblestone_wall", + "mosscfence": "mossy_cobblestone_wall", + "mcfence": "mossy_cobblestone_wall", + "mossystonewall": "mossy_cobblestone_wall", + "mossstonewall": "mossy_cobblestone_wall", + "mstonewall": "mossy_cobblestone_wall", + "mossyswall": "mossy_cobblestone_wall", + "mossswall": "mossy_cobblestone_wall", + "mswall": "mossy_cobblestone_wall", + "mossy_stone_bricks": { + "material": "MOSSY_STONE_BRICKS" + }, + "mossystonebricks": "mossy_stone_bricks", + "mossystonebrick": "mossy_stone_bricks", + "mossstonebrick": "mossy_stone_bricks", + "mstonebrick": "mossy_stone_bricks", + "mossystonebrickblock": "mossy_stone_bricks", + "mossstonebrickblock": "mossy_stone_bricks", + "mstonebrickblock": "mossy_stone_bricks", + "mossystonebb": "mossy_stone_bricks", + "mossstonebb": "mossy_stone_bricks", + "mstonebb": "mossy_stone_bricks", + "mossysbrick": "mossy_stone_bricks", + "mosssbrick": "mossy_stone_bricks", + "msbrick": "mossy_stone_bricks", + "mossysbricks": "mossy_stone_bricks", + "mosssbricks": "mossy_stone_bricks", + "msbricks": "mossy_stone_bricks", + "mossysbrickblock": "mossy_stone_bricks", + "mosssbrickblock": "mossy_stone_bricks", + "msbrickblock": "mossy_stone_bricks", + "mossstonebricks": "mossy_stone_bricks", + "mstonebricks": "mossy_stone_bricks", + "mossysbb": "mossy_stone_bricks", + "mosssbb": "mossy_stone_bricks", + "msbb": "mossy_stone_bricks", + "mossy_stone_brick_slab": { + "material": "MOSSY_STONE_BRICK_SLAB" + }, + "mossystonebrickslab": "mossy_stone_brick_slab", + "mossystone": "mossy_stone_brick_wall", + "mossstone": "mossy_stone_brick_wall", + "mstone": "mossy_stone_brick_wall", + "mossysmoothstone": "mossy_stone_brick_wall", + "mosssmoothstone": "mossy_stone_brick_wall", + "msmoothstone": "mossy_stone_brick_wall", + "mossysstone": "mossy_stone_brick_wall", + "mosssstone": "mossy_stone_brick_wall", + "msstone": "mossy_stone_brick_wall", + "mossy_stone_brick_stairs": { + "material": "MOSSY_STONE_BRICK_STAIRS" + }, + "mossystonebrickstairs": "mossy_stone_brick_stairs", + "mossy_stone_brick_wall": { + "material": "MOSSY_STONE_BRICK_WALL" + }, + "mossystonebrickwall": "mossy_stone_brick_wall", + "moving_piston": { + "material": "MOVING_PISTON", + "unspawnable": true + }, + "movingpiston": "moving_piston", + "mule_spawn_egg": { + "material": "MULE_SPAWN_EGG" + }, + "mulespawnegg": "mule_spawn_egg", + "muleegg": "mule_spawn_egg", + "eggmule": "mule_spawn_egg", + "spawneggmule": "mule_spawn_egg", + "mulespawn": "mule_spawn_egg", + "spawnmule": "mule_spawn_egg", + "mushroom_stem": { + "material": "MUSHROOM_STEM" + }, + "mushroomstem": "mushroom_stem", + "mushroom_stew": { + "material": "MUSHROOM_STEW" + }, + "mushroomstew": "mushroom_stew", + "music_disc_11": { + "material": "MUSIC_DISC_11" + }, + "musicdisc11": "music_disc_11", + "11musicrecord": "music_disc_11", + "crackedmusicrecord": "music_disc_11", + "crackmusicrecord": "music_disc_11", + "cmusicrecord": "music_disc_11", + "musicrecord11": "music_disc_11", + "11musicdisk": "music_disc_11", + "crackedmusicdisk": "music_disc_11", + "crackmusicdisk": "music_disc_11", + "cmusicdisk": "music_disc_11", + "musicdisk11": "music_disc_11", + "11musicdisc": "music_disc_11", + "crackedmusicdisc": "music_disc_11", + "crackmusicdisc": "music_disc_11", + "cmusicdisc": "music_disc_11", + "11musiccd": "music_disc_11", + "crackedmusiccd": "music_disc_11", + "crackmusiccd": "music_disc_11", + "cmusiccd": "music_disc_11", + "musiccd11": "music_disc_11", + "11mrecord": "music_disc_11", + "crackedmrecord": "music_disc_11", + "crackmrecord": "music_disc_11", + "cmrecord": "music_disc_11", + "mrecord11": "music_disc_11", + "11mdisk": "music_disc_11", + "crackedmdisk": "music_disc_11", + "crackmdisk": "music_disc_11", + "cmdisk": "music_disc_11", + "mdisk11": "music_disc_11", + "11mdisc": "music_disc_11", + "crackedmdisc": "music_disc_11", + "crackmdisc": "music_disc_11", + "cmdisc": "music_disc_11", + "mdisc11": "music_disc_11", + "11mcd": "music_disc_11", + "crackedmcd": "music_disc_11", + "crackmcd": "music_disc_11", + "cmcd": "music_disc_11", + "mcd11": "music_disc_11", + "11record": "music_disc_11", + "crackedrecord": "music_disc_11", + "crackrecord": "music_disc_11", + "crecord": "music_disc_11", + "record11": "music_disc_11", + "11disk": "music_disc_11", + "crackeddisk": "music_disc_11", + "crackdisk": "music_disc_11", + "cdisk": "music_disc_11", + "disk11": "music_disc_11", + "11disc": "music_disc_11", + "crackeddisc": "music_disc_11", + "crackdisc": "music_disc_11", + "cdisc": "music_disc_11", + "disc11": "music_disc_11", + "11cd": "music_disc_11", + "crackedcd": "music_disc_11", + "crackcd": "music_disc_11", + "ccd": "music_disc_11", + "cd11": "music_disc_11", + "music_disc_13": { + "material": "MUSIC_DISC_13" + }, + "musicdisc13": "music_disc_13", + "13musicrecord": "music_disc_13", + "goldmusicrecord": "music_disc_13", + "gomusicrecord": "music_disc_13", + "musicrecord1": "music_disc_13", + "1musicrecord": "music_disc_13", + "13musicdisk": "music_disc_13", + "goldmusicdisk": "music_disc_13", + "gomusicdisk": "music_disc_13", + "musicdisk1": "music_disc_13", + "1musicdisk": "music_disc_13", + "13musicdisc": "music_disc_13", + "goldmusicdisc": "music_disc_13", + "gomusicdisc": "music_disc_13", + "musicdisc1": "music_disc_13", + "1musicdisc": "music_disc_13", + "13musiccd": "music_disc_13", + "goldmusiccd": "music_disc_13", + "gomusiccd": "music_disc_13", + "musiccd1": "music_disc_13", + "1musiccd": "music_disc_13", + "13mrecord": "music_disc_13", + "goldmrecord": "music_disc_13", + "gomrecord": "music_disc_13", + "mrecord1": "music_disc_13", + "1mrecord": "music_disc_13", + "13mdisk": "music_disc_13", + "goldmdisk": "music_disc_13", + "gomdisk": "music_disc_13", + "mdisk1": "music_disc_13", + "1mdisk": "music_disc_13", + "13mdisc": "music_disc_13", + "goldmdisc": "music_disc_13", + "gomdisc": "music_disc_13", + "mdisc1": "music_disc_13", + "1mdisc": "music_disc_13", + "13mcd": "music_disc_13", + "goldmcd": "music_disc_13", + "gomcd": "music_disc_13", + "mcd1": "music_disc_13", + "1mcd": "music_disc_13", + "13record": "music_disc_13", + "goldrecord": "music_disc_13", + "gorecord": "music_disc_13", + "record1": "music_disc_13", + "1record": "music_disc_13", + "13disk": "music_disc_13", + "golddisk": "music_disc_13", + "godisk": "music_disc_13", + "disk1": "music_disc_13", + "1disk": "music_disc_13", + "13disc": "music_disc_13", + "golddisc": "music_disc_13", + "godisc": "music_disc_13", + "disc1": "music_disc_13", + "1disc": "music_disc_13", + "13cd": "music_disc_13", + "goldcd": "music_disc_13", + "gocd": "music_disc_13", + "cd1": "music_disc_13", + "1cd": "music_disc_13", + "music_disc_blocks": { + "material": "MUSIC_DISC_BLOCKS" + }, + "musicdiscblocks": "music_disc_blocks", + "blocksmusicrecord": "music_disc_blocks", + "orangemusicrecord": "music_disc_blocks", + "ormusicrecord": "music_disc_blocks", + "musicrecord3": "music_disc_blocks", + "3musicrecord": "music_disc_blocks", + "blocksmusicdisk": "music_disc_blocks", + "orangemusicdisk": "music_disc_blocks", + "ormusicdisk": "music_disc_blocks", + "musicdisk3": "music_disc_blocks", + "3musicdisk": "music_disc_blocks", + "blocksmusicdisc": "music_disc_blocks", + "orangemusicdisc": "music_disc_blocks", + "ormusicdisc": "music_disc_blocks", + "musicdisc3": "music_disc_blocks", + "3musicdisc": "music_disc_blocks", + "blocksmusiccd": "music_disc_blocks", + "orangemusiccd": "music_disc_blocks", + "ormusiccd": "music_disc_blocks", + "musiccd3": "music_disc_blocks", + "3musiccd": "music_disc_blocks", + "blocksmrecord": "music_disc_blocks", + "orangemrecord": "music_disc_blocks", + "ormrecord": "music_disc_blocks", + "mrecord3": "music_disc_blocks", + "3mrecord": "music_disc_blocks", + "blocksmdisk": "music_disc_blocks", + "orangemdisk": "music_disc_blocks", + "ormdisk": "music_disc_blocks", + "mdisk3": "music_disc_blocks", + "3mdisk": "music_disc_blocks", + "blocksmdisc": "music_disc_blocks", + "orangemdisc": "music_disc_blocks", + "ormdisc": "music_disc_blocks", + "mdisc3": "music_disc_blocks", + "3mdisc": "music_disc_blocks", + "blocksmcd": "music_disc_blocks", + "orangemcd": "music_disc_blocks", + "ormcd": "music_disc_blocks", + "mcd3": "music_disc_blocks", + "3mcd": "music_disc_blocks", + "blocksrecord": "music_disc_blocks", + "orangerecord": "music_disc_blocks", + "orrecord": "music_disc_blocks", + "record3": "music_disc_blocks", + "3record": "music_disc_blocks", + "blocksdisk": "music_disc_blocks", + "orangedisk": "music_disc_blocks", + "ordisk": "music_disc_blocks", + "disk3": "music_disc_blocks", + "3disk": "music_disc_blocks", + "blocksdisc": "music_disc_blocks", + "orangedisc": "music_disc_blocks", + "ordisc": "music_disc_blocks", + "disc3": "music_disc_blocks", + "3disc": "music_disc_blocks", + "blockscd": "music_disc_blocks", + "orangecd": "music_disc_blocks", + "orcd": "music_disc_blocks", + "cd3": "music_disc_blocks", + "3cd": "music_disc_blocks", + "music_disc_cat": { + "material": "MUSIC_DISC_CAT" + }, + "musicdisccat": "music_disc_cat", + "catmusicrecord": "music_disc_cat", + "greenmusicrecord": "music_disc_cat", + "grmusicrecord": "music_disc_cat", + "musicrecord2": "music_disc_cat", + "2musicrecord": "music_disc_cat", + "catmusicdisk": "music_disc_cat", + "greenmusicdisk": "music_disc_cat", + "grmusicdisk": "music_disc_cat", + "musicdisk2": "music_disc_cat", + "2musicdisk": "music_disc_cat", + "catmusicdisc": "music_disc_cat", + "greenmusicdisc": "music_disc_cat", + "grmusicdisc": "music_disc_cat", + "musicdisc2": "music_disc_cat", + "2musicdisc": "music_disc_cat", + "catmusiccd": "music_disc_cat", + "greenmusiccd": "music_disc_cat", + "grmusiccd": "music_disc_cat", + "musiccd2": "music_disc_cat", + "2musiccd": "music_disc_cat", + "catmrecord": "music_disc_cat", + "greenmrecord": "music_disc_cat", + "grmrecord": "music_disc_cat", + "mrecord2": "music_disc_cat", + "2mrecord": "music_disc_cat", + "catmdisk": "music_disc_cat", + "greenmdisk": "music_disc_cat", + "grmdisk": "music_disc_cat", + "mdisk2": "music_disc_cat", + "2mdisk": "music_disc_cat", + "catmdisc": "music_disc_cat", + "greenmdisc": "music_disc_cat", + "grmdisc": "music_disc_cat", + "mdisc2": "music_disc_cat", + "2mdisc": "music_disc_cat", + "catmcd": "music_disc_cat", + "greenmcd": "music_disc_cat", + "grmcd": "music_disc_cat", + "mcd2": "music_disc_cat", + "2mcd": "music_disc_cat", + "catrecord": "music_disc_cat", + "greenrecord": "music_disc_cat", + "grrecord": "music_disc_cat", + "record2": "music_disc_cat", + "2record": "music_disc_cat", + "catdisk": "music_disc_cat", + "greendisk": "music_disc_cat", + "grdisk": "music_disc_cat", + "disk2": "music_disc_cat", + "2disk": "music_disc_cat", + "catdisc": "music_disc_cat", + "greendisc": "music_disc_cat", + "grdisc": "music_disc_cat", + "disc2": "music_disc_cat", + "2disc": "music_disc_cat", + "catcd": "music_disc_cat", + "greencd": "music_disc_cat", + "grcd": "music_disc_cat", + "cd2": "music_disc_cat", + "2cd": "music_disc_cat", + "music_disc_chirp": { + "material": "MUSIC_DISC_CHIRP" + }, + "musicdiscchirp": "music_disc_chirp", + "chirpmusicrecord": "music_disc_chirp", + "redmusicrecord": "music_disc_chirp", + "remusicrecord": "music_disc_chirp", + "musicrecord4": "music_disc_chirp", + "4musicrecord": "music_disc_chirp", + "chirpmusicdisk": "music_disc_chirp", + "redmusicdisk": "music_disc_chirp", + "remusicdisk": "music_disc_chirp", + "musicdisk4": "music_disc_chirp", + "4musicdisk": "music_disc_chirp", + "chirpmusicdisc": "music_disc_chirp", + "redmusicdisc": "music_disc_chirp", + "remusicdisc": "music_disc_chirp", + "musicdisc4": "music_disc_chirp", + "4musicdisc": "music_disc_chirp", + "chirpmusiccd": "music_disc_chirp", + "redmusiccd": "music_disc_chirp", + "remusiccd": "music_disc_chirp", + "musiccd4": "music_disc_chirp", + "4musiccd": "music_disc_chirp", + "chirpmrecord": "music_disc_chirp", + "redmrecord": "music_disc_chirp", + "remrecord": "music_disc_chirp", + "mrecord4": "music_disc_chirp", + "4mrecord": "music_disc_chirp", + "chirpmdisk": "music_disc_chirp", + "redmdisk": "music_disc_chirp", + "remdisk": "music_disc_chirp", + "mdisk4": "music_disc_chirp", + "4mdisk": "music_disc_chirp", + "chirpmdisc": "music_disc_chirp", + "redmdisc": "music_disc_chirp", + "remdisc": "music_disc_chirp", + "mdisc4": "music_disc_chirp", + "4mdisc": "music_disc_chirp", + "chirpmcd": "music_disc_chirp", + "redmcd": "music_disc_chirp", + "remcd": "music_disc_chirp", + "mcd4": "music_disc_chirp", + "4mcd": "music_disc_chirp", + "chirprecord": "music_disc_chirp", + "redrecord": "music_disc_chirp", + "rerecord": "music_disc_chirp", + "record4": "music_disc_chirp", + "4record": "music_disc_chirp", + "chirpdisk": "music_disc_chirp", + "reddisk": "music_disc_chirp", + "redisk": "music_disc_chirp", + "disk4": "music_disc_chirp", + "4disk": "music_disc_chirp", + "chirpdisc": "music_disc_chirp", + "reddisc": "music_disc_chirp", + "redisc": "music_disc_chirp", + "disc4": "music_disc_chirp", + "4disc": "music_disc_chirp", + "chirpcd": "music_disc_chirp", + "redcd": "music_disc_chirp", + "recd": "music_disc_chirp", + "cd4": "music_disc_chirp", + "4cd": "music_disc_chirp", + "music_disc_far": { + "material": "MUSIC_DISC_FAR" + }, + "musicdiscfar": "music_disc_far", + "farmusicrecord": "music_disc_far", + "lightgreenmusicrecord": "music_disc_far", + "lgreenmusicrecord": "music_disc_far", + "lightgrmusicrecord": "music_disc_far", + "lgrmusicrecord": "music_disc_far", + "musicrecord5": "music_disc_far", + "5musicrecord": "music_disc_far", + "farmusicdisk": "music_disc_far", + "lightgreenmusicdisk": "music_disc_far", + "lgreenmusicdisk": "music_disc_far", + "lightgrmusicdisk": "music_disc_far", + "lgrmusicdisk": "music_disc_far", + "musicdisk5": "music_disc_far", + "5musicdisk": "music_disc_far", + "farmusicdisc": "music_disc_far", + "lightgreenmusicdisc": "music_disc_far", + "lgreenmusicdisc": "music_disc_far", + "lightgrmusicdisc": "music_disc_far", + "lgrmusicdisc": "music_disc_far", + "musicdisc5": "music_disc_far", + "5musicdisc": "music_disc_far", + "farmusiccd": "music_disc_far", + "lightgreenmusiccd": "music_disc_far", + "lgreenmusiccd": "music_disc_far", + "lightgrmusiccd": "music_disc_far", + "lgrmusiccd": "music_disc_far", + "musiccd5": "music_disc_far", + "5musiccd": "music_disc_far", + "farmrecord": "music_disc_far", + "lightgreenmrecord": "music_disc_far", + "lgreenmrecord": "music_disc_far", + "lightgrmrecord": "music_disc_far", + "lgrmrecord": "music_disc_far", + "mrecord5": "music_disc_far", + "5mrecord": "music_disc_far", + "farmdisk": "music_disc_far", + "lightgreenmdisk": "music_disc_far", + "lgreenmdisk": "music_disc_far", + "lightgrmdisk": "music_disc_far", + "lgrmdisk": "music_disc_far", + "mdisk5": "music_disc_far", + "5mdisk": "music_disc_far", + "farmdisc": "music_disc_far", + "lightgreenmdisc": "music_disc_far", + "lgreenmdisc": "music_disc_far", + "lightgrmdisc": "music_disc_far", + "lgrmdisc": "music_disc_far", + "mdisc5": "music_disc_far", + "5mdisc": "music_disc_far", + "farmcd": "music_disc_far", + "lightgreenmcd": "music_disc_far", + "lgreenmcd": "music_disc_far", + "lightgrmcd": "music_disc_far", + "lgrmcd": "music_disc_far", + "mcd5": "music_disc_far", + "5mcd": "music_disc_far", + "farrecord": "music_disc_far", + "lightgreenrecord": "music_disc_far", + "lgreenrecord": "music_disc_far", + "lightgrrecord": "music_disc_far", + "lgrrecord": "music_disc_far", + "record5": "music_disc_far", + "5record": "music_disc_far", + "fardisk": "music_disc_far", + "lightgreendisk": "music_disc_far", + "lgreendisk": "music_disc_far", + "lightgrdisk": "music_disc_far", + "lgrdisk": "music_disc_far", + "disk5": "music_disc_far", + "5disk": "music_disc_far", + "fardisc": "music_disc_far", + "lightgreendisc": "music_disc_far", + "lgreendisc": "music_disc_far", + "lightgrdisc": "music_disc_far", + "lgrdisc": "music_disc_far", + "disc5": "music_disc_far", + "5disc": "music_disc_far", + "farcd": "music_disc_far", + "lightgreencd": "music_disc_far", + "lgreencd": "music_disc_far", + "lightgrcd": "music_disc_far", + "lgrcd": "music_disc_far", + "cd5": "music_disc_far", + "5cd": "music_disc_far", + "music_disc_mall": { + "material": "MUSIC_DISC_MALL" + }, + "musicdiscmall": "music_disc_mall", + "mallmusicrecord": "music_disc_mall", + "purplemusicrecord": "music_disc_mall", + "pumusicrecord": "music_disc_mall", + "musicrecord6": "music_disc_mall", + "6musicrecord": "music_disc_mall", + "mallmusicdisk": "music_disc_mall", + "purplemusicdisk": "music_disc_mall", + "pumusicdisk": "music_disc_mall", + "musicdisk6": "music_disc_mall", + "6musicdisk": "music_disc_mall", + "mallmusicdisc": "music_disc_mall", + "purplemusicdisc": "music_disc_mall", + "pumusicdisc": "music_disc_mall", + "musicdisc6": "music_disc_mall", + "6musicdisc": "music_disc_mall", + "mallmusiccd": "music_disc_mall", + "purplemusiccd": "music_disc_mall", + "pumusiccd": "music_disc_mall", + "musiccd6": "music_disc_mall", + "6musiccd": "music_disc_mall", + "mallmrecord": "music_disc_mall", + "purplemrecord": "music_disc_mall", + "pumrecord": "music_disc_mall", + "mrecord6": "music_disc_mall", + "6mrecord": "music_disc_mall", + "mallmdisk": "music_disc_mall", + "purplemdisk": "music_disc_mall", + "pumdisk": "music_disc_mall", + "mdisk6": "music_disc_mall", + "6mdisk": "music_disc_mall", + "mallmdisc": "music_disc_mall", + "purplemdisc": "music_disc_mall", + "pumdisc": "music_disc_mall", + "mdisc6": "music_disc_mall", + "6mdisc": "music_disc_mall", + "mallmcd": "music_disc_mall", + "purplemcd": "music_disc_mall", + "pumcd": "music_disc_mall", + "mcd6": "music_disc_mall", + "6mcd": "music_disc_mall", + "mallrecord": "music_disc_mall", + "purplerecord": "music_disc_mall", + "purecord": "music_disc_mall", + "record6": "music_disc_mall", + "6record": "music_disc_mall", + "malldisk": "music_disc_mall", + "purpledisk": "music_disc_mall", + "pudisk": "music_disc_mall", + "disk6": "music_disc_mall", + "6disk": "music_disc_mall", + "malldisc": "music_disc_mall", + "purpledisc": "music_disc_mall", + "pudisc": "music_disc_mall", + "disc6": "music_disc_mall", + "6disc": "music_disc_mall", + "mallcd": "music_disc_mall", + "purplecd": "music_disc_mall", + "pucd": "music_disc_mall", + "cd6": "music_disc_mall", + "6cd": "music_disc_mall", + "music_disc_mellohi": { + "material": "MUSIC_DISC_MELLOHI" + }, + "musicdiscmellohi": "music_disc_mellohi", + "mellohimusicrecord": "music_disc_mellohi", + "pinkmusicrecord": "music_disc_mellohi", + "pimusicrecord": "music_disc_mellohi", + "musicrecord7": "music_disc_mellohi", + "7musicrecord": "music_disc_mellohi", + "mellohimusicdisk": "music_disc_mellohi", + "pinkmusicdisk": "music_disc_mellohi", + "pimusicdisk": "music_disc_mellohi", + "musicdisk7": "music_disc_mellohi", + "7musicdisk": "music_disc_mellohi", + "mellohimusicdisc": "music_disc_mellohi", + "pinkmusicdisc": "music_disc_mellohi", + "pimusicdisc": "music_disc_mellohi", + "musicdisc7": "music_disc_mellohi", + "7musicdisc": "music_disc_mellohi", + "mellohimusiccd": "music_disc_mellohi", + "pinkmusiccd": "music_disc_mellohi", + "pimusiccd": "music_disc_mellohi", + "musiccd7": "music_disc_mellohi", + "7musiccd": "music_disc_mellohi", + "mellohimrecord": "music_disc_mellohi", + "pinkmrecord": "music_disc_mellohi", + "pimrecord": "music_disc_mellohi", + "mrecord7": "music_disc_mellohi", + "7mrecord": "music_disc_mellohi", + "mellohimdisk": "music_disc_mellohi", + "pinkmdisk": "music_disc_mellohi", + "pimdisk": "music_disc_mellohi", + "mdisk7": "music_disc_mellohi", + "7mdisk": "music_disc_mellohi", + "mellohimdisc": "music_disc_mellohi", + "pinkmdisc": "music_disc_mellohi", + "pimdisc": "music_disc_mellohi", + "mdisc7": "music_disc_mellohi", + "7mdisc": "music_disc_mellohi", + "mellohimcd": "music_disc_mellohi", + "pinkmcd": "music_disc_mellohi", + "pimcd": "music_disc_mellohi", + "mcd7": "music_disc_mellohi", + "7mcd": "music_disc_mellohi", + "mellohirecord": "music_disc_mellohi", + "pinkrecord": "music_disc_mellohi", + "pirecord": "music_disc_mellohi", + "record7": "music_disc_mellohi", + "7record": "music_disc_mellohi", + "mellohidisk": "music_disc_mellohi", + "pinkdisk": "music_disc_mellohi", + "pidisk": "music_disc_mellohi", + "disk7": "music_disc_mellohi", + "7disk": "music_disc_mellohi", + "mellohidisc": "music_disc_mellohi", + "pinkdisc": "music_disc_mellohi", + "pidisc": "music_disc_mellohi", + "disc7": "music_disc_mellohi", + "7disc": "music_disc_mellohi", + "mellohicd": "music_disc_mellohi", + "pinkcd": "music_disc_mellohi", + "picd": "music_disc_mellohi", + "cd7": "music_disc_mellohi", + "7cd": "music_disc_mellohi", + "music_disc_stal": { + "material": "MUSIC_DISC_STAL" + }, + "musicdiscstal": "music_disc_stal", + "stalmusicrecord": "music_disc_stal", + "blackmusicrecord": "music_disc_stal", + "blmusicrecord": "music_disc_wait", + "musicrecord8": "music_disc_stal", + "8musicrecord": "music_disc_stal", + "stalmusicdisk": "music_disc_stal", + "blackmusicdisk": "music_disc_stal", + "blmusicdisk": "music_disc_wait", + "musicdisk8": "music_disc_stal", + "8musicdisk": "music_disc_stal", + "stalmusicdisc": "music_disc_stal", + "blackmusicdisc": "music_disc_stal", + "blmusicdisc": "music_disc_wait", + "musicdisc8": "music_disc_stal", + "8musicdisc": "music_disc_stal", + "stalmusiccd": "music_disc_stal", + "blackmusiccd": "music_disc_stal", + "blmusiccd": "music_disc_wait", + "musiccd8": "music_disc_stal", + "8musiccd": "music_disc_stal", + "stalmrecord": "music_disc_stal", + "blackmrecord": "music_disc_stal", + "blmrecord": "music_disc_wait", + "mrecord8": "music_disc_stal", + "8mrecord": "music_disc_stal", + "stalmdisk": "music_disc_stal", + "blackmdisk": "music_disc_stal", + "blmdisk": "music_disc_wait", + "mdisk8": "music_disc_stal", + "8mdisk": "music_disc_stal", + "stalmdisc": "music_disc_stal", + "blackmdisc": "music_disc_stal", + "blmdisc": "music_disc_wait", + "mdisc8": "music_disc_stal", + "8mdisc": "music_disc_stal", + "stalmcd": "music_disc_stal", + "blackmcd": "music_disc_stal", + "blmcd": "music_disc_wait", + "mcd8": "music_disc_stal", + "8mcd": "music_disc_stal", + "stalrecord": "music_disc_stal", + "blackrecord": "music_disc_stal", + "blrecord": "music_disc_wait", + "record8": "music_disc_stal", + "8record": "music_disc_stal", + "staldisk": "music_disc_stal", + "blackdisk": "music_disc_stal", + "bldisk": "music_disc_wait", + "disk8": "music_disc_stal", + "8disk": "music_disc_stal", + "staldisc": "music_disc_stal", + "blackdisc": "music_disc_stal", + "bldisc": "music_disc_wait", + "disc8": "music_disc_stal", + "8disc": "music_disc_stal", + "stalcd": "music_disc_stal", + "blackcd": "music_disc_stal", + "blcd": "music_disc_wait", + "cd8": "music_disc_stal", + "8cd": "music_disc_stal", + "music_disc_strad": { + "material": "MUSIC_DISC_STRAD" + }, + "musicdiscstrad": "music_disc_strad", + "stradmusicrecord": "music_disc_strad", + "whitemusicrecord": "music_disc_strad", + "whmusicrecord": "music_disc_strad", + "musicrecord9": "music_disc_strad", + "9musicrecord": "music_disc_strad", + "stradmusicdisk": "music_disc_strad", + "whitemusicdisk": "music_disc_strad", + "whmusicdisk": "music_disc_strad", + "musicdisk9": "music_disc_strad", + "9musicdisk": "music_disc_strad", + "stradmusicdisc": "music_disc_strad", + "whitemusicdisc": "music_disc_strad", + "whmusicdisc": "music_disc_strad", + "musicdisc9": "music_disc_strad", + "9musicdisc": "music_disc_strad", + "stradmusiccd": "music_disc_strad", + "whitemusiccd": "music_disc_strad", + "whmusiccd": "music_disc_strad", + "musiccd9": "music_disc_strad", + "9musiccd": "music_disc_strad", + "stradmrecord": "music_disc_strad", + "whitemrecord": "music_disc_strad", + "whmrecord": "music_disc_strad", + "mrecord9": "music_disc_strad", + "9mrecord": "music_disc_strad", + "stradmdisk": "music_disc_strad", + "whitemdisk": "music_disc_strad", + "whmdisk": "music_disc_strad", + "mdisk9": "music_disc_strad", + "9mdisk": "music_disc_strad", + "stradmdisc": "music_disc_strad", + "whitemdisc": "music_disc_strad", + "whmdisc": "music_disc_strad", + "mdisc9": "music_disc_strad", + "9mdisc": "music_disc_strad", + "stradmcd": "music_disc_strad", + "whitemcd": "music_disc_strad", + "whmcd": "music_disc_strad", + "mcd9": "music_disc_strad", + "9mcd": "music_disc_strad", + "stradrecord": "music_disc_strad", + "whiterecord": "music_disc_strad", + "whrecord": "music_disc_strad", + "record9": "music_disc_strad", + "9record": "music_disc_strad", + "straddisk": "music_disc_strad", + "whitedisk": "music_disc_strad", + "whdisk": "music_disc_strad", + "disk9": "music_disc_strad", + "9disk": "music_disc_strad", + "straddisc": "music_disc_strad", + "whitedisc": "music_disc_strad", + "whdisc": "music_disc_strad", + "disc9": "music_disc_strad", + "9disc": "music_disc_strad", + "stradcd": "music_disc_strad", + "whitecd": "music_disc_strad", + "whcd": "music_disc_strad", + "cd9": "music_disc_strad", + "9cd": "music_disc_strad", + "music_disc_wait": { + "material": "MUSIC_DISC_WAIT" + }, + "musicdiscwait": "music_disc_wait", + "waitmusicrecord": "music_disc_wait", + "bluemusicrecord": "music_disc_wait", + "cyanmusicrecord": "music_disc_wait", + "cymusicrecord": "music_disc_wait", + "musicrecord12": "music_disc_wait", + "12musicrecord": "music_disc_wait", + "waitmusicdisk": "music_disc_wait", + "bluemusicdisk": "music_disc_wait", + "cyanmusicdisk": "music_disc_wait", + "cymusicdisk": "music_disc_wait", + "musicdisk12": "music_disc_wait", + "12musicdisk": "music_disc_wait", + "waitmusicdisc": "music_disc_wait", + "bluemusicdisc": "music_disc_wait", + "cyanmusicdisc": "music_disc_wait", + "cymusicdisc": "music_disc_wait", + "musicdisc12": "music_disc_wait", + "12musicdisc": "music_disc_wait", + "waitmusiccd": "music_disc_wait", + "bluemusiccd": "music_disc_wait", + "cyanmusiccd": "music_disc_wait", + "cymusiccd": "music_disc_wait", + "musiccd12": "music_disc_wait", + "12musiccd": "music_disc_wait", + "waitmrecord": "music_disc_wait", + "bluemrecord": "music_disc_wait", + "cyanmrecord": "music_disc_wait", + "cymrecord": "music_disc_wait", + "mrecord12": "music_disc_wait", + "12mrecord": "music_disc_wait", + "waitmdisk": "music_disc_wait", + "bluemdisk": "music_disc_wait", + "cyanmdisk": "music_disc_wait", + "cymdisk": "music_disc_wait", + "mdisk12": "music_disc_wait", + "12mdisk": "music_disc_wait", + "waitmdisc": "music_disc_wait", + "bluemdisc": "music_disc_wait", + "cyanmdisc": "music_disc_wait", + "cymdisc": "music_disc_wait", + "mdisc12": "music_disc_wait", + "12mdisc": "music_disc_wait", + "waitmcd": "music_disc_wait", + "bluemcd": "music_disc_wait", + "cyanmcd": "music_disc_wait", + "cymcd": "music_disc_wait", + "mcd12": "music_disc_wait", + "12mcd": "music_disc_wait", + "waitrecord": "music_disc_wait", + "bluerecord": "music_disc_wait", + "cyanrecord": "music_disc_wait", + "cyrecord": "music_disc_wait", + "record12": "music_disc_wait", + "12record": "music_disc_wait", + "waitdisk": "music_disc_wait", + "bluedisk": "music_disc_wait", + "cyandisk": "music_disc_wait", + "cydisk": "music_disc_wait", + "disk12": "music_disc_wait", + "12disk": "music_disc_wait", + "waitdisc": "music_disc_wait", + "bluedisc": "music_disc_wait", + "cyandisc": "music_disc_wait", + "cydisc": "music_disc_wait", + "disc12": "music_disc_wait", + "12disc": "music_disc_wait", + "waitcd": "music_disc_wait", + "bluecd": "music_disc_wait", + "cyancd": "music_disc_wait", + "cycd": "music_disc_wait", + "cd12": "music_disc_wait", + "12cd": "music_disc_wait", + "music_disc_ward": { + "material": "MUSIC_DISC_WARD" + }, + "musicdiscward": "music_disc_ward", + "wardmusicrecord": "music_disc_ward", + "darkgreenmusicrecord": "music_disc_ward", + "dgreenmusicrecord": "music_disc_ward", + "darkgrmusicrecord": "music_disc_ward", + "dgrmusicrecord": "music_disc_ward", + "musicrecord10": "music_disc_ward", + "10musicrecord": "music_disc_ward", + "wardmusicdisk": "music_disc_ward", + "darkgreenmusicdisk": "music_disc_ward", + "dgreenmusicdisk": "music_disc_ward", + "darkgrmusicdisk": "music_disc_ward", + "dgrmusicdisk": "music_disc_ward", + "musicdisk10": "music_disc_ward", + "10musicdisk": "music_disc_ward", + "wardmusicdisc": "music_disc_ward", + "darkgreenmusicdisc": "music_disc_ward", + "dgreenmusicdisc": "music_disc_ward", + "darkgrmusicdisc": "music_disc_ward", + "dgrmusicdisc": "music_disc_ward", + "musicdisc10": "music_disc_ward", + "10musicdisc": "music_disc_ward", + "wardmusiccd": "music_disc_ward", + "darkgreenmusiccd": "music_disc_ward", + "dgreenmusiccd": "music_disc_ward", + "darkgrmusiccd": "music_disc_ward", + "dgrmusiccd": "music_disc_ward", + "musiccd10": "music_disc_ward", + "10musiccd": "music_disc_ward", + "wardmrecord": "music_disc_ward", + "darkgreenmrecord": "music_disc_ward", + "dgreenmrecord": "music_disc_ward", + "darkgrmrecord": "music_disc_ward", + "dgrmrecord": "music_disc_ward", + "mrecord10": "music_disc_ward", + "10mrecord": "music_disc_ward", + "wardmdisk": "music_disc_ward", + "darkgreenmdisk": "music_disc_ward", + "dgreenmdisk": "music_disc_ward", + "darkgrmdisk": "music_disc_ward", + "dgrmdisk": "music_disc_ward", + "mdisk10": "music_disc_ward", + "10mdisk": "music_disc_ward", + "wardmdisc": "music_disc_ward", + "darkgreenmdisc": "music_disc_ward", + "dgreenmdisc": "music_disc_ward", + "darkgrmdisc": "music_disc_ward", + "dgrmdisc": "music_disc_ward", + "mdisc10": "music_disc_ward", + "10mdisc": "music_disc_ward", + "wardmcd": "music_disc_ward", + "darkgreenmcd": "music_disc_ward", + "dgreenmcd": "music_disc_ward", + "darkgrmcd": "music_disc_ward", + "dgrmcd": "music_disc_ward", + "mcd10": "music_disc_ward", + "10mcd": "music_disc_ward", + "wardrecord": "music_disc_ward", + "darkgreenrecord": "music_disc_ward", + "dgreenrecord": "music_disc_ward", + "darkgrrecord": "music_disc_ward", + "dgrrecord": "music_disc_ward", + "record10": "music_disc_ward", + "10record": "music_disc_ward", + "warddisk": "music_disc_ward", + "darkgreendisk": "music_disc_ward", + "dgreendisk": "music_disc_ward", + "darkgrdisk": "music_disc_ward", + "dgrdisk": "music_disc_ward", + "disk10": "music_disc_ward", + "10disk": "music_disc_ward", + "warddisc": "music_disc_ward", + "darkgreendisc": "music_disc_ward", + "dgreendisc": "music_disc_ward", + "darkgrdisc": "music_disc_ward", + "dgrdisc": "music_disc_ward", + "disc10": "music_disc_ward", + "10disc": "music_disc_ward", + "wardcd": "music_disc_ward", + "darkgreencd": "music_disc_ward", + "dgreencd": "music_disc_ward", + "darkgrcd": "music_disc_ward", + "dgrcd": "music_disc_ward", + "cd10": "music_disc_ward", + "10cd": "music_disc_ward", + "mutton": "mutton", + "rawmutton": "mutton", + "rawsheepmeat": "mutton", + "ramutton": "mutton", + "rasheepmeat": "mutton", + "uncookedmutton": "mutton", + "uncookedsheepmeat": "mutton", + "plainmutton": "mutton", + "plainsheepmeat": "mutton", + "sheepmeat": "mutton", + "mycelium": "mycelium", + "mycel": "mycelium", + "swampgrass": "mycelium", + "sgrass": "mycelium", + "mushroomgrass": "mycelium", + "mushgrass": "mycelium", + "name_tag": { + "material": "NAME_TAG" + }, + "nametag": "name_tag", + "nautilus_shell": { + "material": "NAUTILUS_SHELL" + }, + "nautilusshell": "nautilus_shell", + "netherrack": "netherrack", + "nether_brick": { + "material": "NETHER_BRICK" + }, + "netherbrick": "nether_brick", + "nether_bricks": { + "material": "NETHER_BRICKS" + }, + "netherbricks": "nether_bricks", + "nether_brick_fence": { + "material": "NETHER_BRICK_FENCE" + }, + "netherbrickfence": "nether_brick_fence", + "nether_brick_slab": { + "material": "NETHER_BRICK_SLAB" + }, + "netherbrickslab": "nether_brick_slab", + "nether_brick_stairs": { + "material": "NETHER_BRICK_STAIRS" + }, + "netherbrickstairs": "nether_brick_stairs", + "nether_brick_wall": { + "material": "NETHER_BRICK_WALL" + }, + "netherbrickwall": "nether_brick_wall", + "nether_portal": { + "material": "NETHER_PORTAL", + "unspawnable": true + }, + "netherportal": "nether_portal", + "nether_quartz_ore": { + "material": "NETHER_QUARTZ_ORE" + }, + "netherquartzore": "nether_quartz_ore", + "netherquartzo": "nether_quartz_ore", + "orenetherquartz": "nether_quartz_ore", + "onetherquartz": "nether_quartz_ore", + "hellquartzore": "nether_quartz_ore", + "hellquartzo": "nether_quartz_ore", + "orehellquartz": "nether_quartz_ore", + "ohellquartz": "nether_quartz_ore", + "deathquartzore": "nether_quartz_ore", + "deathquartzo": "nether_quartz_ore", + "oredeathquartz": "nether_quartz_ore", + "odeathquartz": "nether_quartz_ore", + "nquartzore": "nether_quartz_ore", + "nquartzo": "nether_quartz_ore", + "orenquartz": "nether_quartz_ore", + "onquartz": "nether_quartz_ore", + "hquartzore": "nether_quartz_ore", + "hquartzo": "nether_quartz_ore", + "orehquartz": "nether_quartz_ore", + "ohquartz": "nether_quartz_ore", + "dquartzore": "nether_quartz_ore", + "dquartzo": "nether_quartz_ore", + "oredquartz": "nether_quartz_ore", + "odquartz": "nether_quartz_ore", + "quartzore": "nether_quartz_ore", + "quartzo": "nether_quartz_ore", + "orequartz": "nether_quartz_ore", + "oquartz": "nether_quartz_ore", + "netherqore": "nether_quartz_ore", + "netherqo": "nether_quartz_ore", + "orenetherq": "nether_quartz_ore", + "onetherq": "nether_quartz_ore", + "hellqore": "nether_quartz_ore", + "hellqo": "nether_quartz_ore", + "orehellq": "nether_quartz_ore", + "ohellq": "nether_quartz_ore", + "deathqore": "nether_quartz_ore", + "deathqo": "nether_quartz_ore", + "oredeathq": "nether_quartz_ore", + "odeathq": "nether_quartz_ore", + "nqore": "nether_quartz_ore", + "nqo": "nether_quartz_ore", + "orenq": "nether_quartz_ore", + "onq": "nether_quartz_ore", + "hqore": "nether_quartz_ore", + "hqo": "nether_quartz_ore", + "orehq": "nether_quartz_ore", + "ohq": "nether_quartz_ore", + "dqore": "nether_quartz_ore", + "dqo": "nether_quartz_ore", + "oredq": "nether_quartz_ore", + "odq": "nether_quartz_ore", + "qore": "nether_quartz_ore", + "qo": "nether_quartz_ore", + "oreq": "nether_quartz_ore", + "oq": "nether_quartz_ore", + "nether_star": { + "material": "NETHER_STAR" + }, + "netherstar": "nether_star", + "nether_wart": { + "material": "NETHER_WART" + }, + "netherwart": "nether_wart", + "nether_wart_block": { + "material": "NETHER_WART_BLOCK" + }, + "netherwartblock": "nether_wart_block", + "note_block": { + "material": "NOTE_BLOCK" + }, + "noteblock": "note_block", + "musicblock": "note_block", + "nblock": "note_block", + "mblock": "note_block", + "oak_boat": { + "material": "OAK_BOAT" + }, + "oakboat": "oak_boat", + "boat": "oak_boat", + "oboat": "oak_boat", + "oak_button": { + "material": "OAK_BUTTON" + }, + "oakbutton": "oak_button", + "oak_door": { + "material": "OAK_DOOR" + }, + "oakdoor": "oak_door", + "oak_fence": { + "material": "OAK_FENCE" + }, + "oakfence": "oak_fence", + "fence": "oak_fence", + "ofence": "oak_fence", + "oak_fence_gate": { + "material": "OAK_FENCE_GATE" + }, + "oakfencegate": "oak_fence_gate", + "fencegate": "oak_fence_gate", + "gate": "oak_fence_gate", + "oakgate": "oak_fence_gate", + "ofencegate": "oak_fence_gate", + "ogate": "oak_fence_gate", + "oak_leaves": { + "material": "OAK_LEAVES" + }, + "oakleaves": "oak_leaves", + "treeleaves": "oak_leaves", + "logleaves": "oak_leaves", + "trunkleaves": "oak_leaves", + "woodleaves": "oak_leaves", + "leaves": "oak_leaves", + "treeleaf": "oak_leaves", + "logleaf": "oak_leaves", + "trunkleaf": "oak_leaves", + "woodleaf": "oak_leaves", + "leaf": "oak_leaves", + "treeleave": "oak_leaves", + "logleave": "oak_leaves", + "trunkleave": "oak_leaves", + "woodleave": "oak_leaves", + "leave": "oak_leaves", + "oaktreeleaves": "oak_leaves", + "oaklogleaves": "oak_leaves", + "oaktrunkleaves": "oak_leaves", + "oakwoodleaves": "oak_leaves", + "oaktreeleaf": "oak_leaves", + "oaklogleaf": "oak_leaves", + "oaktrunkleaf": "oak_leaves", + "oakwoodleaf": "oak_leaves", + "oakleaf": "oak_leaves", + "oaktreeleave": "oak_leaves", + "oaklogleave": "oak_leaves", + "oaktrunkleave": "oak_leaves", + "oakwoodleave": "oak_leaves", + "oakleave": "oak_leaves", + "otreeleaves": "oak_leaves", + "ologleaves": "oak_leaves", + "otrunkleaves": "oak_leaves", + "owoodleaves": "oak_leaves", + "oleaves": "oak_leaves", + "otreeleaf": "oak_leaves", + "ologleaf": "oak_leaves", + "otrunkleaf": "oak_leaves", + "owoodleaf": "oak_leaves", + "oleaf": "oak_leaves", + "otreeleave": "oak_leaves", + "ologleave": "oak_leaves", + "otrunkleave": "oak_leaves", + "owoodleave": "oak_leaves", + "oleave": "oak_leaves", + "oak_log": { + "material": "OAK_LOG" + }, + "oaklog": "oak_log", + "log": "oak_log", + "trunk": "oak_log", + "tree": "oak_log", + "oak": "oak_log", + "logoak": "oak_log", + "oaktrunk": "oak_log", + "oaktree": "oak_log", + "o": "oak_log", + "logo": "oak_log", + "otrunk": "oak_log", + "olog": "oak_log", + "otree": "oak_log", + "oak_planks": { + "material": "OAK_PLANKS" + }, + "oakplanks": "oak_planks", + "woodenplank": "oak_planks", + "woodplank": "oak_planks", + "plankwooden": "oak_planks", + "plankwood": "oak_planks", + "plankw": "oak_planks", + "plank": "oak_planks", + "oakwoodenplank": "oak_planks", + "oakwoodplank": "oak_planks", + "oakwplank": "oak_planks", + "oakplankwooden": "oak_planks", + "oakplankwood": "oak_planks", + "oakplankw": "oak_planks", + "oakplank": "oak_planks", + "owoodenplank": "oak_planks", + "owoodplank": "oak_planks", + "owplank": "oak_planks", + "oplankwooden": "oak_planks", + "oplankwood": "oak_planks", + "oplankw": "oak_planks", + "oplank": "oak_planks", + "oak_pressure_plate": { + "material": "OAK_PRESSURE_PLATE" + }, + "oakpressureplate": "oak_pressure_plate", + "pressureplate": "oak_pressure_plate", + "pressplate": "oak_pressure_plate", + "pplate": "spruce_pressure_plate", + "plate": "oak_pressure_plate", + "oakpressplate": "oak_pressure_plate", + "oakpplate": "oak_pressure_plate", + "oakplate": "oak_pressure_plate", + "opressureplate": "oak_pressure_plate", + "opressplate": "oak_pressure_plate", + "opplate": "oak_pressure_plate", + "oplate": "oak_pressure_plate", + "oak_sapling": { + "material": "OAK_SAPLING" + }, + "oaksapling": "oak_sapling", + "sapling": "oak_sapling", + "treesapling": "oak_sapling", + "logsapling": "oak_sapling", + "trunksapling": "oak_sapling", + "woodsapling": "oak_sapling", + "oaktreesapling": "oak_sapling", + "oaklogsapling": "oak_sapling", + "oaktrunksapling": "oak_sapling", + "oakwoodsapling": "oak_sapling", + "osapling": "oak_sapling", + "otreesapling": "oak_sapling", + "ologsapling": "oak_sapling", + "otrunksapling": "oak_sapling", + "owoodsapling": "oak_sapling", + "oak_sign": { + "material": "OAK_SIGN", + "fallbacks": [ + "SIGN" + ] + }, + "oaksign": "oak_sign", + "oak_slab": { + "material": "OAK_SLAB" + }, + "oakslab": "oak_slab", + "woodenstep": "petrified_oak_slab", + "woodstep": "petrified_oak_slab", + "step": "petrified_oak_slab", + "woodenslab": "petrified_oak_slab", + "woodslab": "petrified_oak_slab", + "wslab": "petrified_oak_slab", + "woodenhalfblock": "petrified_oak_slab", + "woodhalfblock": "petrified_oak_slab", + "halfblock": "petrified_oak_slab", + "oakwoodenstep": "petrified_oak_slab", + "oakwoodstep": "petrified_oak_slab", + "oakwstep": "petrified_oak_slab", + "oakstep": "petrified_oak_slab", + "oakwoodenslab": "petrified_oak_slab", + "oakwoodslab": "petrified_oak_slab", + "oakwslab": "petrified_oak_slab", + "oakwoodenhalfblock": "petrified_oak_slab", + "oakwoodhalfblock": "petrified_oak_slab", + "oakwhalfblock": "petrified_oak_slab", + "oakhalfblock": "petrified_oak_slab", + "owoodenstep": "petrified_oak_slab", + "owoodstep": "petrified_oak_slab", + "owstep": "petrified_oak_slab", + "ostep": "petrified_oak_slab", + "owoodenslab": "petrified_oak_slab", + "owoodslab": "petrified_oak_slab", + "owslab": "petrified_oak_slab", + "owoodenhalfblock": "petrified_oak_slab", + "owoodhalfblock": "petrified_oak_slab", + "owhalfblock": "petrified_oak_slab", + "ohalfblock": "petrified_oak_slab", + "oak_stairs": { + "material": "OAK_STAIRS" + }, + "oakstairs": "oak_stairs", + "woodenstairs": "oak_stairs", + "woodstairs": "oak_stairs", + "wstairs": "oak_stairs", + "woodenstair": "oak_stairs", + "woodstair": "oak_stairs", + "stair": "oak_stairs", + "oakwoodenstairs": "oak_stairs", + "oakwoodstairs": "oak_stairs", + "oakwstairs": "oak_stairs", + "oakwoodenstair": "oak_stairs", + "oakwoodstair": "oak_stairs", + "oakwstair": "oak_stairs", + "oakstair": "oak_stairs", + "owoodenstairs": "oak_stairs", + "owoodstairs": "oak_stairs", + "owstairs": "oak_stairs", + "owoodenstair": "oak_stairs", + "owoodstair": "oak_stairs", + "owstair": "oak_stairs", + "ostair": "oak_stairs", + "oak_trapdoor": { + "material": "OAK_TRAPDOOR" + }, + "oaktrapdoor": "oak_trapdoor", + "trapdoor": "oak_trapdoor", + "doortrap": "oak_trapdoor", + "hatch": "oak_trapdoor", + "tdoor": "oak_trapdoor", + "doort": "oak_trapdoor", + "trapd": "oak_trapdoor", + "dtrap": "oak_trapdoor", + "oakdoortrap": "oak_trapdoor", + "oakhatch": "oak_trapdoor", + "oaktdoor": "oak_trapdoor", + "oakdoort": "oak_trapdoor", + "oaktrapd": "oak_trapdoor", + "oakdtrap": "oak_trapdoor", + "otrapdoor": "oak_trapdoor", + "odoortrap": "oak_trapdoor", + "ohatch": "oak_trapdoor", + "otdoor": "oak_trapdoor", + "odoort": "oak_trapdoor", + "otrapd": "oak_trapdoor", + "odtrap": "oak_trapdoor", + "oak_wall_sign": { + "material": "OAK_WALL_SIGN", + "unspawnable": true + }, + "oakwallsign": "oak_wall_sign", + "oak_wood": { + "material": "OAK_WOOD" + }, + "oakwood": "oak_wood", + "wood": "oak_wood", + "logall": "oak_wood", + "trunkall": "oak_wood", + "treeall": "oak_wood", + "oaklogall": "oak_wood", + "oaktrunkall": "oak_wood", + "oaktreeall": "oak_wood", + "owood": "oak_wood", + "ologall": "oak_wood", + "otrunkall": "oak_wood", + "otreeall": "oak_wood", + "observer": "observer", + "obsidian": "obsidian", + "obsi": "obsidian", + "obby": "obsidian", + "ocelot_spawn_egg": { + "material": "OCELOT_SPAWN_EGG" + }, + "ocelotspawnegg": "ocelot_spawn_egg", + "ocelotegg": "ocelot_spawn_egg", + "eggocelot": "ocelot_spawn_egg", + "spawneggocelot": "ocelot_spawn_egg", + "ocelotspawn": "ocelot_spawn_egg", + "spawnocelot": "ocelot_spawn_egg", + "categg": "ocelot_spawn_egg", + "eggcat": "ocelot_spawn_egg", + "spawneggcat": "ocelot_spawn_egg", + "catspawn": "ocelot_spawn_egg", + "spawncat": "ocelot_spawn_egg", + "orange_banner": { + "material": "ORANGE_BANNER" + }, + "orangebanner": "orange_banner", + "ostandingbanner": "orange_banner", + "obanner": "orange_banner", + "orangestandingbanner": "orange_banner", + "orange_bed": { + "material": "ORANGE_BED" + }, + "orangebed": "orange_bed", + "obed": "orange_bed", + "orange_carpet": { + "material": "ORANGE_CARPET" + }, + "orangecarpet": "orange_carpet", + "ocarpet": "orange_carpet", + "ofloor": "orange_carpet", + "orangefloor": "orange_carpet", + "orange_concrete": { + "material": "ORANGE_CONCRETE" + }, + "orangeconcrete": "orange_concrete", + "oconcrete": "orange_concrete", + "orange_concrete_powder": { + "material": "ORANGE_CONCRETE_POWDER" + }, + "orangeconcretepowder": "orange_concrete_powder", + "oconcretepowder": "orange_concrete_powder", + "oconcretesand": "orange_concrete_powder", + "ocpowder": "orange_concrete_powder", + "ocdust": "orange_concrete_powder", + "ocp": "orange_concrete_powder", + "orangeconcretesand": "orange_concrete_powder", + "orangecpowder": "orange_concrete_powder", + "orangecdust": "orange_concrete_powder", + "orangecp": "orange_concrete_powder", + "orange_dye": { + "material": "ORANGE_DYE" + }, + "orangedye": "orange_dye", + "orange_glazed_terracotta": { + "material": "ORANGE_GLAZED_TERRACOTTA" + }, + "orangeglazedterracotta": "orange_glazed_terracotta", + "oglazedtcota": "orange_glazed_terracotta", + "oglazedterra": "orange_glazed_terracotta", + "oglazedterracotta": "orange_glazed_terracotta", + "oglazedterracota": "orange_glazed_terracotta", + "orangeglazedtcota": "orange_glazed_terracotta", + "orangeglazedterra": "orange_glazed_terracotta", + "orangeglazedterracota": "orange_glazed_terracotta", + "orange_shulker_box": { + "material": "ORANGE_SHULKER_BOX" + }, + "orangeshulkerbox": "orange_shulker_box", + "oshulkerbox": "orange_shulker_box", + "ochest": "orange_shulker_box", + "orangechest": "orange_shulker_box", + "orange_stained_glass": { + "material": "ORANGE_STAINED_GLASS" + }, + "orangestainedglass": "orange_stained_glass", + "oglass": "orange_stained_glass", + "osglass": "orange_stained_glass", + "ostainedglass": "orange_stained_glass", + "orangeglass": "orange_stained_glass", + "orangesglass": "orange_stained_glass", + "orange_stained_glass_pane": { + "material": "ORANGE_STAINED_GLASS_PANE" + }, + "orangestainedglasspane": "orange_stained_glass_pane", + "oglasspane": "orange_stained_glass_pane", + "osglasspane": "orange_stained_glass_pane", + "ostainedglasspane": "orange_stained_glass_pane", + "ogpane": "orange_stained_glass_pane", + "orangeglasspane": "orange_stained_glass_pane", + "orangesglasspane": "orange_stained_glass_pane", + "orangegpane": "orange_stained_glass_pane", + "orange_terracotta": { + "material": "ORANGE_TERRACOTTA" + }, + "orangeterracotta": "orange_terracotta", + "oclay": "orange_terracotta", + "osclay": "orange_terracotta", + "ostainedclay": "orange_terracotta", + "oterra": "orange_terracotta", + "otcota": "orange_terracotta", + "oterracota": "orange_terracotta", + "oterracotta": "orange_terracotta", + "orangeclay": "orange_terracotta", + "orangesclay": "orange_terracotta", + "orangestainedclay": "orange_terracotta", + "orangeterra": "orange_terracotta", + "orangetcota": "orange_terracotta", + "orangeterracota": "orange_terracotta", + "orange_tulip": { + "material": "ORANGE_TULIP" + }, + "orangetulip": "orange_tulip", + "tuliporange": "orange_tulip", + "otulip": "orange_tulip", + "tulipo": "orange_tulip", + "orange_wall_banner": { + "material": "ORANGE_WALL_BANNER", + "unspawnable": true + }, + "orangewallbanner": "orange_wall_banner", + "orange_wool": { + "material": "ORANGE_WOOL" + }, + "orangewool": "orange_wool", + "owool": "orange_wool", + "ocloth": "orange_wool", + "ocotton": "orange_wool", + "orangecloth": "orange_wool", + "orangecotton": "orange_wool", + "oxeye_daisy": { + "material": "OXEYE_DAISY" + }, + "oxeyedaisy": "oxeye_daisy", + "oxeye": "oxeye_daisy", + "daisy": "oxeye_daisy", + "daisyoxeye": "oxeye_daisy", + "moondaisy": "oxeye_daisy", + "daisymoon": "oxeye_daisy", + "lightgrayoxeye": "oxeye_daisy", + "lgrayoxeye": "oxeye_daisy", + "lightgreyoxeye": "oxeye_daisy", + "lgreyoxeye": "oxeye_daisy", + "packed_ice": { + "material": "PACKED_ICE" + }, + "packedice": "packed_ice", + "painting": "painting", + "panda_spawn_egg": { + "material": "PANDA_SPAWN_EGG" + }, + "pandaspawnegg": "panda_spawn_egg", + "paper": "paper", + "parrot_spawn_egg": { + "material": "PARROT_SPAWN_EGG" + }, + "parrotspawnegg": "parrot_spawn_egg", + "parrotegg": "parrot_spawn_egg", + "eggparrot": "parrot_spawn_egg", + "spawneggparrot": "parrot_spawn_egg", + "parrotspawn": "parrot_spawn_egg", + "spawnparrot": "parrot_spawn_egg", + "peony": "peony", + "petrified_oak_slab": { + "material": "PETRIFIED_OAK_SLAB" + }, + "petrifiedoakslab": "petrified_oak_slab", + "phantom_membrane": { + "material": "PHANTOM_MEMBRANE" + }, + "phantommembrane": "phantom_membrane", + "phantom_spawn_egg": { + "material": "PHANTOM_SPAWN_EGG" + }, + "phantomspawnegg": "phantom_spawn_egg", + "phantomegg": "phantom_spawn_egg", + "eggphantom": "phantom_spawn_egg", + "spawneggphantom": "phantom_spawn_egg", + "phantomspawn": "phantom_spawn_egg", + "spawnphantom": "phantom_spawn_egg", + "pig_spawn_egg": { + "material": "PIG_SPAWN_EGG" + }, + "pigspawnegg": "pig_spawn_egg", + "pigegg": "pig_spawn_egg", + "eggpig": "pig_spawn_egg", + "spawneggpig": "pig_spawn_egg", + "pigspawn": "pig_spawn_egg", + "spawnpig": "pig_spawn_egg", + "spawnegg": "pig_spawn_egg", + "spawn": "pig_spawn_egg", + "pillager_spawn_egg": { + "material": "PILLAGER_SPAWN_EGG" + }, + "pillagerspawnegg": "pillager_spawn_egg", + "pink_banner": { + "material": "PINK_BANNER" + }, + "pinkbanner": "pink_banner", + "pistandingbanner": "pink_banner", + "pibanner": "pink_banner", + "pinkstandingbanner": "pink_banner", + "pink_bed": { + "material": "PINK_BED" + }, + "pinkbed": "pink_bed", + "pibed": "pink_bed", + "pink_carpet": { + "material": "PINK_CARPET" + }, + "pinkcarpet": "pink_carpet", + "picarpet": "pink_carpet", + "pifloor": "pink_carpet", + "pinkfloor": "pink_carpet", + "pink_concrete": { + "material": "PINK_CONCRETE" + }, + "pinkconcrete": "pink_concrete", + "piconcrete": "pink_concrete", + "pink_concrete_powder": { + "material": "PINK_CONCRETE_POWDER" + }, + "pinkconcretepowder": "pink_concrete_powder", + "piconcretepowder": "pink_concrete_powder", + "piconcretesand": "pink_concrete_powder", + "picpowder": "pink_concrete_powder", + "picdust": "pink_concrete_powder", + "picp": "pink_concrete_powder", + "pinkconcretesand": "pink_concrete_powder", + "pinkcpowder": "pink_concrete_powder", + "pinkcdust": "pink_concrete_powder", + "pinkcp": "pink_concrete_powder", + "pink_dye": { + "material": "PINK_DYE" + }, + "pinkdye": "pink_dye", + "pink_glazed_terracotta": { + "material": "PINK_GLAZED_TERRACOTTA" + }, + "pinkglazedterracotta": "pink_glazed_terracotta", + "piglazedtcota": "pink_glazed_terracotta", + "piglazedterra": "pink_glazed_terracotta", + "piglazedterracotta": "pink_glazed_terracotta", + "piglazedterracota": "pink_glazed_terracotta", + "pinkglazedtcota": "pink_glazed_terracotta", + "pinkglazedterra": "pink_glazed_terracotta", + "pinkglazedterracota": "pink_glazed_terracotta", + "pink_shulker_box": { + "material": "PINK_SHULKER_BOX" + }, + "pinkshulkerbox": "pink_shulker_box", + "pishulkerbox": "pink_shulker_box", + "pichest": "pink_shulker_box", + "pinkchest": "pink_shulker_box", + "pink_stained_glass": { + "material": "PINK_STAINED_GLASS" + }, + "pinkstainedglass": "pink_stained_glass", + "piglass": "pink_stained_glass", + "pisglass": "pink_stained_glass", + "pistainedglass": "pink_stained_glass", + "pinkglass": "pink_stained_glass", + "pinksglass": "pink_stained_glass", + "pink_stained_glass_pane": { + "material": "PINK_STAINED_GLASS_PANE" + }, + "pinkstainedglasspane": "pink_stained_glass_pane", + "piglasspane": "pink_stained_glass_pane", + "pisglasspane": "pink_stained_glass_pane", + "pistainedglasspane": "pink_stained_glass_pane", + "pigpane": "pink_stained_glass_pane", + "pinkglasspane": "pink_stained_glass_pane", + "pinksglasspane": "pink_stained_glass_pane", + "pinkgpane": "pink_stained_glass_pane", + "pink_terracotta": { + "material": "PINK_TERRACOTTA" + }, + "pinkterracotta": "pink_terracotta", + "piclay": "pink_terracotta", + "pisclay": "pink_terracotta", + "pistainedclay": "pink_terracotta", + "piterra": "pink_terracotta", + "pitcota": "pink_terracotta", + "piterracota": "pink_terracotta", + "piterracotta": "pink_terracotta", + "pinkclay": "pink_terracotta", + "pinksclay": "pink_terracotta", + "pinkstainedclay": "pink_terracotta", + "pinkterra": "pink_terracotta", + "pinktcota": "pink_terracotta", + "pinkterracota": "pink_terracotta", + "pink_tulip": { + "material": "PINK_TULIP" + }, + "pinktulip": "pink_tulip", + "tulippink": "pink_tulip", + "ptulip": "pink_tulip", + "tulipp": "pink_tulip", + "pink_wall_banner": { + "material": "PINK_WALL_BANNER", + "unspawnable": true + }, + "pinkwallbanner": "pink_wall_banner", + "pink_wool": { + "material": "PINK_WOOL" + }, + "pinkwool": "pink_wool", + "piwool": "pink_wool", + "picloth": "pink_wool", + "picotton": "pink_wool", + "pinkcloth": "pink_wool", + "pinkcotton": "pink_wool", + "piston": "piston", + "piston_head": { + "material": "PISTON_HEAD", + "unspawnable": true + }, + "pistonhead": "piston_head", + "player_head": { + "material": "PLAYER_HEAD" + }, + "playerhead": "player_head", + "head": "player_head", + "skull": "player_head", + "steve": "player_head", + "mask": "player_head", + "headmask": "player_head", + "playerskull": "player_head", + "headplayer": "player_head", + "steveplayer": "player_head", + "playermask": "player_head", + "playerheadmask": "player_head", + "phead": "player_head", + "pskull": "player_head", + "headp": "player_head", + "stevep": "player_head", + "pmask": "player_head", + "pheadmask": "player_head", + "stevehead": "player_head", + "steveskull": "player_head", + "headsteve": "player_head", + "stevesteve": "player_head", + "stevemask": "player_head", + "steveheadmask": "player_head", + "humanhead": "player_head", + "humanskull": "player_head", + "headhuman": "player_head", + "stevehuman": "player_head", + "humanmask": "player_head", + "humanheadmask": "player_head", + "player_wall_head": { + "material": "PLAYER_WALL_HEAD", + "unspawnable": true + }, + "playerwallhead": "player_wall_head", + "podzol": "podzol", + "poisonous_potato": { + "material": "POISONOUS_POTATO" + }, + "poisonouspotato": "poisonous_potato", + "polar_bear_spawn_egg": { + "material": "POLAR_BEAR_SPAWN_EGG" + }, + "polarbearspawnegg": "polar_bear_spawn_egg", + "polarbearegg": "polar_bear_spawn_egg", + "eggpolarbear": "polar_bear_spawn_egg", + "spawneggpolarbear": "polar_bear_spawn_egg", + "polarbearspawn": "polar_bear_spawn_egg", + "spawnpolarbear": "polar_bear_spawn_egg", + "polaregg": "polar_bear_spawn_egg", + "eggpolar": "polar_bear_spawn_egg", + "polarspawnegg": "polar_bear_spawn_egg", + "spawneggpolar": "polar_bear_spawn_egg", + "polarspawn": "polar_bear_spawn_egg", + "spawnpolar": "polar_bear_spawn_egg", + "bearegg": "polar_bear_spawn_egg", + "eggbear": "polar_bear_spawn_egg", + "bearspawnegg": "polar_bear_spawn_egg", + "spawneggbear": "polar_bear_spawn_egg", + "bearspawn": "polar_bear_spawn_egg", + "spawnbear": "polar_bear_spawn_egg", + "polished_andesite": { + "material": "POLISHED_ANDESITE" + }, + "polishedandesite": "polished_andesite", + "pandesite": "polished_andesite", + "pastone": "polished_andesite", + "polishedastone": "polished_andesite", + "polished_andesite_slab": { + "material": "POLISHED_ANDESITE_SLAB" + }, + "polishedandesiteslab": "polished_andesite_slab", + "polished_andesite_stairs": { + "material": "POLISHED_ANDESITE_STAIRS" + }, + "polishedandesitestairs": "polished_andesite_stairs", + "polished_diorite": { + "material": "POLISHED_DIORITE" + }, + "polisheddiorite": "polished_diorite", + "pdiorite": "polished_diorite", + "pdstone": "polished_diorite", + "polisheddstone": "polished_diorite", + "polished_diorite_slab": { + "material": "POLISHED_DIORITE_SLAB" + }, + "polisheddioriteslab": "polished_diorite_slab", + "polished_diorite_stairs": { + "material": "POLISHED_DIORITE_STAIRS" + }, + "polisheddioritestairs": "polished_diorite_stairs", + "polished_granite": { + "material": "POLISHED_GRANITE" + }, + "polishedgranite": "polished_granite", + "pgranite": "polished_granite", + "pgstone": "polished_granite", + "polishedgstone": "polished_granite", + "polished_granite_slab": { + "material": "POLISHED_GRANITE_SLAB" + }, + "polishedgraniteslab": "polished_granite_slab", + "polished_granite_stairs": { + "material": "POLISHED_GRANITE_STAIRS" + }, + "polishedgranitestairs": "polished_granite_stairs", + "popped_chorus_fruit": { + "material": "POPPED_CHORUS_FRUIT" + }, + "poppedchorusfruit": "popped_chorus_fruit", + "pchorus": "popped_chorus_fruit", + "poppedchorus": "popped_chorus_fruit", + "popchorus": "popped_chorus_fruit", + "poppy": "poppy", + "rose": "poppy", + "redrose": "poppy", + "rrose": "poppy", + "redflower": "poppy", + "rflower": "poppy", + "redpoppy": "poppy", + "porkchop": "porkchop", + "rawpork": "porkchop", + "rawporkchop": "porkchop", + "rapork": "porkchop", + "raporkchop": "porkchop", + "uncookedpork": "porkchop", + "uncookedporkchop": "porkchop", + "plainpork": "porkchop", + "plainporkchop": "porkchop", + "pork": "porkchop", + "potato": "potato", + "potatoes": { + "material": "POTATOES", + "unspawnable": true + }, + "potion": "potion", + "potted_acacia_sapling": { + "material": "POTTED_ACACIA_SAPLING", + "unspawnable": true + }, + "pottedacaciasapling": "potted_acacia_sapling", + "potted_allium": { + "material": "POTTED_ALLIUM", + "unspawnable": true + }, + "pottedallium": "potted_allium", + "potted_azure_bluet": { + "material": "POTTED_AZURE_BLUET", + "unspawnable": true + }, + "pottedazurebluet": "potted_azure_bluet", + "potted_bamboo": { + "material": "POTTED_BAMBOO", + "unspawnable": true + }, + "pottedbamboo": "potted_bamboo", + "potted_birch_sapling": { + "material": "POTTED_BIRCH_SAPLING", + "unspawnable": true + }, + "pottedbirchsapling": "potted_birch_sapling", + "potted_blue_orchid": { + "material": "POTTED_BLUE_ORCHID", + "unspawnable": true + }, + "pottedblueorchid": "potted_blue_orchid", + "potted_brown_mushroom": { + "material": "POTTED_BROWN_MUSHROOM", + "unspawnable": true + }, + "pottedbrownmushroom": "potted_brown_mushroom", + "potted_cactus": { + "material": "POTTED_CACTUS", + "unspawnable": true + }, + "pottedcactus": "potted_cactus", + "potted_cornflower": { + "material": "POTTED_CORNFLOWER", + "unspawnable": true + }, + "pottedcornflower": "potted_cornflower", + "potted_dandelion": { + "material": "POTTED_DANDELION", + "unspawnable": true + }, + "potteddandelion": "potted_dandelion", + "potted_dark_oak_sapling": { + "material": "POTTED_DARK_OAK_SAPLING", + "unspawnable": true + }, + "potteddarkoaksapling": "potted_dark_oak_sapling", + "potted_dead_bush": { + "material": "POTTED_DEAD_BUSH", + "unspawnable": true + }, + "potteddeadbush": "potted_dead_bush", + "potted_fern": { + "material": "POTTED_FERN", + "unspawnable": true + }, + "pottedfern": "potted_fern", + "potted_jungle_sapling": { + "material": "POTTED_JUNGLE_SAPLING", + "unspawnable": true + }, + "pottedjunglesapling": "potted_jungle_sapling", + "potted_lily_of_the_valley": { + "material": "POTTED_LILY_OF_THE_VALLEY", + "unspawnable": true + }, + "pottedlilyofthevalley": "potted_lily_of_the_valley", + "potted_oak_sapling": { + "material": "POTTED_OAK_SAPLING", + "unspawnable": true + }, + "pottedoaksapling": "potted_oak_sapling", + "potted_orange_tulip": { + "material": "POTTED_ORANGE_TULIP", + "unspawnable": true + }, + "pottedorangetulip": "potted_orange_tulip", + "potted_oxeye_daisy": { + "material": "POTTED_OXEYE_DAISY", + "unspawnable": true + }, + "pottedoxeyedaisy": "potted_oxeye_daisy", + "potted_pink_tulip": { + "material": "POTTED_PINK_TULIP", + "unspawnable": true + }, + "pottedpinktulip": "potted_pink_tulip", + "potted_poppy": { + "material": "POTTED_POPPY", + "unspawnable": true + }, + "pottedpoppy": "potted_poppy", + "potted_red_mushroom": { + "material": "POTTED_RED_MUSHROOM", + "unspawnable": true + }, + "pottedredmushroom": "potted_red_mushroom", + "potted_red_tulip": { + "material": "POTTED_RED_TULIP", + "unspawnable": true + }, + "pottedredtulip": "potted_red_tulip", + "potted_spruce_sapling": { + "material": "POTTED_SPRUCE_SAPLING", + "unspawnable": true + }, + "pottedsprucesapling": "potted_spruce_sapling", + "potted_white_tulip": { + "material": "POTTED_WHITE_TULIP", + "unspawnable": true + }, + "pottedwhitetulip": "potted_white_tulip", + "potted_wither_rose": { + "material": "POTTED_WITHER_ROSE", + "unspawnable": true + }, + "pottedwitherrose": "potted_wither_rose", + "powered_rail": { + "material": "POWERED_RAIL" + }, + "poweredrail": "powered_rail", + "poweredrails": "powered_rail", + "poweredtrack": "powered_rail", + "boosterrails": "powered_rail", + "boosterrail": "powered_rail", + "boostertrack": "powered_rail", + "powerrails": "powered_rail", + "powerrail": "powered_rail", + "powertrack": "powered_rail", + "boostrails": "powered_rail", + "boostrail": "powered_rail", + "boosttrack": "powered_rail", + "prails": "powered_rail", + "prail": "powered_rail", + "ptrack": "powered_rail", + "brails": "powered_rail", + "brail": "powered_rail", + "btrack": "powered_rail", + "prismarine": "prismarine", + "prismarine_bricks": { + "material": "PRISMARINE_BRICKS" + }, + "prismarinebricks": "prismarine_bricks", + "prismarinebrick": "prismarine_bricks", + "prismarinebr": "prismarine_bricks", + "prisbricks": "prismarine_bricks", + "prisbrick": "prismarine_bricks", + "prisbr": "prismarine_bricks", + "seabricks": "prismarine_bricks", + "seabrick": "prismarine_bricks", + "seabr": "prismarine_bricks", + "prismarine_brick_slab": { + "material": "PRISMARINE_BRICK_SLAB" + }, + "prismarinebrickslab": "prismarine_brick_slab", + "prismarinebricksslab": "prismarine_brick_slab", + "prismarinebrickssl": "prismarine_brick_slab", + "prismarinebricksl": "prismarine_brick_slab", + "prismarinebrslab": "prismarine_brick_slab", + "prismarinebrsl": "prismarine_brick_slab", + "prisbricksslab": "prismarine_brick_slab", + "prisbrickssl": "prismarine_brick_slab", + "prisbrickslab": "prismarine_brick_slab", + "prisbricksl": "prismarine_brick_slab", + "prisbrslab": "prismarine_brick_slab", + "prisbrsl": "prismarine_brick_slab", + "seabricksslab": "prismarine_brick_slab", + "seabrickssl": "prismarine_brick_slab", + "seabrickslab": "prismarine_brick_slab", + "seabricksl": "prismarine_brick_slab", + "seabrslab": "prismarine_brick_slab", + "seabrsl": "prismarine_brick_slab", + "prismarine_brick_stairs": { + "material": "PRISMARINE_BRICK_STAIRS" + }, + "prismarinebrickstairs": "prismarine_brick_stairs", + "prismarinebricksstairs": "prismarine_brick_stairs", + "prismarinebricksstair": "prismarine_brick_stairs", + "prismarinebricksst": "prismarine_brick_stairs", + "prismarinebrickstair": "prismarine_brick_stairs", + "prismarinebrickst": "prismarine_brick_stairs", + "prismarinebrstairs": "prismarine_brick_stairs", + "prismarinebrstair": "prismarine_brick_stairs", + "prismarinebrst": "prismarine_brick_stairs", + "prisbricksstairs": "prismarine_brick_stairs", + "prisbricksstair": "prismarine_brick_stairs", + "prisbricksst": "prismarine_brick_stairs", + "prisbrickstairs": "prismarine_brick_stairs", + "prisbrickstair": "prismarine_brick_stairs", + "prisbrickst": "prismarine_brick_stairs", + "prisbrstairs": "prismarine_brick_stairs", + "prisbrstair": "prismarine_brick_stairs", + "prisbrst": "prismarine_brick_stairs", + "seabricksstairs": "prismarine_brick_stairs", + "seabricksstair": "prismarine_brick_stairs", + "seabricksst": "prismarine_brick_stairs", + "seabrickstairs": "prismarine_brick_stairs", + "seabrickstair": "prismarine_brick_stairs", + "seabrickst": "prismarine_brick_stairs", + "seabrstairs": "prismarine_brick_stairs", + "seabrstair": "prismarine_brick_stairs", + "seabrst": "prismarine_brick_stairs", + "prismarine_crystals": { + "material": "PRISMARINE_CRYSTALS" + }, + "prismarinecrystals": "prismarine_crystals", + "prismarinecrystal": "prismarine_crystals", + "priscrystals": "prismarine_crystals", + "priscrystal": "prismarine_crystals", + "seacrystals": "prismarine_crystals", + "seacrystal": "prismarine_crystals", + "prismarine_shard": { + "material": "PRISMARINE_SHARD" + }, + "prismarineshard": "prismarine_shard", + "prismarinefragment": "prismarine_shard", + "prisshard": "prismarine_shard", + "prisfragment": "prismarine_shard", + "seashard": "prismarine_shard", + "seafragment": "prismarine_shard", + "prismarine_slab": { + "material": "PRISMARINE_SLAB" + }, + "prismarineslab": "prismarine_slab", + "prismarinesl": "prismarine_slab", + "prisslab": "prismarine_slab", + "prissl": "prismarine_slab", + "seaslab": "prismarine_slab", + "seasl": "prismarine_slab", + "prismarine_stairs": { + "material": "PRISMARINE_STAIRS" + }, + "prismarinestairs": "prismarine_stairs", + "prismarinestair": "prismarine_stairs", + "prismarinest": "prismarine_stairs", + "prisstairs": "prismarine_stairs", + "prisstair": "prismarine_stairs", + "prisst": "prismarine_stairs", + "seastairs": "prismarine_stairs", + "seastair": "prismarine_stairs", + "seast": "prismarine_stairs", + "prismarine_wall": { + "material": "PRISMARINE_WALL" + }, + "prismarinewall": "prismarine_wall", + "pufferfish": "pufferfish", + "rawpufferfish": "pufferfish", + "rawpufffish": "pufferfish", + "rawfishpuff": "pufferfish", + "rawpfish": "pufferfish", + "rawfishp": "pufferfish", + "rapufferfish": "pufferfish", + "rapufffish": "pufferfish", + "rafishpuff": "pufferfish", + "rapfish": "pufferfish", + "rafishp": "pufferfish", + "uncookedpufferfish": "pufferfish", + "uncookedpufffish": "pufferfish", + "uncookedfishpuff": "pufferfish", + "uncookedpfish": "pufferfish", + "uncookedfishp": "pufferfish", + "plainpufferfish": "pufferfish", + "plainpufffish": "pufferfish", + "plainfishpuff": "pufferfish", + "plainpfish": "pufferfish", + "plainfishp": "pufferfish", + "pufffish": "pufferfish", + "fishpuff": "pufferfish", + "pfish": "pufferfish", + "fishp": "pufferfish", + "pufferfish_bucket": { + "material": "PUFFERFISH_BUCKET" + }, + "pufferfishbucket": "pufferfish_bucket", + "pufferfishpail": "pufferfish_bucket", + "pufferbucket": "pufferfish_bucket", + "pufferpail": "pufferfish_bucket", + "pfishbucket": "pufferfish_bucket", + "pfishpail": "pufferfish_bucket", + "pufferfish_spawn_egg": { + "material": "PUFFERFISH_SPAWN_EGG" + }, + "pufferfishspawnegg": "pufferfish_spawn_egg", + "pufferfishegg": "pufferfish_spawn_egg", + "eggpufferfish": "pufferfish_spawn_egg", + "spawneggpufferfish": "pufferfish_spawn_egg", + "pufferfishspawn": "pufferfish_spawn_egg", + "spawnpufferfish": "pufferfish_spawn_egg", + "pufferegg": "pufferfish_spawn_egg", + "eggpuffer": "pufferfish_spawn_egg", + "pufferspawnegg": "pufferfish_spawn_egg", + "spawneggpuffer": "pufferfish_spawn_egg", + "pufferspawn": "pufferfish_spawn_egg", + "spawnpuffer": "pufferfish_spawn_egg", + "pfishegg": "pufferfish_spawn_egg", + "eggpfish": "pufferfish_spawn_egg", + "pfishspawnegg": "pufferfish_spawn_egg", + "spawneggpfish": "pufferfish_spawn_egg", + "pfishspawn": "pufferfish_spawn_egg", + "spawnpfish": "pufferfish_spawn_egg", + "pumpkin": "pumpkin", + "pumpkin_pie": { + "material": "PUMPKIN_PIE" + }, + "pumpkinpie": "pumpkin_pie", + "pumpkin_seeds": { + "material": "PUMPKIN_SEEDS" + }, + "pumpkinseeds": "pumpkin_seeds", + "pumpkin_stem": { + "material": "PUMPKIN_STEM", + "unspawnable": true + }, + "pumpkinstem": "pumpkin_stem", + "purple_banner": { + "material": "PURPLE_BANNER" + }, + "purplebanner": "purple_banner", + "pustandingbanner": "purple_banner", + "pubanner": "purple_banner", + "purplestandingbanner": "purple_banner", + "purple_bed": { + "material": "PURPLE_BED" + }, + "purplebed": "purple_bed", + "pubed": "purple_bed", + "purple_carpet": { + "material": "PURPLE_CARPET" + }, + "purplecarpet": "purple_carpet", + "pucarpet": "purple_carpet", + "pufloor": "purple_carpet", + "purplefloor": "purple_carpet", + "purple_concrete": { + "material": "PURPLE_CONCRETE" + }, + "purpleconcrete": "purple_concrete", + "puconcrete": "purple_concrete", + "purple_concrete_powder": { + "material": "PURPLE_CONCRETE_POWDER" + }, + "purpleconcretepowder": "purple_concrete_powder", + "puconcretepowder": "purple_concrete_powder", + "puconcretesand": "purple_concrete_powder", + "pucpowder": "purple_concrete_powder", + "pucdust": "purple_concrete_powder", + "pucp": "purple_concrete_powder", + "purpleconcretesand": "purple_concrete_powder", + "purplecpowder": "purple_concrete_powder", + "purplecdust": "purple_concrete_powder", + "purplecp": "purple_concrete_powder", + "purple_dye": { + "material": "PURPLE_DYE" + }, + "purpledye": "purple_dye", + "purple_glazed_terracotta": { + "material": "PURPLE_GLAZED_TERRACOTTA" + }, + "purpleglazedterracotta": "purple_glazed_terracotta", + "puglazedtcota": "purple_glazed_terracotta", + "puglazedterra": "purple_glazed_terracotta", + "puglazedterracotta": "purple_glazed_terracotta", + "puglazedterracota": "purple_glazed_terracotta", + "purpleglazedtcota": "purple_glazed_terracotta", + "purpleglazedterra": "purple_glazed_terracotta", + "purpleglazedterracota": "purple_glazed_terracotta", + "purple_shulker_box": { + "material": "PURPLE_SHULKER_BOX" + }, + "purpleshulkerbox": "purple_shulker_box", + "pushulkerbox": "purple_shulker_box", + "puchest": "purple_shulker_box", + "purplechest": "purple_shulker_box", + "purple_stained_glass": { + "material": "PURPLE_STAINED_GLASS" + }, + "purplestainedglass": "purple_stained_glass", + "puglass": "purple_stained_glass", + "pusglass": "purple_stained_glass", + "pustainedglass": "purple_stained_glass", + "purpleglass": "purple_stained_glass", + "purplesglass": "purple_stained_glass", + "purple_stained_glass_pane": { + "material": "PURPLE_STAINED_GLASS_PANE" + }, + "purplestainedglasspane": "purple_stained_glass_pane", + "puglasspane": "purple_stained_glass_pane", + "pusglasspane": "purple_stained_glass_pane", + "pustainedglasspane": "purple_stained_glass_pane", + "pugpane": "purple_stained_glass_pane", + "purpleglasspane": "purple_stained_glass_pane", + "purplesglasspane": "purple_stained_glass_pane", + "purplegpane": "purple_stained_glass_pane", + "purple_terracotta": { + "material": "PURPLE_TERRACOTTA" + }, + "purpleterracotta": "purple_terracotta", + "puclay": "purple_terracotta", + "pusclay": "purple_terracotta", + "pustainedclay": "purple_terracotta", + "puterra": "purple_terracotta", + "putcota": "purple_terracotta", + "puterracota": "purple_terracotta", + "puterracotta": "purple_terracotta", + "purpleclay": "purple_terracotta", + "purplesclay": "purple_terracotta", + "purplestainedclay": "purple_terracotta", + "purpleterra": "purple_terracotta", + "purpletcota": "purple_terracotta", + "purpleterracota": "purple_terracotta", + "purple_wall_banner": { + "material": "PURPLE_WALL_BANNER", + "unspawnable": true + }, + "purplewallbanner": "purple_wall_banner", + "purple_wool": { + "material": "PURPLE_WOOL" + }, + "purplewool": "purple_wool", + "puwool": "purple_wool", + "pucloth": "purple_wool", + "pucotton": "purple_wool", + "purplecloth": "purple_wool", + "purplecotton": "purple_wool", + "purpur_block": { + "material": "PURPUR_BLOCK" + }, + "purpurblock": "purpur_block", + "purpur_pillar": { + "material": "PURPUR_PILLAR" + }, + "purpurpillar": "purpur_pillar", + "purpur_slab": { + "material": "PURPUR_SLAB" + }, + "purpurslab": "purpur_slab", + "purpur_stairs": { + "material": "PURPUR_STAIRS" + }, + "purpurstairs": "purpur_stairs", + "quartz": "quartz", + "quartz_block": { + "material": "QUARTZ_BLOCK" + }, + "quartzblock": "quartz_block", + "netherquartzblock": "quartz_block", + "nqblock": "quartz_block", + "qblock": "quartz_block", + "quartz_pillar": { + "material": "QUARTZ_PILLAR" + }, + "quartzpillar": "quartz_pillar", + "quartz_slab": { + "material": "QUARTZ_SLAB" + }, + "quartzslab": "quartz_slab", + "quartz_stairs": { + "material": "QUARTZ_STAIRS" + }, + "quartzstairs": "quartz_stairs", + "rabbit": "rabbit", + "rawrabbit": "rabbit", + "rawhare": "rabbit", + "rawhasenpfeffer": "rabbit", + "rarabbit": "rabbit", + "rahare": "rabbit", + "rahasenpfeffer": "rabbit", + "uncookedrabbit": "rabbit", + "uncookedhare": "rabbit", + "uncookedhasenpfeffer": "rabbit", + "plainrabbit": "rabbit", + "plainhare": "rabbit", + "plainhasenpfeffer": "rabbit", + "hare": "rabbit", + "hasenpfeffer": "rabbit", + "rabbit_foot": { + "material": "RABBIT_FOOT" + }, + "rabbitfoot": "rabbit_foot", + "rabbit_hide": { + "material": "RABBIT_HIDE" + }, + "rabbithide": "rabbit_hide", + "rabbit_spawn_egg": { + "material": "RABBIT_SPAWN_EGG" + }, + "rabbitspawnegg": "rabbit_spawn_egg", + "rabbitegg": "rabbit_spawn_egg", + "eggrabbit": "rabbit_spawn_egg", + "spawneggrabbit": "rabbit_spawn_egg", + "rabbitspawn": "rabbit_spawn_egg", + "spawnrabbit": "rabbit_spawn_egg", + "rabbit_stew": { + "material": "RABBIT_STEW" + }, + "rabbitstew": "rabbit_stew", + "rail": "rail", + "rails": "rail", + "track": "rail", + "minecartrails": "rail", + "minecartrail": "rail", + "minecarttrack": "rail", + "mcartrails": "rail", + "mcartrail": "rail", + "mcarttrack": "rail", + "mcrails": "rail", + "mcrail": "rail", + "mctrack": "rail", + "ravager_spawn_egg": { + "material": "RAVAGER_SPAWN_EGG" + }, + "ravagerspawnegg": "ravager_spawn_egg", + "redstone": "redstone", + "redstone_block": { + "material": "REDSTONE_BLOCK" + }, + "redstoneblock": "redstone_block", + "blockredstone": "redstone_block", + "redsblock": "redstone_block", + "blockreds": "redstone_block", + "redblock": "redstone_block", + "blockred": "redstone_block", + "rstoneblock": "redstone_block", + "blockrstone": "redstone_block", + "rsblock": "redstone_block", + "blockrs": "redstone_block", + "rblock": "redstone_block", + "blockr": "redstone_block", + "redstone_lamp": { + "material": "REDSTONE_LAMP" + }, + "redstonelamp": "redstone_lamp", + "redstone_ore": { + "material": "REDSTONE_ORE" + }, + "redstoneore": "redstone_ore", + "redstoneo": "redstone_ore", + "oreredstone": "redstone_ore", + "oredstone": "redstone_ore", + "redsore": "redstone_ore", + "redso": "redstone_ore", + "orereds": "redstone_ore", + "oreds": "redstone_ore", + "redore": "redstone_ore", + "redo": "redstone_ore", + "orered": "redstone_ore", + "rstoneore": "redstone_ore", + "rstoneo": "redstone_ore", + "orerstone": "redstone_ore", + "orstone": "redstone_ore", + "rsore": "redstone_ore", + "rso": "redstone_ore", + "orers": "redstone_ore", + "ors": "redstone_ore", + "rore": "redstone_ore", + "ro": "redstone_ore", + "orer": "redstone_ore", + "or": "redstone_ore", + "redstone_torch": { + "material": "REDSTONE_TORCH" + }, + "redstonetorch": "redstone_torch", + "rstonetorch": "redstone_torch", + "redstorch": "redstone_torch", + "redtorch": "redstone_torch", + "rstorch": "redstone_torch", + "redstone_wall_torch": { + "material": "REDSTONE_WALL_TORCH", + "unspawnable": true + }, + "redstonewalltorch": "redstone_wall_torch", + "redstone_wire": { + "material": "REDSTONE_WIRE", + "unspawnable": true + }, + "redstonewire": "redstone_wire", + "red_banner": { + "material": "RED_BANNER" + }, + "redbanner": "red_banner", + "rstandingbanner": "red_banner", + "rbanner": "red_banner", + "redstandingbanner": "red_banner", + "red_bed": { + "material": "RED_BED" + }, + "redbed": "red_bed", + "rbed": "red_bed", + "red_carpet": { + "material": "RED_CARPET" + }, + "redcarpet": "red_carpet", + "rcarpet": "red_carpet", + "rfloor": "red_carpet", + "redfloor": "red_carpet", + "red_concrete": { + "material": "RED_CONCRETE" + }, + "redconcrete": "red_concrete", + "rconcrete": "red_concrete", + "red_concrete_powder": { + "material": "RED_CONCRETE_POWDER" + }, + "redconcretepowder": "red_concrete_powder", + "rconcretepowder": "red_concrete_powder", + "rconcretesand": "red_concrete_powder", + "rcpowder": "red_concrete_powder", + "rcdust": "red_concrete_powder", + "rcp": "red_concrete_powder", + "redconcretesand": "red_concrete_powder", + "redcpowder": "red_concrete_powder", + "redcdust": "red_concrete_powder", + "redcp": "red_concrete_powder", + "red_dye": { + "material": "RED_DYE", + "fallbacks": [ + "ROSE_RED" + ] + }, + "reddye": "red_dye", + "red_glazed_terracotta": { + "material": "RED_GLAZED_TERRACOTTA" + }, + "redglazedterracotta": "red_glazed_terracotta", + "rglazedtcota": "red_glazed_terracotta", + "rglazedterra": "red_glazed_terracotta", + "rglazedterracotta": "red_glazed_terracotta", + "rglazedterracota": "red_glazed_terracotta", + "redglazedtcota": "red_glazed_terracotta", + "redglazedterra": "red_glazed_terracotta", + "redglazedterracota": "red_glazed_terracotta", + "red_mushroom": { + "material": "RED_MUSHROOM" + }, + "redmushroom": "red_mushroom", + "redmush": "red_mushroom", + "redshroom": "red_mushroom", + "rmushroom": "red_mushroom", + "rmush": "red_mushroom", + "rshroom": "red_mushroom", + "red_mushroom_block": { + "material": "RED_MUSHROOM_BLOCK" + }, + "redmushroomblock": "red_mushroom_block", + "giantredmushroom": "red_mushroom_block", + "giantredmush": "red_mushroom_block", + "gredmushroom": "red_mushroom_block", + "gredmush": "red_mushroom_block", + "hugeredmushroom": "red_mushroom_block", + "hugeredmush": "red_mushroom_block", + "hredmushroom": "red_mushroom_block", + "hredmush": "red_mushroom_block", + "bigredmushroom": "red_mushroom_block", + "bigredmush": "red_mushroom_block", + "bredmushroom": "red_mushroom_block", + "bredmush": "red_mushroom_block", + "giantrmushroom": "red_mushroom_block", + "giantrmush": "red_mushroom_block", + "grmushroom": "red_mushroom_block", + "grmush": "red_mushroom_block", + "hugermushroom": "red_mushroom_block", + "hugermush": "red_mushroom_block", + "hrmushroom": "red_mushroom_block", + "hrmush": "red_mushroom_block", + "bigrmushroom": "red_mushroom_block", + "bigrmush": "red_mushroom_block", + "brmushroom": "red_mushroom_block", + "brmush": "red_mushroom_block", + "red_nether_bricks": { + "material": "RED_NETHER_BRICKS" + }, + "rednetherbricks": "red_nether_bricks", + "red_nether_brick_slab": { + "material": "RED_NETHER_BRICK_SLAB" + }, + "rednetherbrickslab": "red_nether_brick_slab", + "red_nether_brick_stairs": { + "material": "RED_NETHER_BRICK_STAIRS" + }, + "rednetherbrickstairs": "red_nether_brick_stairs", + "red_nether_brick_wall": { + "material": "RED_NETHER_BRICK_WALL" + }, + "rednetherbrickwall": "red_nether_brick_wall", + "red_sand": { + "material": "RED_SAND" + }, + "redsand": "red_sand", + "rsand": "red_sand", + "red_sandstone": { + "material": "RED_SANDSTONE" + }, + "redsandstone": "red_sandstone", + "rsstone": "red_sandstone", + "rsandstone": "red_sandstone", + "rsandst": "red_sandstone", + "rsastone": "red_sandstone", + "red_sandstone_slab": { + "material": "RED_SANDSTONE_SLAB" + }, + "redsandstoneslab": "red_sandstone_slab", + "redsandstonesl": "red_sandstone_slab", + "rsandstoneslab": "red_sandstone_slab", + "rsandstonesl": "red_sandstone_slab", + "rsandstslab": "red_sandstone_slab", + "rsandstsl": "red_sandstone_slab", + "rsastoneslab": "red_sandstone_slab", + "rsastonesl": "red_sandstone_slab", + "red_sandstone_stairs": { + "material": "RED_SANDSTONE_STAIRS" + }, + "redsandstonestairs": "red_sandstone_stairs", + "redsandstonestair": "red_sandstone_stairs", + "redsandstonest": "red_sandstone_stairs", + "rsandstonestair": "red_sandstone_stairs", + "rsandstonestairs": "red_sandstone_stairs", + "rsandstonest": "red_sandstone_stairs", + "rsandststair": "red_sandstone_stairs", + "rsandststairs": "red_sandstone_stairs", + "rsandstst": "red_sandstone_stairs", + "rsastonestair": "red_sandstone_stairs", + "rsastonestairs": "red_sandstone_stairs", + "rsastonest": "red_sandstone_stairs", + "red_sandstone_wall": { + "material": "RED_SANDSTONE_WALL" + }, + "redsandstonewall": "red_sandstone_wall", + "red_shulker_box": { + "material": "RED_SHULKER_BOX" + }, + "redshulkerbox": "red_shulker_box", + "rshulkerbox": "red_shulker_box", + "rchest": "red_shulker_box", + "redchest": "red_shulker_box", + "red_stained_glass": { + "material": "RED_STAINED_GLASS" + }, + "redstainedglass": "red_stained_glass", + "rglass": "red_stained_glass", + "rsglass": "red_stained_glass", + "rstainedglass": "red_stained_glass", + "redglass": "red_stained_glass", + "redsglass": "red_stained_glass", + "red_stained_glass_pane": { + "material": "RED_STAINED_GLASS_PANE" + }, + "redstainedglasspane": "red_stained_glass_pane", + "rglasspane": "red_stained_glass_pane", + "rsglasspane": "red_stained_glass_pane", + "rstainedglasspane": "red_stained_glass_pane", + "rgpane": "red_stained_glass_pane", + "redglasspane": "red_stained_glass_pane", + "redsglasspane": "red_stained_glass_pane", + "redgpane": "red_stained_glass_pane", + "red_terracotta": { + "material": "RED_TERRACOTTA" + }, + "redterracotta": "red_terracotta", + "rclay": "red_terracotta", + "rsclay": "red_terracotta", + "rstainedclay": "red_terracotta", + "rterra": "red_terracotta", + "rtcota": "red_terracotta", + "rterracota": "red_terracotta", + "rterracotta": "red_terracotta", + "redclay": "red_terracotta", + "redsclay": "red_terracotta", + "redstainedclay": "red_terracotta", + "redterra": "red_terracotta", + "redtcota": "red_terracotta", + "redterracota": "red_terracotta", + "red_tulip": { + "material": "RED_TULIP" + }, + "redtulip": "red_tulip", + "tulipred": "red_tulip", + "rtulip": "red_tulip", + "tulipr": "red_tulip", + "red_wall_banner": { + "material": "RED_WALL_BANNER", + "unspawnable": true + }, + "redwallbanner": "red_wall_banner", + "red_wool": { + "material": "RED_WOOL" + }, + "redwool": "red_wool", + "rwool": "red_wool", + "rcloth": "red_wool", + "rcotton": "red_wool", + "redcloth": "red_wool", + "redcotton": "red_wool", + "repeater": "repeater", + "repeating_command_block": { + "material": "REPEATING_COMMAND_BLOCK" + }, + "repeatingcommandblock": "repeating_command_block", + "rose_bush": { + "material": "ROSE_BUSH" + }, + "rosebush": "rose_bush", + "rotten_flesh": { + "material": "ROTTEN_FLESH" + }, + "rottenflesh": "rotten_flesh", + "saddle": "saddle", + "salmon": "salmon", + "rawsalmon": "salmon", + "rawsalmonfish": "salmon", + "rawsfish": "salmon", + "rawfishs": "salmon", + "rasalmon": "salmon", + "rasalmonfish": "salmon", + "rasfish": "salmon", + "rafishs": "salmon", + "uncookedsalmon": "salmon", + "uncookedsalmonfish": "salmon", + "uncookedsfish": "salmon", + "uncookedfishs": "salmon", + "plainsalmon": "salmon", + "plainsalmonfish": "salmon", + "plainsfish": "salmon", + "plainfishs": "salmon", + "salmonfish": "salmon", + "sfish": "salmon", + "fishs": "salmon", + "salmon_bucket": { + "material": "SALMON_BUCKET" + }, + "salmonbucket": "salmon_bucket", + "salmonpail": "salmon_bucket", + "salmon_spawn_egg": { + "material": "SALMON_SPAWN_EGG" + }, + "salmonspawnegg": "salmon_spawn_egg", + "salmonegg": "salmon_spawn_egg", + "eggsalmon": "salmon_spawn_egg", + "spawneggsalmon": "salmon_spawn_egg", + "salmonspawn": "salmon_spawn_egg", + "spawnsalmon": "salmon_spawn_egg", + "sand": "sand", + "sandstone": "sandstone", + "sastone": "sandstone", + "sandst": "sandstone", + "sandstone_slab": { + "material": "SANDSTONE_SLAB" + }, + "sandstoneslab": "sandstone_slab", + "sandstonesl": "sandstone_slab", + "sandstslab": "sandstone_slab", + "sandstsl": "sandstone_slab", + "sastoneslab": "sandstone_slab", + "sastonesl": "sandstone_slab", + "sandstone_stairs": { + "material": "SANDSTONE_STAIRS" + }, + "sandstonestairs": "sandstone_stairs", + "sandstonestair": "sandstone_stairs", + "sandstonest": "sandstone_stairs", + "sandststair": "sandstone_stairs", + "sandststairs": "sandstone_stairs", + "sandstst": "sandstone_stairs", + "sastonestair": "sandstone_stairs", + "sastonestairs": "sandstone_stairs", + "sastonest": "sandstone_stairs", + "sandstone_wall": { + "material": "SANDSTONE_WALL" + }, + "sandstonewall": "sandstone_wall", + "scaffolding": "scaffolding", + "scute": "scute", + "seagrass": "seagrass", + "sea_lantern": { + "material": "SEA_LANTERN" + }, + "sealantern": "sea_lantern", + "sea_pickle": { + "material": "SEA_PICKLE" + }, + "seapickle": "sea_pickle", + "shears": "shears", + "sheep_spawn_egg": { + "material": "SHEEP_SPAWN_EGG" + }, + "sheepspawnegg": "sheep_spawn_egg", + "sheepegg": "sheep_spawn_egg", + "eggsheep": "sheep_spawn_egg", + "spawneggsheep": "sheep_spawn_egg", + "sheepspawn": "sheep_spawn_egg", + "spawnsheep": "sheep_spawn_egg", + "shield": "shield", + "handshield": "shield", + "woodshield": "shield", + "woodenshield": "shield", + "shulker_box": { + "material": "SHULKER_BOX" + }, + "shulkerbox": "shulker_box", + "shulker_shell": { + "material": "SHULKER_SHELL" + }, + "shulkershell": "shulker_shell", + "shulker_spawn_egg": { + "material": "SHULKER_SPAWN_EGG" + }, + "shulkerspawnegg": "shulker_spawn_egg", + "shulkeregg": "shulker_spawn_egg", + "eggshulker": "shulker_spawn_egg", + "spawneggshulker": "shulker_spawn_egg", + "shulkerspawn": "shulker_spawn_egg", + "spawnshulker": "shulker_spawn_egg", + "shulkegg": "shulker_spawn_egg", + "eggshulk": "shulker_spawn_egg", + "shulkspawnegg": "shulker_spawn_egg", + "spawneggshulk": "shulker_spawn_egg", + "shulkspawn": "shulker_spawn_egg", + "spawnshulk": "shulker_spawn_egg", + "silverfish_spawn_egg": { + "material": "SILVERFISH_SPAWN_EGG" + }, + "silverfishspawnegg": "silverfish_spawn_egg", + "silverfishegg": "silverfish_spawn_egg", + "eggsilverfish": "silverfish_spawn_egg", + "spawneggsilverfish": "silverfish_spawn_egg", + "silverfishspawn": "silverfish_spawn_egg", + "spawnsilverfish": "silverfish_spawn_egg", + "skeleton_horse_spawn_egg": { + "material": "SKELETON_HORSE_SPAWN_EGG" + }, + "skeletonhorsespawnegg": "skeleton_horse_spawn_egg", + "skeletonhorseegg": "skeleton_horse_spawn_egg", + "eggskeletonhorse": "skeleton_horse_spawn_egg", + "spawneggskeletonhorse": "skeleton_horse_spawn_egg", + "skeletonhorsespawn": "skeleton_horse_spawn_egg", + "spawnskeletonhorse": "skeleton_horse_spawn_egg", + "shorseegg": "skeleton_horse_spawn_egg", + "eggshorse": "skeleton_horse_spawn_egg", + "shorsespawnegg": "skeleton_horse_spawn_egg", + "spawneggshorse": "skeleton_horse_spawn_egg", + "shorsespawn": "skeleton_horse_spawn_egg", + "spawnshorse": "skeleton_horse_spawn_egg", + "bonehorseegg": "skeleton_horse_spawn_egg", + "eggbonehorse": "skeleton_horse_spawn_egg", + "bonehorsespawnegg": "skeleton_horse_spawn_egg", + "spawneggbonehorse": "skeleton_horse_spawn_egg", + "bonehorsespawn": "skeleton_horse_spawn_egg", + "spawnbonehorse": "skeleton_horse_spawn_egg", + "skeleton_skull": { + "material": "SKELETON_SKULL" + }, + "skeletonskull": "skeleton_skull", + "skeletonhead": "skeleton_skull", + "headskeleton": "skeleton_skull", + "steveskeleton": "skeleton_skull", + "skeletonmask": "skeleton_skull", + "skeletonheadmask": "skeleton_skull", + "skhead": "skeleton_skull", + "skskull": "skeleton_skull", + "headsk": "skeleton_skull", + "stevesk": "skeleton_skull", + "skmask": "skeleton_skull", + "skheadmask": "skeleton_skull", + "skeleton_spawn_egg": { + "material": "SKELETON_SPAWN_EGG" + }, + "skeletonspawnegg": "skeleton_spawn_egg", + "skeletonegg": "skeleton_spawn_egg", + "eggskeleton": "skeleton_spawn_egg", + "spawneggskeleton": "skeleton_spawn_egg", + "skeletonspawn": "skeleton_spawn_egg", + "spawnskeleton": "skeleton_spawn_egg", + "skegg": "skeleton_spawn_egg", + "eggsk": "skeleton_spawn_egg", + "skspawnegg": "skeleton_spawn_egg", + "spawneggsk": "skeleton_spawn_egg", + "skspawn": "skeleton_spawn_egg", + "spawnsk": "skeleton_spawn_egg", + "skeleton_wall_skull": { + "material": "SKELETON_WALL_SKULL", + "unspawnable": true + }, + "skeletonwallskull": "skeleton_wall_skull", + "skull_banner_pattern": { + "material": "SKULL_BANNER_PATTERN" + }, + "skullbannerpattern": "skull_banner_pattern", + "slime_ball": { + "material": "SLIME_BALL" + }, + "slimeball": "slime_ball", + "slime_block": { + "material": "SLIME_BLOCK" + }, + "slimeblock": "slime_block", + "slime_spawn_egg": { + "material": "SLIME_SPAWN_EGG" + }, + "slimespawnegg": "slime_spawn_egg", + "slimeegg": "slime_spawn_egg", + "eggslime": "slime_spawn_egg", + "spawneggslime": "slime_spawn_egg", + "slimespawn": "slime_spawn_egg", + "spawnslime": "slime_spawn_egg", + "smithing_table": { + "material": "SMITHING_TABLE" + }, + "smithingtable": "smithing_table", + "smoker": "smoker", + "smooth_quartz": { + "material": "SMOOTH_QUARTZ" + }, + "smoothquartz": "smooth_quartz", + "smooth_quartz_slab": { + "material": "SMOOTH_QUARTZ_SLAB" + }, + "smoothquartzslab": "smooth_quartz_slab", + "smooth_quartz_stairs": { + "material": "SMOOTH_QUARTZ_STAIRS" + }, + "smoothquartzstairs": "smooth_quartz_stairs", + "smooth_red_sandstone": { + "material": "SMOOTH_RED_SANDSTONE" + }, + "smredsandstone": "smooth_red_sandstone_stairs", + "smoothrsandstone": "smooth_red_sandstone_stairs", + "smrsandstone": "smooth_red_sandstone_stairs", + "smoothrsandst": "smooth_red_sandstone_stairs", + "smrsandst": "smooth_red_sandstone_stairs", + "smoothrsastone": "smooth_red_sandstone_stairs", + "smrsastone": "smooth_red_sandstone_stairs", + "smooth_red_sandstone_slab": { + "material": "SMOOTH_RED_SANDSTONE_SLAB" + }, + "smoothredsandstoneslab": "smooth_red_sandstone_slab", + "smooth_red_sandstone_stairs": { + "material": "SMOOTH_RED_SANDSTONE_STAIRS" + }, + "smoothredsandstonestairs": "smooth_red_sandstone_stairs", + "smooth_sandstone": { + "material": "SMOOTH_SANDSTONE" + }, + "smoothsandstone": "smooth_sandstone", + "smsandstone": "smooth_sandstone_stairs", + "smoothsandst": "smooth_sandstone_stairs", + "smsandst": "smooth_sandstone_stairs", + "smooth_sandstone_slab": { + "material": "SMOOTH_SANDSTONE_SLAB" + }, + "smoothsandstoneslab": "smooth_sandstone_slab", + "smooth_sandstone_stairs": { + "material": "SMOOTH_SANDSTONE_STAIRS" + }, + "smoothsandstonestairs": "smooth_sandstone_stairs", + "smooth_stone": { + "material": "SMOOTH_STONE" + }, + "smoothstone": "smooth_stone", + "smoothsmoothstone": "smooth_stone_slab", + "smsmoothstone": "smooth_stone_slab", + "smoothsstone": "smooth_stone_slab", + "smsstone": "smooth_stone_slab", + "smooth_stone_slab": { + "material": "SMOOTH_STONE_SLAB" + }, + "snow": "snow", + "snowball": "snowball", + "snow_block": { + "material": "SNOW_BLOCK" + }, + "snowblock": "snow_block", + "soul_sand": { + "material": "SOUL_SAND" + }, + "soulsand": "soul_sand", + "spawner": "spawner", + "spectral_arrow": { + "material": "SPECTRAL_ARROW" + }, + "spectralarrow": "spectral_arrow", + "spider_eye": { + "material": "SPIDER_EYE" + }, + "spidereye": "spider_eye", + "spider_spawn_egg": { + "material": "SPIDER_SPAWN_EGG" + }, + "spiderspawnegg": "spider_spawn_egg", + "spideregg": "spider_spawn_egg", + "eggspider": "spider_spawn_egg", + "spawneggspider": "spider_spawn_egg", + "spiderspawn": "spider_spawn_egg", + "spawnspider": "spider_spawn_egg", + "splash_potion": { + "material": "SPLASH_POTION" + }, + "splashpotion": "splash_potion", + "sponge": "sponge", + "spruce_boat": { + "material": "SPRUCE_BOAT" + }, + "spruceboat": "spruce_boat", + "pineboat": "spruce_boat", + "pboat": "spruce_boat", + "darkboat": "spruce_boat", + "dboat": "spruce_boat", + "sboat": "spruce_boat", + "spruce_button": { + "material": "SPRUCE_BUTTON" + }, + "sprucebutton": "spruce_button", + "spruce_door": { + "material": "SPRUCE_DOOR" + }, + "sprucedoor": "spruce_door", + "spruce_fence": { + "material": "SPRUCE_FENCE" + }, + "sprucefence": "spruce_fence", + "pinefence": "spruce_fence", + "pfence": "spruce_fence", + "darkfence": "spruce_fence", + "dfence": "spruce_fence", + "sfence": "spruce_fence", + "spruce_fence_gate": { + "material": "SPRUCE_FENCE_GATE" + }, + "sprucefencegate": "spruce_fence_gate", + "pinefencegate": "spruce_fence_gate", + "pinegate": "spruce_fence_gate", + "pfencegate": "spruce_fence_gate", + "pgate": "spruce_fence_gate", + "darkfencegate": "spruce_fence_gate", + "darkgate": "spruce_fence_gate", + "dfencegate": "spruce_fence_gate", + "dgate": "spruce_fence_gate", + "sprucegate": "spruce_fence_gate", + "sfencegate": "spruce_fence_gate", + "sgate": "spruce_fence_gate", + "spruce_leaves": { + "material": "SPRUCE_LEAVES" + }, + "spruceleaves": "spruce_leaves", + "pinetreeleaves": "spruce_leaves", + "pinelogleaves": "spruce_leaves", + "pinetrunkleaves": "spruce_leaves", + "pinewoodleaves": "spruce_leaves", + "pineleaves": "spruce_leaves", + "pinetreeleaf": "spruce_leaves", + "pinelogleaf": "spruce_leaves", + "pinetrunkleaf": "spruce_leaves", + "pinewoodleaf": "spruce_leaves", + "pineleaf": "spruce_leaves", + "pinetreeleave": "spruce_leaves", + "pinelogleave": "spruce_leaves", + "pinetrunkleave": "spruce_leaves", + "pinewoodleave": "spruce_leaves", + "pineleave": "spruce_leaves", + "ptreeleaves": "spruce_leaves", + "plogleaves": "spruce_leaves", + "ptrunkleaves": "spruce_leaves", + "pwoodleaves": "spruce_leaves", + "pleaves": "spruce_leaves", + "ptreeleaf": "spruce_leaves", + "plogleaf": "spruce_leaves", + "ptrunkleaf": "spruce_leaves", + "pwoodleaf": "spruce_leaves", + "pleaf": "spruce_leaves", + "ptreeleave": "spruce_leaves", + "plogleave": "spruce_leaves", + "ptrunkleave": "spruce_leaves", + "pwoodleave": "spruce_leaves", + "pleave": "spruce_leaves", + "darktreeleaves": "spruce_leaves", + "darklogleaves": "spruce_leaves", + "darktrunkleaves": "spruce_leaves", + "darkwoodleaves": "spruce_leaves", + "darkleaves": "spruce_leaves", + "darktreeleaf": "spruce_leaves", + "darklogleaf": "spruce_leaves", + "darktrunkleaf": "spruce_leaves", + "darkwoodleaf": "spruce_leaves", + "darkleaf": "spruce_leaves", + "darktreeleave": "spruce_leaves", + "darklogleave": "spruce_leaves", + "darktrunkleave": "spruce_leaves", + "darkwoodleave": "spruce_leaves", + "darkleave": "spruce_leaves", + "dtreeleaves": "spruce_leaves", + "dlogleaves": "spruce_leaves", + "dtrunkleaves": "spruce_leaves", + "dwoodleaves": "spruce_leaves", + "dleaves": "spruce_leaves", + "dtreeleaf": "spruce_leaves", + "dlogleaf": "spruce_leaves", + "dtrunkleaf": "spruce_leaves", + "dwoodleaf": "spruce_leaves", + "dleaf": "spruce_leaves", + "dtreeleave": "spruce_leaves", + "dlogleave": "spruce_leaves", + "dtrunkleave": "spruce_leaves", + "dwoodleave": "spruce_leaves", + "dleave": "spruce_leaves", + "sprucetreeleaves": "spruce_leaves", + "sprucelogleaves": "spruce_leaves", + "sprucetrunkleaves": "spruce_leaves", + "sprucewoodleaves": "spruce_leaves", + "sprucetreeleaf": "spruce_leaves", + "sprucelogleaf": "spruce_leaves", + "sprucetrunkleaf": "spruce_leaves", + "sprucewoodleaf": "spruce_leaves", + "spruceleaf": "spruce_leaves", + "sprucetreeleave": "spruce_leaves", + "sprucelogleave": "spruce_leaves", + "sprucetrunkleave": "spruce_leaves", + "sprucewoodleave": "spruce_leaves", + "spruceleave": "spruce_leaves", + "streeleaves": "spruce_leaves", + "slogleaves": "spruce_leaves", + "strunkleaves": "spruce_leaves", + "swoodleaves": "spruce_leaves", + "sleaves": "spruce_leaves", + "streeleaf": "spruce_leaves", + "slogleaf": "spruce_leaves", + "strunkleaf": "spruce_leaves", + "swoodleaf": "spruce_leaves", + "sleaf": "spruce_leaves", + "streeleave": "spruce_leaves", + "slogleave": "spruce_leaves", + "strunkleave": "spruce_leaves", + "swoodleave": "spruce_leaves", + "sleave": "spruce_leaves", + "spruce_log": { + "material": "SPRUCE_LOG" + }, + "sprucelog": "spruce_log", + "pine": "spruce_log", + "logpine": "spruce_log", + "pinetrunk": "spruce_log", + "pinelog": "spruce_log", + "pinetree": "spruce_log", + "p": "spruce_log", + "logp": "spruce_log", + "ptrunk": "spruce_log", + "plog": "spruce_log", + "ptree": "spruce_log", + "dark": "spruce_log", + "logdark": "spruce_log", + "darktrunk": "spruce_log", + "darklog": "spruce_log", + "darktree": "spruce_log", + "d": "spruce_log", + "logd": "spruce_log", + "dtrunk": "spruce_log", + "dlog": "spruce_log", + "dtree": "spruce_log", + "spruce": "spruce_log", + "logspruce": "spruce_log", + "sprucetrunk": "spruce_log", + "sprucetree": "spruce_log", + "s": "spruce_log", + "logs": "spruce_log", + "strunk": "spruce_log", + "slog": "spruce_log", + "stree": "spruce_log", + "spruce_planks": { + "material": "SPRUCE_PLANKS" + }, + "spruceplanks": "spruce_planks", + "pinewoodenplank": "spruce_planks", + "pinewoodplank": "spruce_planks", + "pinewplank": "spruce_planks", + "pineplankwooden": "spruce_planks", + "pineplankwood": "spruce_planks", + "pineplankw": "spruce_planks", + "pineplank": "spruce_planks", + "pwoodenplank": "spruce_planks", + "pwoodplank": "spruce_planks", + "pwplank": "spruce_planks", + "pplankwooden": "spruce_planks", + "pplankwood": "spruce_planks", + "pplankw": "spruce_planks", + "pplank": "spruce_planks", + "darkwoodenplank": "spruce_planks", + "darkwoodplank": "spruce_planks", + "darkwplank": "spruce_planks", + "darkplankwooden": "spruce_planks", + "darkplankwood": "spruce_planks", + "darkplankw": "spruce_planks", + "darkplank": "spruce_planks", + "dwoodenplank": "spruce_planks", + "dwoodplank": "spruce_planks", + "dwplank": "spruce_planks", + "dplankwooden": "spruce_planks", + "dplankwood": "spruce_planks", + "dplankw": "spruce_planks", + "dplank": "spruce_planks", + "sprucewoodenplank": "spruce_planks", + "sprucewoodplank": "spruce_planks", + "sprucewplank": "spruce_planks", + "spruceplankwooden": "spruce_planks", + "spruceplankwood": "spruce_planks", + "spruceplankw": "spruce_planks", + "spruceplank": "spruce_planks", + "swoodenplank": "spruce_planks", + "swoodplank": "spruce_planks", + "swplank": "spruce_planks", + "splankwooden": "spruce_planks", + "splankwood": "spruce_planks", + "splankw": "spruce_planks", + "splank": "spruce_planks", + "spruce_pressure_plate": { + "material": "SPRUCE_PRESSURE_PLATE" + }, + "sprucepressureplate": "spruce_pressure_plate", + "pinepressureplate": "spruce_pressure_plate", + "pinepressplate": "spruce_pressure_plate", + "pinepplate": "spruce_pressure_plate", + "pineplate": "spruce_pressure_plate", + "ppressureplate": "spruce_pressure_plate", + "ppressplate": "spruce_pressure_plate", + "ppplate": "spruce_pressure_plate", + "darkpressureplate": "spruce_pressure_plate", + "darkpressplate": "spruce_pressure_plate", + "darkpplate": "spruce_pressure_plate", + "darkplate": "spruce_pressure_plate", + "dpressureplate": "spruce_pressure_plate", + "dpressplate": "spruce_pressure_plate", + "dpplate": "spruce_pressure_plate", + "sprucepressplate": "spruce_pressure_plate", + "sprucepplate": "spruce_pressure_plate", + "spruceplate": "spruce_pressure_plate", + "spruce_sapling": { + "material": "SPRUCE_SAPLING" + }, + "sprucesapling": "spruce_sapling", + "pinesapling": "spruce_sapling", + "pinetreesapling": "spruce_sapling", + "pinelogsapling": "spruce_sapling", + "pinetrunksapling": "spruce_sapling", + "pinewoodsapling": "spruce_sapling", + "psapling": "spruce_sapling", + "ptreesapling": "spruce_sapling", + "plogsapling": "spruce_sapling", + "ptrunksapling": "spruce_sapling", + "pwoodsapling": "spruce_sapling", + "darksapling": "spruce_sapling", + "darktreesapling": "spruce_sapling", + "darklogsapling": "spruce_sapling", + "darktrunksapling": "spruce_sapling", + "darkwoodsapling": "spruce_sapling", + "dsapling": "spruce_sapling", + "dtreesapling": "spruce_sapling", + "dlogsapling": "spruce_sapling", + "dtrunksapling": "spruce_sapling", + "dwoodsapling": "spruce_sapling", + "sprucetreesapling": "spruce_sapling", + "sprucelogsapling": "spruce_sapling", + "sprucetrunksapling": "spruce_sapling", + "sprucewoodsapling": "spruce_sapling", + "ssapling": "spruce_sapling", + "streesapling": "spruce_sapling", + "slogsapling": "spruce_sapling", + "strunksapling": "spruce_sapling", + "swoodsapling": "spruce_sapling", + "spruce_sign": { + "material": "SPRUCE_SIGN", + "fallbacks": [ + "SIGN" + ] + }, + "sprucesign": "spruce_sign", + "spruce_slab": { + "material": "SPRUCE_SLAB" + }, + "spruceslab": "spruce_slab", + "pinewoodenstep": "spruce_slab", + "pinewoodstep": "spruce_slab", + "pinewstep": "spruce_slab", + "pinestep": "spruce_slab", + "pinewoodenslab": "spruce_slab", + "pinewoodslab": "spruce_slab", + "pinewslab": "spruce_slab", + "pinewoodenhalfblock": "spruce_slab", + "pinewoodhalfblock": "spruce_slab", + "pinewhalfblock": "spruce_slab", + "pinehalfblock": "spruce_slab", + "pwoodenstep": "spruce_slab", + "pwoodstep": "spruce_slab", + "pwstep": "spruce_slab", + "pstep": "spruce_slab", + "pwoodenslab": "spruce_slab", + "pwoodslab": "spruce_slab", + "pwslab": "spruce_slab", + "pwoodenhalfblock": "spruce_slab", + "pwoodhalfblock": "spruce_slab", + "pwhalfblock": "spruce_slab", + "phalfblock": "spruce_slab", + "darkwoodenstep": "spruce_slab", + "darkwoodstep": "spruce_slab", + "darkwstep": "spruce_slab", + "darkstep": "spruce_slab", + "darkwoodenslab": "spruce_slab", + "darkwoodslab": "spruce_slab", + "darkwslab": "spruce_slab", + "darkwoodenhalfblock": "spruce_slab", + "darkwoodhalfblock": "spruce_slab", + "darkwhalfblock": "spruce_slab", + "darkhalfblock": "spruce_slab", + "dwoodenstep": "spruce_slab", + "dwoodstep": "spruce_slab", + "dwstep": "spruce_slab", + "dstep": "spruce_slab", + "dwoodenslab": "spruce_slab", + "dwoodslab": "spruce_slab", + "dwslab": "spruce_slab", + "dwoodenhalfblock": "spruce_slab", + "dwoodhalfblock": "spruce_slab", + "dwhalfblock": "spruce_slab", + "dhalfblock": "spruce_slab", + "sprucewoodenstep": "spruce_slab", + "sprucewoodstep": "spruce_slab", + "sprucewstep": "spruce_slab", + "sprucestep": "spruce_slab", + "sprucewoodenslab": "spruce_slab", + "sprucewoodslab": "spruce_slab", + "sprucewslab": "spruce_slab", + "sprucewoodenhalfblock": "spruce_slab", + "sprucewoodhalfblock": "spruce_slab", + "sprucewhalfblock": "spruce_slab", + "sprucehalfblock": "spruce_slab", + "swoodenstep": "spruce_slab", + "swoodstep": "spruce_slab", + "swstep": "spruce_slab", + "sstep": "spruce_slab", + "swoodenslab": "spruce_slab", + "swoodslab": "spruce_slab", + "swslab": "spruce_slab", + "swoodenhalfblock": "spruce_slab", + "swoodhalfblock": "spruce_slab", + "swhalfblock": "spruce_slab", + "shalfblock": "spruce_slab", + "spruce_stairs": { + "material": "SPRUCE_STAIRS" + }, + "sprucestairs": "spruce_stairs", + "pinewoodenstairs": "spruce_stairs", + "pinewoodstairs": "spruce_stairs", + "pinewstairs": "spruce_stairs", + "pinewoodenstair": "spruce_stairs", + "pinewoodstair": "spruce_stairs", + "pinewstair": "spruce_stairs", + "pinestair": "spruce_stairs", + "pwoodenstairs": "spruce_stairs", + "pwoodstairs": "spruce_stairs", + "pwstairs": "spruce_stairs", + "pwoodenstair": "spruce_stairs", + "pwoodstair": "spruce_stairs", + "pwstair": "spruce_stairs", + "pstair": "spruce_stairs", + "darkwoodenstairs": "spruce_stairs", + "darkwoodstairs": "spruce_stairs", + "darkwstairs": "spruce_stairs", + "darkwoodenstair": "spruce_stairs", + "darkwoodstair": "spruce_stairs", + "darkwstair": "spruce_stairs", + "darkstair": "spruce_stairs", + "dwoodenstairs": "spruce_stairs", + "dwoodstairs": "spruce_stairs", + "dwstairs": "spruce_stairs", + "dwoodenstair": "spruce_stairs", + "dwoodstair": "spruce_stairs", + "dwstair": "spruce_stairs", + "dstair": "spruce_stairs", + "sprucewoodenstairs": "spruce_stairs", + "sprucewoodstairs": "spruce_stairs", + "sprucewstairs": "spruce_stairs", + "sprucewoodenstair": "spruce_stairs", + "sprucewoodstair": "spruce_stairs", + "sprucewstair": "spruce_stairs", + "sprucestair": "spruce_stairs", + "swoodenstairs": "spruce_stairs", + "swoodstairs": "spruce_stairs", + "swstairs": "spruce_stairs", + "swoodenstair": "spruce_stairs", + "swoodstair": "spruce_stairs", + "swstair": "spruce_stairs", + "sstair": "spruce_stairs", + "spruce_trapdoor": { + "material": "SPRUCE_TRAPDOOR" + }, + "sprucetrapdoor": "spruce_trapdoor", + "pinetrapdoor": "spruce_trapdoor", + "pinedoortrap": "spruce_trapdoor", + "pinehatch": "spruce_trapdoor", + "pinetdoor": "spruce_trapdoor", + "pinedoort": "spruce_trapdoor", + "pinetrapd": "spruce_trapdoor", + "pinedtrap": "spruce_trapdoor", + "ptrapdoor": "spruce_trapdoor", + "pdoortrap": "spruce_trapdoor", + "phatch": "spruce_trapdoor", + "ptdoor": "spruce_trapdoor", + "pdoort": "spruce_trapdoor", + "ptrapd": "spruce_trapdoor", + "pdtrap": "spruce_trapdoor", + "darktrapdoor": "spruce_trapdoor", + "darkdoortrap": "spruce_trapdoor", + "darkhatch": "spruce_trapdoor", + "darktdoor": "spruce_trapdoor", + "darkdoort": "spruce_trapdoor", + "darktrapd": "spruce_trapdoor", + "darkdtrap": "spruce_trapdoor", + "dtrapdoor": "spruce_trapdoor", + "ddoortrap": "spruce_trapdoor", + "dhatch": "spruce_trapdoor", + "dtdoor": "spruce_trapdoor", + "ddoort": "spruce_trapdoor", + "dtrapd": "spruce_trapdoor", + "ddtrap": "spruce_trapdoor", + "sprucedoortrap": "spruce_trapdoor", + "sprucehatch": "spruce_trapdoor", + "sprucetdoor": "spruce_trapdoor", + "sprucedoort": "spruce_trapdoor", + "sprucetrapd": "spruce_trapdoor", + "sprucedtrap": "spruce_trapdoor", + "strapdoor": "spruce_trapdoor", + "sdoortrap": "spruce_trapdoor", + "shatch": "spruce_trapdoor", + "sdoort": "spruce_trapdoor", + "strapd": "spruce_trapdoor", + "sdtrap": "spruce_trapdoor", + "spruce_wall_sign": { + "material": "SPRUCE_WALL_SIGN", + "unspawnable": true + }, + "sprucewallsign": "spruce_wall_sign", + "spruce_wood": { + "material": "SPRUCE_WOOD" + }, + "sprucewood": "spruce_wood", + "pinewood": "spruce_wood", + "pinelogall": "spruce_wood", + "pinetrunkall": "spruce_wood", + "pinetreeall": "spruce_wood", + "pwood": "spruce_wood", + "plogall": "spruce_wood", + "ptrunkall": "spruce_wood", + "ptreeall": "spruce_wood", + "darkwood": "spruce_wood", + "darklogall": "spruce_wood", + "darktrunkall": "spruce_wood", + "darktreeall": "spruce_wood", + "dwood": "spruce_wood", + "dlogall": "spruce_wood", + "dtrunkall": "spruce_wood", + "dtreeall": "spruce_wood", + "sprucelogall": "spruce_wood", + "sprucetrunkall": "spruce_wood", + "sprucetreeall": "spruce_wood", + "swood": "spruce_wood", + "slogall": "spruce_wood", + "strunkall": "spruce_wood", + "streeall": "spruce_wood", + "squid_spawn_egg": { + "material": "SQUID_SPAWN_EGG" + }, + "squidspawnegg": "squid_spawn_egg", + "squidegg": "squid_spawn_egg", + "eggsquid": "squid_spawn_egg", + "spawneggsquid": "squid_spawn_egg", + "squidspawn": "squid_spawn_egg", + "spawnsquid": "squid_spawn_egg", + "stick": "stick", + "sticky_piston": { + "material": "STICKY_PISTON" + }, + "stickypiston": "sticky_piston", + "pistonsticky": "sticky_piston", + "stickyp": "sticky_piston", + "psticky": "sticky_piston", + "pistonstickybase": "sticky_piston", + "stickypistonbase": "sticky_piston", + "stickpiston": "sticky_piston", + "pistonstick": "sticky_piston", + "stickp": "sticky_piston", + "pstick": "sticky_piston", + "pistonstickbase": "sticky_piston", + "stickpistonbase": "sticky_piston", + "spiston": "sticky_piston", + "pistons": "sticky_piston", + "pistonsbase": "sticky_piston", + "spistonbase": "sticky_piston", + "stone": "stone", + "sstone": "stone", + "rock": "stone", + "stonecutter": "stonecutter", + "cutstone": "stonecutter", + "cutsmoothstone": "stonecutter", + "cutsstone": "stonecutter", + "stone_axe": { + "material": "STONE_AXE" + }, + "stoneaxe": "stone_axe", + "cobblestoneaxe": "stone_axe", + "cstoneaxe": "stone_axe", + "csaxe": "stone_axe", + "stone_bricks": { + "material": "STONE_BRICKS" + }, + "stonebricks": "stone_bricks", + "stonebrick": "stone_bricks", + "stonebrickblock": "stone_bricks", + "stonebb": "stone_bricks", + "sbrick": "stone_bricks", + "sbricks": "stone_bricks", + "sbrickblock": "stone_bricks", + "sbb": "stone_bricks", + "stone_brick_slab": { + "material": "STONE_BRICK_SLAB" + }, + "stonebrickslab": "stone_brick_slab", + "stone_brick_stairs": { + "material": "STONE_BRICK_STAIRS" + }, + "stonebrickstairs": "stone_brick_stairs", + "stone_brick_wall": { + "material": "STONE_BRICK_WALL" + }, + "stonebrickwall": "stone_brick_wall", + "stone_button": { + "material": "STONE_BUTTON" + }, + "stonebutton": "stone_button", + "smoothstonebutton": "stone_button", + "sstonebutton": "stone_button", + "sbutton": "stone_button", + "button": "stone_button", + "stone_hoe": { + "material": "STONE_HOE" + }, + "stonehoe": "stone_hoe", + "cobblestonehoe": "stone_hoe", + "cstonehoe": "stone_hoe", + "cshoe": "stone_hoe", + "stone_pickaxe": { + "material": "STONE_PICKAXE" + }, + "stonepickaxe": "stone_pickaxe", + "cobblestonepickaxe": "stone_pickaxe", + "cobblestonepick": "stone_pickaxe", + "cstonepickaxe": "stone_pickaxe", + "cstonepick": "stone_pickaxe", + "cspickaxe": "stone_pickaxe", + "cspick": "stone_pickaxe", + "stonepick": "stone_pickaxe", + "stone_pressure_plate": { + "material": "STONE_PRESSURE_PLATE" + }, + "stonepressureplate": "stone_pressure_plate", + "stonepressplate": "stone_pressure_plate", + "stonepplate": "stone_pressure_plate", + "stoneplate": "stone_pressure_plate", + "spressureplate": "stone_pressure_plate", + "spressplate": "stone_pressure_plate", + "spplate": "stone_pressure_plate", + "splate": "stone_pressure_plate", + "smoothstonepressueplate": "stone_pressure_plate", + "smoothstonepressplate": "stone_pressure_plate", + "smoothstonepplate": "stone_pressure_plate", + "smoothstoneplate": "stone_pressure_plate", + "sstonepressureplate": "stone_pressure_plate", + "sstonepressplate": "stone_pressure_plate", + "sstonepplate": "stone_pressure_plate", + "sstoneplate": "stone_pressure_plate", + "stone_shovel": { + "material": "STONE_SHOVEL" + }, + "stoneshovel": "stone_shovel", + "cobblestoneshovel": "stone_shovel", + "cobblestonespade": "stone_shovel", + "cstoneshovel": "stone_shovel", + "cstonespade": "stone_shovel", + "csshovel": "stone_shovel", + "csspade": "stone_shovel", + "stonespade": "stone_shovel", + "stone_slab": { + "material": "STONE_SLAB" + }, + "stone_stairs": { + "material": "STONE_STAIRS" + }, + "stone_sword": { + "material": "STONE_SWORD" + }, + "stonesword": "stone_sword", + "cobblestonesword": "stone_sword", + "cstonesword": "stone_sword", + "cssword": "stone_sword", + "stray_spawn_egg": { + "material": "STRAY_SPAWN_EGG" + }, + "strayspawnegg": "stray_spawn_egg", + "strayegg": "stray_spawn_egg", + "eggstray": "stray_spawn_egg", + "spawneggstray": "stray_spawn_egg", + "strayspawn": "stray_spawn_egg", + "spawnstray": "stray_spawn_egg", + "string": "string", + "stripped_acacia_log": { + "material": "STRIPPED_ACACIA_LOG" + }, + "strippedacacialog": "stripped_acacia_log", + "acaciastrippedlog": "stripped_acacia_log", + "astrippedlog": "stripped_acacia_log", + "acaciabarelog": "stripped_acacia_log", + "abarelog": "stripped_acacia_log", + "strippedacaciatree": "stripped_acacia_log", + "strippedatree": "stripped_acacia_log", + "bareacaciatree": "stripped_acacia_log", + "bareatree": "stripped_acacia_log", + "strippedacaciatrunk": "stripped_acacia_log", + "strippedatrunk": "stripped_acacia_log", + "bareacaciatrunk": "stripped_acacia_log", + "bareatrunk": "stripped_acacia_log", + "stripped_acacia_wood": { + "material": "STRIPPED_ACACIA_WOOD" + }, + "strippedacaciawood": "stripped_acacia_wood", + "acaciastrippedwood": "stripped_acacia_wood", + "astrippedwood": "stripped_acacia_wood", + "acaciabarewood": "stripped_acacia_wood", + "abarewood": "stripped_acacia_wood", + "strippedacacialogall": "stripped_acacia_wood", + "strippedalogall": "stripped_acacia_wood", + "bareacacialogall": "stripped_acacia_wood", + "barealogall": "stripped_acacia_wood", + "strippedacaciatrunkall": "stripped_acacia_wood", + "strippedatrunkall": "stripped_acacia_wood", + "bareacaciatrunkall": "stripped_acacia_wood", + "bareatrunkall": "stripped_acacia_wood", + "strippedacaciatreeall": "stripped_acacia_wood", + "strippedatreeall": "stripped_acacia_wood", + "bareacaciatreeall": "stripped_acacia_wood", + "bareatreeall": "stripped_acacia_wood", + "stripped_birch_log": { + "material": "STRIPPED_BIRCH_LOG" + }, + "strippedbirchlog": "stripped_birch_log", + "birchstrippedlog": "stripped_birch_log", + "bstrippedlog": "stripped_birch_log", + "lightstrippedlog": "stripped_birch_log", + "lstrippedlog": "stripped_birch_log", + "whitestrippedlog": "stripped_birch_log", + "wstrippedlog": "stripped_birch_log", + "birchbarelog": "stripped_birch_log", + "bbarelog": "stripped_birch_log", + "lightbarelog": "stripped_birch_log", + "lbarelog": "stripped_birch_log", + "whitebarelog": "stripped_birch_log", + "wbarelog": "stripped_birch_log", + "strippedbirchtree": "stripped_birch_log", + "strippedbtree": "stripped_birch_log", + "strippedlighttree": "stripped_birch_log", + "strippedltree": "stripped_birch_log", + "strippedwhitetree": "stripped_birch_log", + "strippedwtree": "stripped_birch_log", + "barebirchtree": "stripped_birch_log", + "barebtree": "stripped_birch_log", + "barelighttree": "stripped_birch_log", + "bareltree": "stripped_birch_log", + "barewhitetree": "stripped_birch_log", + "barewtree": "stripped_birch_log", + "strippedbirchtrunk": "stripped_birch_log", + "strippedbtrunk": "stripped_birch_log", + "strippedlighttrunk": "stripped_birch_log", + "strippedltrunk": "stripped_birch_log", + "strippedwhitetrunk": "stripped_birch_log", + "strippedwtrunk": "stripped_birch_log", + "barebirchtrunk": "stripped_birch_log", + "barebtrunk": "stripped_birch_log", + "barelighttrunk": "stripped_birch_log", + "bareltrunk": "stripped_birch_log", + "barewhitetrunk": "stripped_birch_log", + "barewtrunk": "stripped_birch_log", + "stripped_birch_wood": { + "material": "STRIPPED_BIRCH_WOOD" + }, + "strippedbirchwood": "stripped_birch_wood", + "birchstrippedwood": "stripped_birch_wood", + "bstrippedwood": "stripped_birch_wood", + "lightstrippedwood": "stripped_birch_wood", + "lstrippedwood": "stripped_birch_wood", + "whitestrippedwood": "stripped_birch_wood", + "wstrippedwood": "stripped_birch_wood", + "birchbarewood": "stripped_birch_wood", + "bbarewood": "stripped_birch_wood", + "lightbarewood": "stripped_birch_wood", + "lbarewood": "stripped_birch_wood", + "whitebarewood": "stripped_birch_wood", + "wbarewood": "stripped_birch_wood", + "strippedbirchlogall": "stripped_birch_wood", + "strippedblogall": "stripped_birch_wood", + "strippedlightlogall": "stripped_birch_wood", + "strippedllogall": "stripped_birch_wood", + "strippedwhitelogall": "stripped_birch_wood", + "strippedwlogall": "stripped_birch_wood", + "barebirchlogall": "stripped_birch_wood", + "bareblogall": "stripped_birch_wood", + "barelightlogall": "stripped_birch_wood", + "barellogall": "stripped_birch_wood", + "barewhitelogall": "stripped_birch_wood", + "barewlogall": "stripped_birch_wood", + "strippedbirchtrunkall": "stripped_birch_wood", + "strippedbtrunkall": "stripped_birch_wood", + "strippedlighttrunkall": "stripped_birch_wood", + "strippedltrunkall": "stripped_birch_wood", + "strippedwhitetrunkall": "stripped_birch_wood", + "strippedwtrunkall": "stripped_birch_wood", + "barebirchtrunkall": "stripped_birch_wood", + "barebtrunkall": "stripped_birch_wood", + "barelighttrunkall": "stripped_birch_wood", + "bareltrunkall": "stripped_birch_wood", + "barewhitetrunkall": "stripped_birch_wood", + "barewtrunkall": "stripped_birch_wood", + "strippedbirchtreeall": "stripped_birch_wood", + "strippedbtreeall": "stripped_birch_wood", + "strippedlighttreeall": "stripped_birch_wood", + "strippedltreeall": "stripped_birch_wood", + "strippedwhitetreeall": "stripped_birch_wood", + "strippedwtreeall": "stripped_birch_wood", + "barebirchtreeall": "stripped_birch_wood", + "barebtreeall": "stripped_birch_wood", + "barelighttreeall": "stripped_birch_wood", + "bareltreeall": "stripped_birch_wood", + "barewhitetreeall": "stripped_birch_wood", + "barewtreeall": "stripped_birch_wood", + "stripped_dark_oak_log": { + "material": "STRIPPED_DARK_OAK_LOG" + }, + "strippeddarkoaklog": "stripped_dark_oak_log", + "darkoakstrippedlog": "stripped_dark_oak_log", + "doakstrippedlog": "stripped_dark_oak_log", + "dostrippedlog": "stripped_dark_oak_log", + "darkoakbarelog": "stripped_dark_oak_log", + "doakbarelog": "stripped_dark_oak_log", + "dobarelog": "stripped_dark_oak_log", + "strippeddarkoaktree": "stripped_dark_oak_log", + "strippeddoaktree": "stripped_dark_oak_log", + "strippeddotree": "stripped_dark_oak_log", + "baredarkoaktree": "stripped_dark_oak_log", + "baredoaktree": "stripped_dark_oak_log", + "baredotree": "stripped_dark_oak_log", + "strippeddarkoaktrunk": "stripped_dark_oak_log", + "strippeddoaktrunk": "stripped_dark_oak_log", + "strippeddotrunk": "stripped_dark_oak_log", + "baredarkoaktrunk": "stripped_dark_oak_log", + "baredoaktrunk": "stripped_dark_oak_log", + "baredotrunk": "stripped_dark_oak_log", + "stripped_dark_oak_wood": { + "material": "STRIPPED_DARK_OAK_WOOD" + }, + "strippeddarkoakwood": "stripped_dark_oak_wood", + "darkoakstrippedwood": "stripped_dark_oak_wood", + "doakstrippedwood": "stripped_dark_oak_wood", + "dostrippedwood": "stripped_dark_oak_wood", + "darkoakbarewood": "stripped_dark_oak_wood", + "doakbarewood": "stripped_dark_oak_wood", + "dobarewood": "stripped_dark_oak_wood", + "strippeddarkoaklogall": "stripped_dark_oak_wood", + "strippeddoaklogall": "stripped_dark_oak_wood", + "strippeddologall": "stripped_dark_oak_wood", + "baredarkoaklogall": "stripped_dark_oak_wood", + "baredoaklogall": "stripped_dark_oak_wood", + "baredologall": "stripped_dark_oak_wood", + "strippeddarkoaktrunkall": "stripped_dark_oak_wood", + "strippeddoaktrunkall": "stripped_dark_oak_wood", + "strippeddotrunkall": "stripped_dark_oak_wood", + "baredarkoaktrunkall": "stripped_dark_oak_wood", + "baredoaktrunkall": "stripped_dark_oak_wood", + "baredotrunkall": "stripped_dark_oak_wood", + "strippeddarkoaktreeall": "stripped_dark_oak_wood", + "strippeddoaktreeall": "stripped_dark_oak_wood", + "strippeddotreeall": "stripped_dark_oak_wood", + "baredarkoaktreeall": "stripped_dark_oak_wood", + "baredoaktreeall": "stripped_dark_oak_wood", + "baredotreeall": "stripped_dark_oak_wood", + "stripped_jungle_log": { + "material": "STRIPPED_JUNGLE_LOG" + }, + "strippedjunglelog": "stripped_jungle_log", + "junglestrippedlog": "stripped_jungle_log", + "jstrippedlog": "stripped_jungle_log", + "foreststrippedlog": "stripped_jungle_log", + "fstrippedlog": "stripped_jungle_log", + "junglebarelog": "stripped_jungle_log", + "jbarelog": "stripped_jungle_log", + "forestbarelog": "stripped_jungle_log", + "fbarelog": "stripped_jungle_log", + "strippedjungletree": "stripped_jungle_log", + "strippedjtree": "stripped_jungle_log", + "strippedforesttree": "stripped_jungle_log", + "strippedftree": "stripped_jungle_log", + "barejungletree": "stripped_jungle_log", + "barejtree": "stripped_jungle_log", + "bareforesttree": "stripped_jungle_log", + "bareftree": "stripped_jungle_log", + "strippedjungletrunk": "stripped_jungle_log", + "strippedjtrunk": "stripped_jungle_log", + "strippedforesttrunk": "stripped_jungle_log", + "strippedftrunk": "stripped_jungle_log", + "barejungletrunk": "stripped_jungle_log", + "barejtrunk": "stripped_jungle_log", + "bareforesttrunk": "stripped_jungle_log", + "bareftrunk": "stripped_jungle_log", + "stripped_jungle_wood": { + "material": "STRIPPED_JUNGLE_WOOD" + }, + "strippedjunglewood": "stripped_jungle_wood", + "junglestrippedwood": "stripped_jungle_wood", + "jstrippedwood": "stripped_jungle_wood", + "foreststrippedwood": "stripped_jungle_wood", + "fstrippedwood": "stripped_jungle_wood", + "junglebarewood": "stripped_jungle_wood", + "jbarewood": "stripped_jungle_wood", + "forestbarewood": "stripped_jungle_wood", + "fbarewood": "stripped_jungle_wood", + "strippedjunglelogall": "stripped_jungle_wood", + "strippedjlogall": "stripped_jungle_wood", + "strippedforestlogall": "stripped_jungle_wood", + "strippedflogall": "stripped_jungle_wood", + "barejunglelogall": "stripped_jungle_wood", + "barejlogall": "stripped_jungle_wood", + "bareforestlogall": "stripped_jungle_wood", + "bareflogall": "stripped_jungle_wood", + "strippedjungletrunkall": "stripped_jungle_wood", + "strippedjtrunkall": "stripped_jungle_wood", + "strippedforesttrunkall": "stripped_jungle_wood", + "strippedftrunkall": "stripped_jungle_wood", + "barejungletrunkall": "stripped_jungle_wood", + "barejtrunkall": "stripped_jungle_wood", + "bareforesttrunkall": "stripped_jungle_wood", + "bareftrunkall": "stripped_jungle_wood", + "strippedjungletreeall": "stripped_jungle_wood", + "strippedjtreeall": "stripped_jungle_wood", + "strippedforesttreeall": "stripped_jungle_wood", + "strippedftreeall": "stripped_jungle_wood", + "barejungletreeall": "stripped_jungle_wood", + "barejtreeall": "stripped_jungle_wood", + "bareforesttreeall": "stripped_jungle_wood", + "bareftreeall": "stripped_jungle_wood", + "stripped_oak_log": { + "material": "STRIPPED_OAK_LOG" + }, + "strippedoaklog": "stripped_oak_log", + "strippedlog": "stripped_oak_log", + "oakstrippedlog": "stripped_oak_log", + "ostrippedlog": "stripped_oak_log", + "barelog": "stripped_oak_log", + "oakbarelog": "stripped_oak_log", + "obarelog": "stripped_oak_log", + "strippedtree": "stripped_oak_log", + "strippedoaktree": "stripped_oak_log", + "strippedotree": "stripped_oak_log", + "baretree": "stripped_oak_log", + "bareoaktree": "stripped_oak_log", + "bareotree": "stripped_oak_log", + "strippedtrunk": "stripped_oak_log", + "strippedoaktrunk": "stripped_oak_log", + "strippedotrunk": "stripped_oak_log", + "baretrunk": "stripped_oak_log", + "bareoaktrunk": "stripped_oak_log", + "bareotrunk": "stripped_oak_log", + "stripped_oak_wood": { + "material": "STRIPPED_OAK_WOOD" + }, + "strippedoakwood": "stripped_oak_wood", + "strippedwood": "stripped_oak_wood", + "oakstrippedwood": "stripped_oak_wood", + "ostrippedwood": "stripped_oak_wood", + "barewood": "stripped_oak_wood", + "oakbarewood": "stripped_oak_wood", + "obarewood": "stripped_oak_wood", + "strippedlogall": "stripped_oak_wood", + "strippedoaklogall": "stripped_oak_wood", + "strippedologall": "stripped_oak_wood", + "barelogall": "stripped_oak_wood", + "bareoaklogall": "stripped_oak_wood", + "bareologall": "stripped_oak_wood", + "strippedtrunkall": "stripped_oak_wood", + "strippedoaktrunkall": "stripped_oak_wood", + "strippedotrunkall": "stripped_oak_wood", + "baretrunkall": "stripped_oak_wood", + "bareoaktrunkall": "stripped_oak_wood", + "bareotrunkall": "stripped_oak_wood", + "strippedtreeall": "stripped_oak_wood", + "strippedoaktreeall": "stripped_oak_wood", + "strippedotreeall": "stripped_oak_wood", + "baretreeall": "stripped_oak_wood", + "bareoaktreeall": "stripped_oak_wood", + "bareotreeall": "stripped_oak_wood", + "stripped_spruce_log": { + "material": "STRIPPED_SPRUCE_LOG" + }, + "strippedsprucelog": "stripped_spruce_log", + "pinestrippedlog": "stripped_spruce_log", + "pstrippedlog": "stripped_spruce_log", + "darkstrippedlog": "stripped_spruce_log", + "dstrippedlog": "stripped_spruce_log", + "sprucestrippedlog": "stripped_spruce_log", + "sstrippedlog": "stripped_spruce_log", + "pinebarelog": "stripped_spruce_log", + "pbarelog": "stripped_spruce_log", + "darkbarelog": "stripped_spruce_log", + "dbarelog": "stripped_spruce_log", + "sprucebarelog": "stripped_spruce_log", + "sbarelog": "stripped_spruce_log", + "strippedpinetree": "stripped_spruce_log", + "strippedptree": "stripped_spruce_log", + "strippeddarktree": "stripped_spruce_log", + "strippeddtree": "stripped_spruce_log", + "strippedsprucetree": "stripped_spruce_log", + "strippedstree": "stripped_spruce_log", + "barepinetree": "stripped_spruce_log", + "bareptree": "stripped_spruce_log", + "baredarktree": "stripped_spruce_log", + "baredtree": "stripped_spruce_log", + "baresprucetree": "stripped_spruce_log", + "barestree": "stripped_spruce_log", + "strippedpinetrunk": "stripped_spruce_log", + "strippedptrunk": "stripped_spruce_log", + "strippeddarktrunk": "stripped_spruce_log", + "strippeddtrunk": "stripped_spruce_log", + "strippedsprucetrunk": "stripped_spruce_log", + "strippedstrunk": "stripped_spruce_log", + "barepinetrunk": "stripped_spruce_log", + "bareptrunk": "stripped_spruce_log", + "baredarktrunk": "stripped_spruce_log", + "baredtrunk": "stripped_spruce_log", + "baresprucetrunk": "stripped_spruce_log", + "barestrunk": "stripped_spruce_log", + "stripped_spruce_wood": { + "material": "STRIPPED_SPRUCE_WOOD" + }, + "strippedsprucewood": "stripped_spruce_wood", + "pinestrippedwood": "stripped_spruce_wood", + "pstrippedwood": "stripped_spruce_wood", + "darkstrippedwood": "stripped_spruce_wood", + "dstrippedwood": "stripped_spruce_wood", + "sprucestrippedwood": "stripped_spruce_wood", + "sstrippedwood": "stripped_spruce_wood", + "pinebarewood": "stripped_spruce_wood", + "pbarewood": "stripped_spruce_wood", + "darkbarewood": "stripped_spruce_wood", + "dbarewood": "stripped_spruce_wood", + "sprucebarewood": "stripped_spruce_wood", + "sbarewood": "stripped_spruce_wood", + "strippedpinelogall": "stripped_spruce_wood", + "strippedplogall": "stripped_spruce_wood", + "strippeddarklogall": "stripped_spruce_wood", + "strippeddlogall": "stripped_spruce_wood", + "strippedsprucelogall": "stripped_spruce_wood", + "strippedslogall": "stripped_spruce_wood", + "barepinelogall": "stripped_spruce_wood", + "bareplogall": "stripped_spruce_wood", + "baredarklogall": "stripped_spruce_wood", + "baredlogall": "stripped_spruce_wood", + "baresprucelogall": "stripped_spruce_wood", + "bareslogall": "stripped_spruce_wood", + "strippedpinetrunkall": "stripped_spruce_wood", + "strippedptrunkall": "stripped_spruce_wood", + "strippeddarktrunkall": "stripped_spruce_wood", + "strippeddtrunkall": "stripped_spruce_wood", + "strippedsprucetrunkall": "stripped_spruce_wood", + "strippedstrunkall": "stripped_spruce_wood", + "barepinetrunkall": "stripped_spruce_wood", + "bareptrunkall": "stripped_spruce_wood", + "baredarktrunkall": "stripped_spruce_wood", + "baredtrunkall": "stripped_spruce_wood", + "baresprucetrunkall": "stripped_spruce_wood", + "barestrunkall": "stripped_spruce_wood", + "strippedpinetreeall": "stripped_spruce_wood", + "strippedptreeall": "stripped_spruce_wood", + "strippeddarktreeall": "stripped_spruce_wood", + "strippeddtreeall": "stripped_spruce_wood", + "strippedsprucetreeall": "stripped_spruce_wood", + "strippedstreeall": "stripped_spruce_wood", + "barepinetreeall": "stripped_spruce_wood", + "bareptreeall": "stripped_spruce_wood", + "baredarktreeall": "stripped_spruce_wood", + "baredtreeall": "stripped_spruce_wood", + "baresprucetreeall": "stripped_spruce_wood", + "barestreeall": "stripped_spruce_wood", + "structure_block": { + "material": "STRUCTURE_BLOCK" + }, + "structureblock": "structure_block", + "structure_void": { + "material": "STRUCTURE_VOID" + }, + "structurevoid": "structure_void", + "sugar": "sugar", + "sugar_cane": { + "material": "SUGAR_CANE" + }, + "sugarcane": "sugar_cane", + "sunflower": "sunflower", + "suspicious_stew": { + "material": "SUSPICIOUS_STEW" + }, + "suspiciousstew": "suspicious_stew", + "sweet_berries": { + "material": "SWEET_BERRIES" + }, + "sweetberries": "sweet_berries", + "sweet_berry_bush": { + "material": "SWEET_BERRY_BUSH", + "unspawnable": true + }, + "sweetberrybush": "sweet_berry_bush", + "tall_grass": { + "material": "TALL_GRASS" + }, + "tallgrass": "tall_grass", + "longgrass": "tall_grass", + "wildgrass": "tall_grass", + "grasslong": "tall_grass", + "grasstall": "tall_grass", + "grasswild": "tall_grass", + "lgrass": "tall_grass", + "tgrass": "tall_grass", + "wgrass": "tall_grass", + "tall_seagrass": { + "material": "TALL_SEAGRASS", + "unspawnable": true + }, + "tallseagrass": "tall_seagrass", + "terracotta": "terracotta", + "tipped_arrow": { + "material": "TIPPED_ARROW" + }, + "tippedarrow": "tipped_arrow", + "tnt": "tnt", + "tntblock": "tnt", + "blocktnt": "tnt", + "bombblock": "tnt", + "blockbomb": "tnt", + "dynamiteblock": "tnt", + "blockdynamite": "tnt", + "bomb": "tnt", + "dynamite": "tnt", + "tnt_minecart": { + "material": "TNT_MINECART" + }, + "tntminecart": "tnt_minecart", + "tntmcart": "tnt_minecart", + "tntmc": "tnt_minecart", + "tntcart": "tnt_minecart", + "dynamiteminecart": "tnt_minecart", + "dynamitemcart": "tnt_minecart", + "dynamitemc": "tnt_minecart", + "dynamitecart": "tnt_minecart", + "bombminecart": "tnt_minecart", + "bombmcart": "tnt_minecart", + "bombmc": "tnt_minecart", + "bombcart": "tnt_minecart", + "tminecart": "tnt_minecart", + "tmcart": "tnt_minecart", + "tmc": "tnt_minecart", + "tcart": "tnt_minecart", + "dminecart": "tnt_minecart", + "dmcart": "tnt_minecart", + "dmc": "tnt_minecart", + "dcart": "tnt_minecart", + "bminecart": "tnt_minecart", + "bmcart": "tnt_minecart", + "bmc": "tnt_minecart", + "bcart": "tnt_minecart", + "torch": "torch", + "burningstick": "torch", + "burnstick": "torch", + "totem_of_undying": { + "material": "TOTEM_OF_UNDYING" + }, + "totemofundying": "totem_of_undying", + "totem": "totem_of_undying", + "trader_llama_spawn_egg": { + "material": "TRADER_LLAMA_SPAWN_EGG" + }, + "traderllamaspawnegg": "trader_llama_spawn_egg", + "trapped_chest": { + "material": "TRAPPED_CHEST" + }, + "trappedchest": "trapped_chest", + "trapchest": "trapped_chest", + "chesttrapped": "trapped_chest", + "chesttrap": "trapped_chest", + "trident": "trident", + "tripwire": { + "material": "TRIPWIRE", + "unspawnable": true + }, + "tripwire_hook": { + "material": "TRIPWIRE_HOOK" + }, + "tripwirehook": "tripwire_hook", + "trip": "tripwire_hook", + "tripwirelever": "tripwire_hook", + "triphook": "tripwire_hook", + "tropical_fish": { + "material": "TROPICAL_FISH" + }, + "tropicalfish": "tropical_fish", + "rawclownfish": "tropical_fish", + "rawnemo": "tropical_fish", + "rawclfish": "tropical_fish", + "rawfishcl": "tropical_fish", + "rawnfish": "tropical_fish", + "rawfishn": "tropical_fish", + "raclownfish": "tropical_fish", + "ranemo": "tropical_fish", + "raclfish": "tropical_fish", + "rafishcl": "tropical_fish", + "ranfish": "tropical_fish", + "rafishn": "tropical_fish", + "uncookedclownfish": "tropical_fish", + "uncookednemo": "tropical_fish", + "uncookedclfish": "tropical_fish", + "uncookedfishcl": "tropical_fish", + "uncookednfish": "tropical_fish", + "uncookedfishn": "tropical_fish", + "plainclownfish": "tropical_fish", + "plainnemo": "tropical_fish", + "plainclfish": "tropical_fish", + "plainfishcl": "tropical_fish", + "plainnfish": "tropical_fish", + "plainfishn": "tropical_fish", + "clownfish": "tropical_fish", + "nemo": "tropical_fish", + "clfish": "tropical_fish", + "fishcl": "tropical_fish", + "nfish": "tropical_fish", + "fishn": "tropical_fish", + "tropical_fish_bucket": { + "material": "TROPICAL_FISH_BUCKET" + }, + "tropicalfishbucket": "tropical_fish_bucket", + "tropicalfishpail": "tropical_fish_bucket", + "tropicfishbucket": "tropical_fish_bucket", + "tropicfishpail": "tropical_fish_bucket", + "tfishbucket": "tropical_fish_bucket", + "tfishpail": "tropical_fish_bucket", + "tropicalfbucket": "tropical_fish_bucket", + "tropicalfpail": "tropical_fish_bucket", + "tropicfbucket": "tropical_fish_bucket", + "tropicfpail": "tropical_fish_bucket", + "tropical_fish_spawn_egg": { + "material": "TROPICAL_FISH_SPAWN_EGG" + }, + "tropicalfishspawnegg": "tropical_fish_spawn_egg", + "tropicalfishegg": "tropical_fish_spawn_egg", + "eggtropicalfish": "tropical_fish_spawn_egg", + "spawneggtropicalfish": "tropical_fish_spawn_egg", + "tropicalfishspawn": "tropical_fish_spawn_egg", + "spawntropicalfish": "tropical_fish_spawn_egg", + "tropicfishegg": "tropical_fish_spawn_egg", + "eggtropicfish": "tropical_fish_spawn_egg", + "tropicfishspawnegg": "tropical_fish_spawn_egg", + "spawneggtropicfish": "tropical_fish_spawn_egg", + "tropicfishspawn": "tropical_fish_spawn_egg", + "spawntropicfish": "tropical_fish_spawn_egg", + "tfishegg": "tropical_fish_spawn_egg", + "eggtfish": "tropical_fish_spawn_egg", + "tfishspawnegg": "tropical_fish_spawn_egg", + "spawneggtfish": "tropical_fish_spawn_egg", + "tfishspawn": "tropical_fish_spawn_egg", + "spawntfish": "tropical_fish_spawn_egg", + "tropicalfegg": "tropical_fish_spawn_egg", + "eggtropicalf": "tropical_fish_spawn_egg", + "tropicalfspawnegg": "tropical_fish_spawn_egg", + "spawneggtropicalf": "tropical_fish_spawn_egg", + "tropicalfspawn": "tropical_fish_spawn_egg", + "spawntropicalf": "tropical_fish_spawn_egg", + "tropicfegg": "tropical_fish_spawn_egg", + "eggtropicf": "tropical_fish_spawn_egg", + "tropicfspawnegg": "tropical_fish_spawn_egg", + "spawneggtropicf": "tropical_fish_spawn_egg", + "tropicfspawn": "tropical_fish_spawn_egg", + "spawntropicf": "tropical_fish_spawn_egg", + "tube_coral": { + "material": "TUBE_CORAL" + }, + "tubecoral": "tube_coral", + "tube_coral_block": { + "material": "TUBE_CORAL_BLOCK" + }, + "tubecoralblock": "tube_coral_block", + "tube_coral_fan": { + "material": "TUBE_CORAL_FAN" + }, + "tubecoralfan": "tube_coral_fan", + "tube_coral_wall_fan": { + "material": "TUBE_CORAL_WALL_FAN", + "unspawnable": true + }, + "tubecoralwallfan": "tube_coral_wall_fan", + "turtle_egg": { + "material": "TURTLE_EGG" + }, + "turtleegg": "turtle_egg", + "turtle_helmet": { + "material": "TURTLE_HELMET" + }, + "turtlehelmet": "turtle_helmet", + "turtle_spawn_egg": { + "material": "TURTLE_SPAWN_EGG" + }, + "turtlespawnegg": "turtle_spawn_egg", + "eggturtle": "turtle_spawn_egg", + "spawneggturtle": "turtle_spawn_egg", + "turtlespawn": "turtle_spawn_egg", + "spawnturtle": "turtle_spawn_egg", + "vex_spawn_egg": { + "material": "VEX_SPAWN_EGG" + }, + "vexspawnegg": "vex_spawn_egg", + "vexegg": "vex_spawn_egg", + "eggvex": "vex_spawn_egg", + "spawneggvex": "vex_spawn_egg", + "vexspawn": "vex_spawn_egg", + "spawnvex": "vex_spawn_egg", + "villager_spawn_egg": { + "material": "VILLAGER_SPAWN_EGG" + }, + "villagerspawnegg": "villager_spawn_egg", + "villageregg": "villager_spawn_egg", + "eggvillager": "villager_spawn_egg", + "spawneggvillager": "villager_spawn_egg", + "villagerspawn": "villager_spawn_egg", + "spawnvillager": "villager_spawn_egg", + "vindicator_spawn_egg": { + "material": "VINDICATOR_SPAWN_EGG" + }, + "vindicatorspawnegg": "vindicator_spawn_egg", + "vindicatoregg": "vindicator_spawn_egg", + "eggvindicator": "vindicator_spawn_egg", + "spawneggvindicator": "vindicator_spawn_egg", + "vindicatorspawn": "vindicator_spawn_egg", + "spawnvindicator": "vindicator_spawn_egg", + "vinegg": "vindicator_spawn_egg", + "eggvin": "vindicator_spawn_egg", + "vinspawnegg": "vindicator_spawn_egg", + "spawneggvin": "vindicator_spawn_egg", + "vinspawn": "vindicator_spawn_egg", + "spawnvin": "vindicator_spawn_egg", + "vine": "vine", + "vines": "vine", + "greenvines": "vine", + "greenvine": "vine", + "gardenvines": "vine", + "gardenvine": "vine", + "vinesgreen": "vine", + "vinegreen": "vine", + "vinesgarden": "vine", + "vinegarden": "vine", + "vinesg": "vine", + "vineg": "vine", + "gvines": "vine", + "gvine": "vine", + "void_air": { + "material": "VOID_AIR", + "unspawnable": true + }, + "voidair": "void_air", + "wall_torch": { + "material": "WALL_TORCH", + "unspawnable": true + }, + "walltorch": "wall_torch", + "wandering_trader_spawn_egg": { + "material": "WANDERING_TRADER_SPAWN_EGG" + }, + "wanderingtraderspawnegg": "wandering_trader_spawn_egg", + "water": { + "material": "WATER", + "unspawnable": true + }, + "stationarywater": "water", + "stillwater": "water", + "swater": "water", + "water_bucket": { + "material": "WATER_BUCKET" + }, + "waterbucket": "water_bucket", + "wet_sponge": { + "material": "WET_SPONGE" + }, + "wetsponge": "wet_sponge", + "wheat": "wheat", + "wheat_seeds": { + "material": "WHEAT_SEEDS" + }, + "wheatseeds": "wheat_seeds", + "white_banner": { + "material": "WHITE_BANNER" + }, + "whitebanner": "white_banner", + "standingbanner": "white_banner", + "banner": "white_banner", + "wstandingbanner": "white_banner", + "wbanner": "white_banner", + "whitestandingbanner": "white_banner", + "white_bed": { + "material": "WHITE_BED" + }, + "whitebed": "white_bed", + "bed": "white_bed", + "wbed": "white_bed", + "white_carpet": { + "material": "WHITE_CARPET" + }, + "whitecarpet": "white_carpet", + "carpet": "white_carpet", + "floor": "white_carpet", + "wcarpet": "white_carpet", + "wfloor": "white_carpet", + "whitefloor": "white_carpet", + "white_concrete": { + "material": "WHITE_CONCRETE" + }, + "whiteconcrete": "white_concrete", + "concrete": "white_concrete", + "wconcrete": "white_concrete", + "white_concrete_powder": { + "material": "WHITE_CONCRETE_POWDER" + }, + "whiteconcretepowder": "white_concrete_powder", + "concretepowder": "white_concrete_powder", + "concretesand": "white_concrete_powder", + "cpowder": "white_concrete_powder", + "cdust": "white_concrete_powder", + "cp": "white_concrete_powder", + "wconcretepowder": "white_concrete_powder", + "wconcretesand": "white_concrete_powder", + "wcpowder": "white_concrete_powder", + "wcdust": "white_concrete_powder", + "wcp": "white_concrete_powder", + "whiteconcretesand": "white_concrete_powder", + "whitecpowder": "white_concrete_powder", + "whitecdust": "white_concrete_powder", + "whitecp": "white_concrete_powder", + "white_dye": { + "material": "WHITE_DYE", + "fallbacks": [ + "BONE_MEAL" + ] + }, + "whitedye": "white_dye", + "white_glazed_terracotta": { + "material": "WHITE_GLAZED_TERRACOTTA" + }, + "whiteglazedterracotta": "white_glazed_terracotta", + "glazedtcota": "white_glazed_terracotta", + "glazedterra": "white_glazed_terracotta", + "glazedterracotta": "white_glazed_terracotta", + "glazedterracota": "white_glazed_terracotta", + "wglazedtcota": "white_glazed_terracotta", + "wglazedterra": "white_glazed_terracotta", + "wglazedterracotta": "white_glazed_terracotta", + "wglazedterracota": "white_glazed_terracotta", + "whiteglazedtcota": "white_glazed_terracotta", + "whiteglazedterra": "white_glazed_terracotta", + "whiteglazedterracota": "white_glazed_terracotta", + "white_shulker_box": { + "material": "WHITE_SHULKER_BOX" + }, + "whiteshulkerbox": "white_shulker_box", + "wshulkerbox": "white_shulker_box", + "wchest": "white_shulker_box", + "whitechest": "white_shulker_box", + "white_stained_glass": { + "material": "WHITE_STAINED_GLASS" + }, + "whitestainedglass": "white_stained_glass", + "sglass": "white_stained_glass", + "stainedglass": "white_stained_glass", + "wglass": "white_stained_glass", + "wsglass": "white_stained_glass", + "wstainedglass": "white_stained_glass", + "whiteglass": "white_stained_glass", + "whitesglass": "white_stained_glass", + "white_stained_glass_pane": { + "material": "WHITE_STAINED_GLASS_PANE" + }, + "whitestainedglasspane": "white_stained_glass_pane", + "sglasspane": "white_stained_glass_pane", + "stainedglasspane": "white_stained_glass_pane", + "gpane": "white_stained_glass_pane", + "wglasspane": "white_stained_glass_pane", + "wsglasspane": "white_stained_glass_pane", + "wstainedglasspane": "white_stained_glass_pane", + "wgpane": "white_stained_glass_pane", + "whiteglasspane": "white_stained_glass_pane", + "whitesglasspane": "white_stained_glass_pane", + "whitegpane": "white_stained_glass_pane", + "white_terracotta": { + "material": "WHITE_TERRACOTTA" + }, + "whiteterracotta": "white_terracotta", + "sclay": "white_terracotta", + "stainedclay": "white_terracotta", + "terra": "white_terracotta", + "tcota": "white_terracotta", + "terracota": "white_terracotta", + "wclay": "white_terracotta", + "wsclay": "white_terracotta", + "wstainedclay": "white_terracotta", + "wterra": "white_terracotta", + "wtcota": "white_terracotta", + "wterracota": "white_terracotta", + "wterracotta": "white_terracotta", + "whiteclay": "white_terracotta", + "whitesclay": "white_terracotta", + "whitestainedclay": "white_terracotta", + "whiteterra": "white_terracotta", + "whitetcota": "white_terracotta", + "whiteterracota": "white_terracotta", + "white_tulip": { + "material": "WHITE_TULIP" + }, + "whitetulip": "white_tulip", + "tulipwhite": "white_tulip", + "wtulip": "white_tulip", + "tulipw": "white_tulip", + "white_wall_banner": { + "material": "WHITE_WALL_BANNER", + "unspawnable": true + }, + "whitewallbanner": "white_wall_banner", + "white_wool": { + "material": "WHITE_WOOL" + }, + "whitewool": "white_wool", + "wool": "white_wool", + "cloth": "white_wool", + "cotton": "white_wool", + "wwool": "white_wool", + "wcloth": "white_wool", + "wcotton": "white_wool", + "whitecloth": "white_wool", + "whitecotton": "white_wool", + "witch_spawn_egg": { + "material": "WITCH_SPAWN_EGG" + }, + "witchspawnegg": "witch_spawn_egg", + "witchegg": "witch_spawn_egg", + "eggwitch": "witch_spawn_egg", + "spawneggwitch": "witch_spawn_egg", + "witchspawn": "witch_spawn_egg", + "spawnwitch": "witch_spawn_egg", + "wither_rose": { + "material": "WITHER_ROSE" + }, + "witherrose": "wither_rose", + "wither_skeleton_skull": { + "material": "WITHER_SKELETON_SKULL" + }, + "witherskeletonskull": "wither_skeleton_skull", + "witherskeletonhead": "wither_skeleton_skull", + "headwitherskeleton": "wither_skeleton_skull", + "stevewitherskeleton": "wither_skeleton_skull", + "witherskeletonmask": "wither_skeleton_skull", + "witherskeletonheadmask": "wither_skeleton_skull", + "wskeletonhead": "wither_skeleton_skull", + "wskeletonskull": "wither_skeleton_skull", + "headwskeleton": "wither_skeleton_skull", + "stevewskeleton": "wither_skeleton_skull", + "wskeletonmask": "wither_skeleton_skull", + "wskeletonheadmask": "wither_skeleton_skull", + "witherskhead": "wither_skeleton_skull", + "witherskskull": "wither_skeleton_skull", + "headwithersk": "wither_skeleton_skull", + "stevewithersk": "wither_skeleton_skull", + "witherskmask": "wither_skeleton_skull", + "witherskheadmask": "wither_skeleton_skull", + "wskhead": "wither_skeleton_skull", + "wskskull": "wither_skeleton_skull", + "headwsk": "wither_skeleton_skull", + "stevewsk": "wither_skeleton_skull", + "wskmask": "wither_skeleton_skull", + "wskheadmask": "wither_skeleton_skull", + "witherhead": "wither_skeleton_skull", + "witherskull": "wither_skeleton_skull", + "headwither": "wither_skeleton_skull", + "stevewither": "wither_skeleton_skull", + "withermask": "wither_skeleton_skull", + "witherheadmask": "wither_skeleton_skull", + "wither_skeleton_spawn_egg": { + "material": "WITHER_SKELETON_SPAWN_EGG" + }, + "witherskeletonspawnegg": "wither_skeleton_spawn_egg", + "witherskeletonegg": "wither_skeleton_spawn_egg", + "eggwitherskeleton": "wither_skeleton_spawn_egg", + "spawneggwitherskeleton": "wither_skeleton_spawn_egg", + "witherskeletonspawn": "wither_skeleton_spawn_egg", + "spawnwitherskeleton": "wither_skeleton_spawn_egg", + "wskeletonegg": "wither_skeleton_spawn_egg", + "eggwskeleton": "wither_skeleton_spawn_egg", + "wskeletonspawnegg": "wither_skeleton_spawn_egg", + "spawneggwskeleton": "wither_skeleton_spawn_egg", + "wskeletonspawn": "wither_skeleton_spawn_egg", + "spawnwskeleton": "wither_skeleton_spawn_egg", + "witherskegg": "wither_skeleton_spawn_egg", + "eggwithersk": "wither_skeleton_spawn_egg", + "witherskspawnegg": "wither_skeleton_spawn_egg", + "spawneggwithersk": "wither_skeleton_spawn_egg", + "witherskspawn": "wither_skeleton_spawn_egg", + "spawnwithersk": "wither_skeleton_spawn_egg", + "wskegg": "wither_skeleton_spawn_egg", + "eggwsk": "wither_skeleton_spawn_egg", + "wskspawnegg": "wither_skeleton_spawn_egg", + "spawneggwsk": "wither_skeleton_spawn_egg", + "wskspawn": "wither_skeleton_spawn_egg", + "spawnwsk": "wither_skeleton_spawn_egg", + "witheregg": "wither_skeleton_spawn_egg", + "eggwither": "wither_skeleton_spawn_egg", + "witherspawnegg": "wither_skeleton_spawn_egg", + "spawneggwither": "wither_skeleton_spawn_egg", + "witherspawn": "wither_skeleton_spawn_egg", + "spawnwither": "wither_skeleton_spawn_egg", + "wither_skeleton_wall_skull": { + "material": "WITHER_SKELETON_WALL_SKULL", + "unspawnable": true + }, + "witherskeletonwallskull": "wither_skeleton_wall_skull", + "wolf_spawn_egg": { + "material": "WOLF_SPAWN_EGG" + }, + "wolfspawnegg": "wolf_spawn_egg", + "wolfegg": "wolf_spawn_egg", + "eggwolf": "wolf_spawn_egg", + "spawneggwolf": "wolf_spawn_egg", + "wolfspawn": "wolf_spawn_egg", + "spawnwolf": "wolf_spawn_egg", + "wooden_axe": { + "material": "WOODEN_AXE" + }, + "woodenaxe": "wooden_axe", + "woodaxe": "wooden_axe", + "waxe": "wooden_axe", + "wooden_hoe": { + "material": "WOODEN_HOE" + }, + "woodenhoe": "wooden_hoe", + "woodhoe": "wooden_hoe", + "whoe": "wooden_hoe", + "wooden_pickaxe": { + "material": "WOODEN_PICKAXE" + }, + "woodenpickaxe": "wooden_pickaxe", + "woodenpick": "wooden_pickaxe", + "woodpickaxe": "wooden_pickaxe", + "woodpick": "wooden_pickaxe", + "wpickaxe": "wooden_pickaxe", + "wpick": "wooden_pickaxe", + "wooden_shovel": { + "material": "WOODEN_SHOVEL" + }, + "woodenshovel": "wooden_shovel", + "woodenspade": "wooden_shovel", + "woodshovel": "wooden_shovel", + "woodspade": "wooden_shovel", + "wshovel": "wooden_shovel", + "wspade": "wooden_shovel", + "wooden_sword": { + "material": "WOODEN_SWORD" + }, + "woodensword": "wooden_sword", + "woodsword": "wooden_sword", + "wsword": "wooden_sword", + "writable_book": { + "material": "WRITABLE_BOOK" + }, + "writablebook": "writable_book", + "written_book": { + "material": "WRITTEN_BOOK" + }, + "writtenbook": "written_book", + "yellow_banner": { + "material": "YELLOW_BANNER" + }, + "yellowbanner": "yellow_banner", + "ystandingbanner": "yellow_banner", + "ybanner": "yellow_banner", + "yellowstandingbanner": "yellow_banner", + "yellow_bed": { + "material": "YELLOW_BED" + }, + "yellowbed": "yellow_bed", + "ybed": "yellow_bed", + "yellow_carpet": { + "material": "YELLOW_CARPET" + }, + "yellowcarpet": "yellow_carpet", + "ycarpet": "yellow_carpet", + "yfloor": "yellow_carpet", + "yellowfloor": "yellow_carpet", + "yellow_concrete": { + "material": "YELLOW_CONCRETE" + }, + "yellowconcrete": "yellow_concrete", + "yconcrete": "yellow_concrete", + "yellow_concrete_powder": { + "material": "YELLOW_CONCRETE_POWDER" + }, + "yellowconcretepowder": "yellow_concrete_powder", + "yconcretepowder": "yellow_concrete_powder", + "yconcretesand": "yellow_concrete_powder", + "ycpowder": "yellow_concrete_powder", + "ycdust": "yellow_concrete_powder", + "ycp": "yellow_concrete_powder", + "yellowconcretesand": "yellow_concrete_powder", + "yellowcpowder": "yellow_concrete_powder", + "yellowcdust": "yellow_concrete_powder", + "yellowcp": "yellow_concrete_powder", + "yellow_dye": { + "material": "YELLOW_DYE", + "fallbacks": [ + "DANDELION_YELLOW" + ] + }, + "yellowdye": "yellow_dye", + "yellow_glazed_terracotta": { + "material": "YELLOW_GLAZED_TERRACOTTA" + }, + "yellowglazedterracotta": "yellow_glazed_terracotta", + "yglazedtcota": "yellow_glazed_terracotta", + "yglazedterra": "yellow_glazed_terracotta", + "yglazedterracotta": "yellow_glazed_terracotta", + "yglazedterracota": "yellow_glazed_terracotta", + "yellowglazedtcota": "yellow_glazed_terracotta", + "yellowglazedterra": "yellow_glazed_terracotta", + "yellowglazedterracota": "yellow_glazed_terracotta", + "yellow_shulker_box": { + "material": "YELLOW_SHULKER_BOX" + }, + "yellowshulkerbox": "yellow_shulker_box", + "yshulkerbox": "yellow_shulker_box", + "ychest": "yellow_shulker_box", + "yellowchest": "yellow_shulker_box", + "yellow_stained_glass": { + "material": "YELLOW_STAINED_GLASS" + }, + "yellowstainedglass": "yellow_stained_glass", + "yglass": "yellow_stained_glass", + "ysglass": "yellow_stained_glass", + "ystainedglass": "yellow_stained_glass", + "yellowglass": "yellow_stained_glass", + "yellowsglass": "yellow_stained_glass", + "yellow_stained_glass_pane": { + "material": "YELLOW_STAINED_GLASS_PANE" + }, + "yellowstainedglasspane": "yellow_stained_glass_pane", + "yglasspane": "yellow_stained_glass_pane", + "ysglasspane": "yellow_stained_glass_pane", + "ystainedglasspane": "yellow_stained_glass_pane", + "ygpane": "yellow_stained_glass_pane", + "yellowglasspane": "yellow_stained_glass_pane", + "yellowsglasspane": "yellow_stained_glass_pane", + "yellowgpane": "yellow_stained_glass_pane", + "yellow_terracotta": { + "material": "YELLOW_TERRACOTTA" + }, + "yellowterracotta": "yellow_terracotta", + "yclay": "yellow_terracotta", + "ysclay": "yellow_terracotta", + "ystainedclay": "yellow_terracotta", + "yterra": "yellow_terracotta", + "ytcota": "yellow_terracotta", + "yterracota": "yellow_terracotta", + "yterracotta": "yellow_terracotta", + "yellowclay": "yellow_terracotta", + "yellowsclay": "yellow_terracotta", + "yellowstainedclay": "yellow_terracotta", + "yellowterra": "yellow_terracotta", + "yellowtcota": "yellow_terracotta", + "yellowterracota": "yellow_terracotta", + "yellow_wall_banner": { + "material": "YELLOW_WALL_BANNER", + "unspawnable": true + }, + "yellowwallbanner": "yellow_wall_banner", + "yellow_wool": { + "material": "YELLOW_WOOL" + }, + "yellowwool": "yellow_wool", + "ywool": "yellow_wool", + "ycloth": "yellow_wool", + "ycotton": "yellow_wool", + "yellowcloth": "yellow_wool", + "yellowcotton": "yellow_wool", + "zombie_head": { + "material": "ZOMBIE_HEAD" + }, + "zombiehead": "zombie_head", + "zombieskull": "zombie_head", + "headzombie": "zombie_head", + "stevezombie": "zombie_head", + "zombiemask": "zombie_head", + "zombieheadmask": "zombie_head", + "zombie_horse_spawn_egg": { + "material": "ZOMBIE_HORSE_SPAWN_EGG" + }, + "zombiehorsespawnegg": "zombie_horse_spawn_egg", + "zombiehorseegg": "zombie_horse_spawn_egg", + "eggzombiehorse": "zombie_horse_spawn_egg", + "spawneggzombiehorse": "zombie_horse_spawn_egg", + "zombiehorsespawn": "zombie_horse_spawn_egg", + "spawnzombiehorse": "zombie_horse_spawn_egg", + "zhorseegg": "zombie_horse_spawn_egg", + "eggzhorse": "zombie_horse_spawn_egg", + "zhorsespawnegg": "zombie_horse_spawn_egg", + "spawneggzhorse": "zombie_horse_spawn_egg", + "zhorsespawn": "zombie_horse_spawn_egg", + "spawnzhorse": "zombie_horse_spawn_egg", + "zombie_pigman_spawn_egg": { + "material": "ZOMBIE_PIGMAN_SPAWN_EGG" + }, + "zombiepigmanspawnegg": "zombie_pigman_spawn_egg", + "zombiepigmanegg": "zombie_pigman_spawn_egg", + "eggzombiepigman": "zombie_pigman_spawn_egg", + "spawneggzombiepigman": "zombie_pigman_spawn_egg", + "zombiepigmanspawn": "zombie_pigman_spawn_egg", + "spawnzombiepigman": "zombie_pigman_spawn_egg", + "zpigmanegg": "zombie_pigman_spawn_egg", + "eggzpigman": "zombie_pigman_spawn_egg", + "zpigmanspawnegg": "zombie_pigman_spawn_egg", + "spawneggzpigman": "zombie_pigman_spawn_egg", + "zpigmanspawn": "zombie_pigman_spawn_egg", + "spawnzpigman": "zombie_pigman_spawn_egg", + "pigmanegg": "zombie_pigman_spawn_egg", + "eggpigman": "zombie_pigman_spawn_egg", + "pigmanspawnegg": "zombie_pigman_spawn_egg", + "spawneggpigman": "zombie_pigman_spawn_egg", + "pigmanspawn": "zombie_pigman_spawn_egg", + "spawnpigman": "zombie_pigman_spawn_egg", + "zombiepmanegg": "zombie_pigman_spawn_egg", + "eggzombiepman": "zombie_pigman_spawn_egg", + "zombiepmanspawnegg": "zombie_pigman_spawn_egg", + "spawneggzombiepman": "zombie_pigman_spawn_egg", + "zombiepmanspawn": "zombie_pigman_spawn_egg", + "spawnzombiepman": "zombie_pigman_spawn_egg", + "zpmanegg": "zombie_pigman_spawn_egg", + "eggzpman": "zombie_pigman_spawn_egg", + "zpmanspawnegg": "zombie_pigman_spawn_egg", + "spawneggzpman": "zombie_pigman_spawn_egg", + "zpmanspawn": "zombie_pigman_spawn_egg", + "spawnzpman": "zombie_pigman_spawn_egg", + "zombiepigmegg": "zombie_pigman_spawn_egg", + "eggzombiepigm": "zombie_pigman_spawn_egg", + "zombiepigmspawnegg": "zombie_pigman_spawn_egg", + "spawneggzombiepigm": "zombie_pigman_spawn_egg", + "zombiepigmspawn": "zombie_pigman_spawn_egg", + "spawnzombiepigm": "zombie_pigman_spawn_egg", + "zpigmegg": "zombie_pigman_spawn_egg", + "eggzpigm": "zombie_pigman_spawn_egg", + "zpigmspawnegg": "zombie_pigman_spawn_egg", + "spawneggzpigm": "zombie_pigman_spawn_egg", + "zpigmspawn": "zombie_pigman_spawn_egg", + "spawnzpigm": "zombie_pigman_spawn_egg", + "zombiepigegg": "zombie_pigman_spawn_egg", + "eggzombiepig": "zombie_pigman_spawn_egg", + "zombiepigspawnegg": "zombie_pigman_spawn_egg", + "spawneggzombiepig": "zombie_pigman_spawn_egg", + "zombiepigspawn": "zombie_pigman_spawn_egg", + "spawnzombiepig": "zombie_pigman_spawn_egg", + "zpigegg": "zombie_pigman_spawn_egg", + "eggzpig": "zombie_pigman_spawn_egg", + "zpigspawnegg": "zombie_pigman_spawn_egg", + "spawneggzpig": "zombie_pigman_spawn_egg", + "zpigspawn": "zombie_pigman_spawn_egg", + "spawnzpig": "zombie_pigman_spawn_egg", + "zombiepmegg": "zombie_pigman_spawn_egg", + "eggzombiepm": "zombie_pigman_spawn_egg", + "zombiepmspawnegg": "zombie_pigman_spawn_egg", + "spawneggzombiepm": "zombie_pigman_spawn_egg", + "zombiepmspawn": "zombie_pigman_spawn_egg", + "spawnzombiepm": "zombie_pigman_spawn_egg", + "zombiepegg": "zombie_pigman_spawn_egg", + "eggzombiep": "zombie_pigman_spawn_egg", + "zombiepspawnegg": "zombie_pigman_spawn_egg", + "spawneggzombiep": "zombie_pigman_spawn_egg", + "zombiepspawn": "zombie_pigman_spawn_egg", + "spawnzombiep": "zombie_pigman_spawn_egg", + "zombiepigmenegg": "zombie_pigman_spawn_egg", + "eggzombiepigmen": "zombie_pigman_spawn_egg", + "zombiepigmenspawnegg": "zombie_pigman_spawn_egg", + "spawneggzombiepigmen": "zombie_pigman_spawn_egg", + "zombiepigmenspawn": "zombie_pigman_spawn_egg", + "spawnzombiepigmen": "zombie_pigman_spawn_egg", + "zpigmenegg": "zombie_pigman_spawn_egg", + "eggzpigmen": "zombie_pigman_spawn_egg", + "zpigmenspawnegg": "zombie_pigman_spawn_egg", + "spawneggzpigmen": "zombie_pigman_spawn_egg", + "zpigmenspawn": "zombie_pigman_spawn_egg", + "spawnzpigmen": "zombie_pigman_spawn_egg", + "pigmenegg": "zombie_pigman_spawn_egg", + "eggpigmen": "zombie_pigman_spawn_egg", + "pigmenspawnegg": "zombie_pigman_spawn_egg", + "spawneggpigmen": "zombie_pigman_spawn_egg", + "pigmenspawn": "zombie_pigman_spawn_egg", + "spawnpigmen": "zombie_pigman_spawn_egg", + "zombie_spawn_egg": { + "material": "ZOMBIE_SPAWN_EGG" + }, + "zombiespawnegg": "zombie_spawn_egg", + "zombieegg": "zombie_spawn_egg", + "eggzombie": "zombie_spawn_egg", + "spawneggzombie": "zombie_spawn_egg", + "zombiespawn": "zombie_spawn_egg", + "spawnzombie": "zombie_spawn_egg", + "zombie_villager_spawn_egg": { + "material": "ZOMBIE_VILLAGER_SPAWN_EGG" + }, + "zombievillagerspawnegg": "zombie_villager_spawn_egg", + "zombievillageregg": "zombie_villager_spawn_egg", + "eggzombievillager": "zombie_villager_spawn_egg", + "spawneggzombievillager": "zombie_villager_spawn_egg", + "zombievillagerspawn": "zombie_villager_spawn_egg", + "spawnzombievillager": "zombie_villager_spawn_egg", + "zvillageregg": "zombie_villager_spawn_egg", + "eggzvillager": "zombie_villager_spawn_egg", + "zvillagerspawnegg": "zombie_villager_spawn_egg", + "spawneggzvillager": "zombie_villager_spawn_egg", + "zvillagerspawn": "zombie_villager_spawn_egg", + "spawnzvillager": "zombie_villager_spawn_egg", + "deadvillageregg": "zombie_villager_spawn_egg", + "eggdeadvillager": "zombie_villager_spawn_egg", + "deadvillagerspawnegg": "zombie_villager_spawn_egg", + "spawneggdeadvillager": "zombie_villager_spawn_egg", + "deadvillagerspawn": "zombie_villager_spawn_egg", + "spawndeadvillager": "zombie_villager_spawn_egg", + "dvillageregg": "zombie_villager_spawn_egg", + "eggdvillager": "zombie_villager_spawn_egg", + "dvillagerspawnegg": "zombie_villager_spawn_egg", + "spawneggdvillager": "zombie_villager_spawn_egg", + "dvillagerspawn": "zombie_villager_spawn_egg", + "spawndvillager": "zombie_villager_spawn_egg", + "zvillegg": "zombie_villager_spawn_egg", + "eggzvill": "zombie_villager_spawn_egg", + "zvillspawnegg": "zombie_villager_spawn_egg", + "spawneggzvill": "zombie_villager_spawn_egg", + "zvillspawn": "zombie_villager_spawn_egg", + "spawnzvill": "zombie_villager_spawn_egg", + "dvillegg": "zombie_villager_spawn_egg", + "eggdvill": "zombie_villager_spawn_egg", + "dvillspawnegg": "zombie_villager_spawn_egg", + "spawneggdvill": "zombie_villager_spawn_egg", + "dvillspawn": "zombie_villager_spawn_egg", + "spawndvill": "zombie_villager_spawn_egg", + "zombie_wall_head": { + "material": "ZOMBIE_WALL_HEAD", + "unspawnable": true + }, + "zombiewallhead": "zombie_wall_head", + "emptypotion": { + "material": "POTION", + "potionData": { + "vanillaType": "empty", + "type": "UNCRAFTABLE", + "upgraded": false, + "extended": false + } + }, + "emptypot": "emptypotion", + "potionofempty": "emptypotion", + "potofempty": "emptypotion", + "splashemptypotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "empty", + "type": "UNCRAFTABLE", + "upgraded": false, + "extended": false + } + }, + "splemptypotion": "splashemptypotion", + "emptysplashpotion": "splashemptypotion", + "splashemptypot": "splashemptypotion", + "splemptypot": "splashemptypotion", + "emptysplashpot": "splashemptypotion", + "lingerpotempty": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "empty", + "type": "UNCRAFTABLE", + "upgraded": false, + "extended": false + } + }, + "emptylingerpot": "lingerpotempty", + "aoepotionempty": "lingerpotempty", + "emptyaoepoiont": "lingerpotempty", + "aoepotempty": "lingerpotempty", + "emptyaoepot": "lingerpotempty", + "areapotionempty": "lingerpotempty", + "emptyareapotion": "lingerpotempty", + "areapotempty": "lingerpotempty", + "emptyareapot": "lingerpotempty", + "cloudpotionempty": "lingerpotempty", + "emptycloudpotion": "lingerpotempty", + "cloudpotempty": "lingerpotempty", + "emptycloudpot": "lingerpotempty", + "arrowempty": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "empty", + "type": "UNCRAFTABLE", + "upgraded": false, + "extended": false + } + }, + "emptyarrow": "arrowempty", + "waterpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "water", + "type": "WATER", + "upgraded": false, + "extended": false + } + }, + "waterpot": "waterpotion", + "potionofwater": "waterpotion", + "potofwater": "waterpotion", + "splashwaterpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "water", + "type": "WATER", + "upgraded": false, + "extended": false + } + }, + "splwaterpotion": "splashwaterpotion", + "watersplashpotion": "splashwaterpotion", + "splashwaterpot": "splashwaterpotion", + "splwaterpot": "splashwaterpotion", + "watersplashpot": "splashwaterpotion", + "lingerpotwater": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "water", + "type": "WATER", + "upgraded": false, + "extended": false + } + }, + "waterlingerpot": "lingerpotwater", + "aoepotionwater": "lingerpotwater", + "wateraoepoiont": "lingerpotwater", + "aoepotwater": "lingerpotwater", + "wateraoepot": "lingerpotwater", + "areapotionwater": "lingerpotwater", + "waterareapotion": "lingerpotwater", + "areapotwater": "lingerpotwater", + "waterareapot": "lingerpotwater", + "cloudpotionwater": "lingerpotwater", + "watercloudpotion": "lingerpotwater", + "cloudpotwater": "lingerpotwater", + "watercloudpot": "lingerpotwater", + "arrowwater": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "water", + "type": "WATER", + "upgraded": false, + "extended": false + } + }, + "waterarrow": "arrowwater", + "mundanepotion": { + "material": "POTION", + "potionData": { + "vanillaType": "mundane", + "type": "MUNDANE", + "upgraded": false, + "extended": false + } + }, + "mundanepot": "mundanepotion", + "potionofmundane": "mundanepotion", + "potofmundane": "mundanepotion", + "splashmundanepotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "mundane", + "type": "MUNDANE", + "upgraded": false, + "extended": false + } + }, + "splmundanepotion": "splashmundanepotion", + "mundanesplashpotion": "splashmundanepotion", + "splashmundanepot": "splashmundanepotion", + "splmundanepot": "splashmundanepotion", + "mundanesplashpot": "splashmundanepotion", + "lingerpotmundane": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "mundane", + "type": "MUNDANE", + "upgraded": false, + "extended": false + } + }, + "mundanelingerpot": "lingerpotmundane", + "aoepotionmundane": "lingerpotmundane", + "mundaneaoepoiont": "lingerpotmundane", + "aoepotmundane": "lingerpotmundane", + "mundaneaoepot": "lingerpotmundane", + "areapotionmundane": "lingerpotmundane", + "mundaneareapotion": "lingerpotmundane", + "areapotmundane": "lingerpotmundane", + "mundaneareapot": "lingerpotmundane", + "cloudpotionmundane": "lingerpotmundane", + "mundanecloudpotion": "lingerpotmundane", + "cloudpotmundane": "lingerpotmundane", + "mundanecloudpot": "lingerpotmundane", + "arrowmundane": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "mundane", + "type": "MUNDANE", + "upgraded": false, + "extended": false + } + }, + "mundanearrow": "arrowmundane", + "thickpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "thick", + "type": "THICK", + "upgraded": false, + "extended": false + } + }, + "thickpot": "thickpotion", + "potionofthick": "thickpotion", + "potofthick": "thickpotion", + "splashthickpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "thick", + "type": "THICK", + "upgraded": false, + "extended": false + } + }, + "splthickpotion": "splashthickpotion", + "thicksplashpotion": "splashthickpotion", + "splashthickpot": "splashthickpotion", + "splthickpot": "splashthickpotion", + "thicksplashpot": "splashthickpotion", + "lingerpotthick": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "thick", + "type": "THICK", + "upgraded": false, + "extended": false + } + }, + "thicklingerpot": "lingerpotthick", + "aoepotionthick": "lingerpotthick", + "thickaoepoiont": "lingerpotthick", + "aoepotthick": "lingerpotthick", + "thickaoepot": "lingerpotthick", + "areapotionthick": "lingerpotthick", + "thickareapotion": "lingerpotthick", + "areapotthick": "lingerpotthick", + "thickareapot": "lingerpotthick", + "cloudpotionthick": "lingerpotthick", + "thickcloudpotion": "lingerpotthick", + "cloudpotthick": "lingerpotthick", + "thickcloudpot": "lingerpotthick", + "arrowthick": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "thick", + "type": "THICK", + "upgraded": false, + "extended": false + } + }, + "thickarrow": "arrowthick", + "awkwardpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "awkward", + "type": "AWKWARD", + "upgraded": false, + "extended": false + } + }, + "awkwardpot": "awkwardpotion", + "potionofawkward": "awkwardpotion", + "potofawkward": "awkwardpotion", + "splashawkwardpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "awkward", + "type": "AWKWARD", + "upgraded": false, + "extended": false + } + }, + "splawkwardpotion": "splashawkwardpotion", + "awkwardsplashpotion": "splashawkwardpotion", + "splashawkwardpot": "splashawkwardpotion", + "splawkwardpot": "splashawkwardpotion", + "awkwardsplashpot": "splashawkwardpotion", + "lingerpotawkward": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "awkward", + "type": "AWKWARD", + "upgraded": false, + "extended": false + } + }, + "awkwardlingerpot": "lingerpotawkward", + "aoepotionawkward": "lingerpotawkward", + "awkwardaoepoiont": "lingerpotawkward", + "aoepotawkward": "lingerpotawkward", + "awkwardaoepot": "lingerpotawkward", + "areapotionawkward": "lingerpotawkward", + "awkwardareapotion": "lingerpotawkward", + "areapotawkward": "lingerpotawkward", + "awkwardareapot": "lingerpotawkward", + "cloudpotionawkward": "lingerpotawkward", + "awkwardcloudpotion": "lingerpotawkward", + "cloudpotawkward": "lingerpotawkward", + "awkwardcloudpot": "lingerpotawkward", + "arrowawkward": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "awkward", + "type": "AWKWARD", + "upgraded": false, + "extended": false + } + }, + "awkwardarrow": "arrowawkward", + "nightvisionpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": false + } + }, + "nvpotion": "nightvisionpotion", + "nvisionpotion": "nightvisionpotion", + "nightvpotion": "nightvisionpotion", + "darkvispotion": "nightvisionpotion", + "dvisionpotion": "nightvisionpotion", + "darkvpotion": "nightvisionpotion", + "nightvisionpot": "nightvisionpotion", + "nvpot": "nightvisionpotion", + "nvisionpot": "nightvisionpotion", + "nightvpot": "nightvisionpotion", + "darkvispot": "nightvisionpotion", + "dvisionpot": "nightvisionpotion", + "darkvpot": "nightvisionpotion", + "potionofnightvision": "nightvisionpotion", + "potionofnv": "nightvisionpotion", + "potionofnvision": "nightvisionpotion", + "potionofnightv": "nightvisionpotion", + "potionofdarkvis": "nightvisionpotion", + "potionofdvision": "nightvisionpotion", + "potionofdarkv": "nightvisionpotion", + "potofnightvision": "nightvisionpotion", + "potofnv": "nightvisionpotion", + "potofnvision": "nightvisionpotion", + "potofnightv": "nightvisionpotion", + "potofdarkvis": "nightvisionpotion", + "potofdvision": "nightvisionpotion", + "potofdarkv": "nightvisionpotion", + "splashnightvisionpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": false + } + }, + "splashnvpotion": "splashnightvisionpotion", + "splashnvisionpotion": "splashnightvisionpotion", + "splashnightvpotion": "splashnightvisionpotion", + "splashdarkvispotion": "splashnightvisionpotion", + "splashdvisionpotion": "splashnightvisionpotion", + "splashdarkvpotion": "splashnightvisionpotion", + "splnightvisionpotion": "splashnightvisionpotion", + "splnvpotion": "splashnightvisionpotion", + "splnvisionpotion": "splashnightvisionpotion", + "splnightvpotion": "splashnightvisionpotion", + "spldarkvispotion": "splashnightvisionpotion", + "spldvisionpotion": "splashnightvisionpotion", + "spldarkvpotion": "splashnightvisionpotion", + "nightvisionsplashpotion": "splashnightvisionpotion", + "nvsplashpotion": "splashnightvisionpotion", + "nvisionsplashpotion": "splashnightvisionpotion", + "nightvsplashpotion": "splashnightvisionpotion", + "darkvissplashpotion": "splashnightvisionpotion", + "dvisionsplashpotion": "splashnightvisionpotion", + "darkvsplashpotion": "splashnightvisionpotion", + "splashnightvisionpot": "splashnightvisionpotion", + "splashnvpot": "splashnightvisionpotion", + "splashnvisionpot": "splashnightvisionpotion", + "splashnightvpot": "splashnightvisionpotion", + "splashdarkvispot": "splashnightvisionpotion", + "splashdvisionpot": "splashnightvisionpotion", + "splashdarkvpot": "splashnightvisionpotion", + "splnightvisionpot": "splashnightvisionpotion", + "splnvpot": "splashnightvisionpotion", + "splnvisionpot": "splashnightvisionpotion", + "splnightvpot": "splashnightvisionpotion", + "spldarkvispot": "splashnightvisionpotion", + "spldvisionpot": "splashnightvisionpotion", + "spldarkvpot": "splashnightvisionpotion", + "nightvisionsplashpot": "splashnightvisionpotion", + "nvsplashpot": "splashnightvisionpotion", + "nvisionsplashpot": "splashnightvisionpotion", + "nightvsplashpot": "splashnightvisionpotion", + "darkvissplashpot": "splashnightvisionpotion", + "dvisionsplashpot": "splashnightvisionpotion", + "darkvsplashpot": "splashnightvisionpotion", + "lingerpotnightvision": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": false + } + }, + "lingerpotnv": "lingerpotnightvision", + "lingerpotnvision": "lingerpotnightvision", + "lingerpotnightv": "lingerpotnightvision", + "lingerpotdarkvis": "lingerpotnightvision", + "lingerpotdvision": "lingerpotnightvision", + "lingerpotdarkv": "lingerpotnightvision", + "nightvisionlingerpot": "lingerpotnightvision", + "nvlingerpot": "lingerpotnightvision", + "nvisionlingerpot": "lingerpotnightvision", + "nightvlingerpot": "lingerpotnightvision", + "darkvislingerpot": "lingerpotnightvision", + "dvisionlingerpot": "lingerpotnightvision", + "darkvlingerpot": "lingerpotnightvision", + "aoepotionnightvision": "lingerpotnightvision", + "aoepotionnv": "lingerpotnightvision", + "aoepotionnvision": "lingerpotnightvision", + "aoepotionnightv": "lingerpotnightvision", + "aoepotiondarkvis": "lingerpotnightvision", + "aoepotiondvision": "lingerpotnightvision", + "aoepotiondarkv": "lingerpotnightvision", + "nightvisionaoepoiont": "lingerpotnightvision", + "nvaoepoiont": "lingerpotnightvision", + "nvisionaoepoiont": "lingerpotnightvision", + "nightvaoepoiont": "lingerpotnightvision", + "darkvisaoepoiont": "lingerpotnightvision", + "dvisionaoepoiont": "lingerpotnightvision", + "darkvaoepoiont": "lingerpotnightvision", + "aoepotnightvision": "lingerpotnightvision", + "aoepotnv": "lingerpotnightvision", + "aoepotnvision": "lingerpotnightvision", + "aoepotnightv": "lingerpotnightvision", + "aoepotdarkvis": "lingerpotnightvision", + "aoepotdvision": "lingerpotnightvision", + "aoepotdarkv": "lingerpotnightvision", + "nightvisionaoepot": "lingerpotnightvision", + "nvaoepot": "lingerpotnightvision", + "nvisionaoepot": "lingerpotnightvision", + "nightvaoepot": "lingerpotnightvision", + "darkvisaoepot": "lingerpotnightvision", + "dvisionaoepot": "lingerpotnightvision", + "darkvaoepot": "lingerpotnightvision", + "areapotionnightvision": "lingerpotnightvision", + "areapotionnv": "lingerpotnightvision", + "areapotionnvision": "lingerpotnightvision", + "areapotionnightv": "lingerpotnightvision", + "areapotiondarkvis": "lingerpotnightvision", + "areapotiondvision": "lingerpotnightvision", + "areapotiondarkv": "lingerpotnightvision", + "nightvisionareapotion": "lingerpotnightvision", + "nvareapotion": "lingerpotnightvision", + "nvisionareapotion": "lingerpotnightvision", + "nightvareapotion": "lingerpotnightvision", + "darkvisareapotion": "lingerpotnightvision", + "dvisionareapotion": "lingerpotnightvision", + "darkvareapotion": "lingerpotnightvision", + "areapotnightvision": "lingerpotnightvision", + "areapotnv": "lingerpotnightvision", + "areapotnvision": "lingerpotnightvision", + "areapotnightv": "lingerpotnightvision", + "areapotdarkvis": "lingerpotnightvision", + "areapotdvision": "lingerpotnightvision", + "areapotdarkv": "lingerpotnightvision", + "nightvisionareapot": "lingerpotnightvision", + "nvareapot": "lingerpotnightvision", + "nvisionareapot": "lingerpotnightvision", + "nightvareapot": "lingerpotnightvision", + "darkvisareapot": "lingerpotnightvision", + "dvisionareapot": "lingerpotnightvision", + "darkvareapot": "lingerpotnightvision", + "cloudpotionnightvision": "lingerpotnightvision", + "cloudpotionnv": "lingerpotnightvision", + "cloudpotionnvision": "lingerpotnightvision", + "cloudpotionnightv": "lingerpotnightvision", + "cloudpotiondarkvis": "lingerpotnightvision", + "cloudpotiondvision": "lingerpotnightvision", + "cloudpotiondarkv": "lingerpotnightvision", + "nightvisioncloudpotion": "lingerpotnightvision", + "nvcloudpotion": "lingerpotnightvision", + "nvisioncloudpotion": "lingerpotnightvision", + "nightvcloudpotion": "lingerpotnightvision", + "darkviscloudpotion": "lingerpotnightvision", + "dvisioncloudpotion": "lingerpotnightvision", + "darkvcloudpotion": "lingerpotnightvision", + "cloudpotnightvision": "lingerpotnightvision", + "cloudpotnv": "lingerpotnightvision", + "cloudpotnvision": "lingerpotnightvision", + "cloudpotnightv": "lingerpotnightvision", + "cloudpotdarkvis": "lingerpotnightvision", + "cloudpotdvision": "lingerpotnightvision", + "cloudpotdarkv": "lingerpotnightvision", + "nightvisioncloudpot": "lingerpotnightvision", + "nvcloudpot": "lingerpotnightvision", + "nvisioncloudpot": "lingerpotnightvision", + "nightvcloudpot": "lingerpotnightvision", + "darkviscloudpot": "lingerpotnightvision", + "dvisioncloudpot": "lingerpotnightvision", + "darkvcloudpot": "lingerpotnightvision", + "arrownightvision": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": false + } + }, + "arrownv": "arrownightvision", + "arrownvision": "arrownightvision", + "arrownightv": "arrownightvision", + "arrowdarkvis": "arrownightvision", + "arrowdvision": "arrownightvision", + "arrowdarkv": "arrownightvision", + "nightvisionarrow": "arrownightvision", + "nvarrow": "arrownightvision", + "nvisionarrow": "arrownightvision", + "nightvarrow": "arrownightvision", + "darkvisarrow": "arrownightvision", + "dvisionarrow": "arrownightvision", + "darkvarrow": "arrownightvision", + "nightvision2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": true + } + }, + "nightvisionlongpotion": "nightvision2potion", + "nightvisionextendedpotion": "nightvision2potion", + "nightvisionexpotion": "nightvision2potion", + "nightvisionlevel2potion": "nightvision2potion", + "nv2potion": "nightvision2potion", + "nvlongpotion": "nightvision2potion", + "nvextendedpotion": "nightvision2potion", + "nvexpotion": "nightvision2potion", + "nvlevel2potion": "nightvision2potion", + "nvision2potion": "nightvision2potion", + "nvisionlongpotion": "nightvision2potion", + "nvisionextendedpotion": "nightvision2potion", + "nvisionexpotion": "nightvision2potion", + "nvisionlevel2potion": "nightvision2potion", + "nightv2potion": "nightvision2potion", + "nightvlongpotion": "nightvision2potion", + "nightvextendedpotion": "nightvision2potion", + "nightvexpotion": "nightvision2potion", + "nightvlevel2potion": "nightvision2potion", + "darkvis2potion": "nightvision2potion", + "darkvislongpotion": "nightvision2potion", + "darkvisextendedpotion": "nightvision2potion", + "darkvisexpotion": "nightvision2potion", + "darkvislevel2potion": "nightvision2potion", + "dvision2potion": "nightvision2potion", + "dvisionlongpotion": "nightvision2potion", + "dvisionextendedpotion": "nightvision2potion", + "dvisionexpotion": "nightvision2potion", + "dvisionlevel2potion": "nightvision2potion", + "darkv2potion": "nightvision2potion", + "darkvlongpotion": "nightvision2potion", + "darkvextendedpotion": "nightvision2potion", + "darkvexpotion": "nightvision2potion", + "darkvlevel2potion": "nightvision2potion", + "nightvision2pot": "nightvision2potion", + "nightvisionlongpot": "nightvision2potion", + "nightvisionextendedpot": "nightvision2potion", + "nightvisionexpot": "nightvision2potion", + "nightvisionlevel2pot": "nightvision2potion", + "nv2pot": "nightvision2potion", + "nvlongpot": "nightvision2potion", + "nvextendedpot": "nightvision2potion", + "nvexpot": "nightvision2potion", + "nvlevel2pot": "nightvision2potion", + "nvision2pot": "nightvision2potion", + "nvisionlongpot": "nightvision2potion", + "nvisionextendedpot": "nightvision2potion", + "nvisionexpot": "nightvision2potion", + "nvisionlevel2pot": "nightvision2potion", + "nightv2pot": "nightvision2potion", + "nightvlongpot": "nightvision2potion", + "nightvextendedpot": "nightvision2potion", + "nightvexpot": "nightvision2potion", + "nightvlevel2pot": "nightvision2potion", + "darkvis2pot": "nightvision2potion", + "darkvislongpot": "nightvision2potion", + "darkvisextendedpot": "nightvision2potion", + "darkvisexpot": "nightvision2potion", + "darkvislevel2pot": "nightvision2potion", + "dvision2pot": "nightvision2potion", + "dvisionlongpot": "nightvision2potion", + "dvisionextendedpot": "nightvision2potion", + "dvisionexpot": "nightvision2potion", + "dvisionlevel2pot": "nightvision2potion", + "darkv2pot": "nightvision2potion", + "darkvlongpot": "nightvision2potion", + "darkvextendedpot": "nightvision2potion", + "darkvexpot": "nightvision2potion", + "darkvlevel2pot": "nightvision2potion", + "potionofnightvision2": "nightvision2potion", + "potionofnightvisionlong": "nightvision2potion", + "potionofnightvisionextended": "nightvision2potion", + "potionofnightvisionex": "nightvision2potion", + "potionofnightvisionlevel2": "nightvision2potion", + "potionofnv2": "nightvision2potion", + "potionofnvlong": "nightvision2potion", + "potionofnvextended": "nightvision2potion", + "potionofnvex": "nightvision2potion", + "potionofnvlevel2": "nightvision2potion", + "potionofnvision2": "nightvision2potion", + "potionofnvisionlong": "nightvision2potion", + "potionofnvisionextended": "nightvision2potion", + "potionofnvisionex": "nightvision2potion", + "potionofnvisionlevel2": "nightvision2potion", + "potionofnightv2": "nightvision2potion", + "potionofnightvlong": "nightvision2potion", + "potionofnightvextended": "nightvision2potion", + "potionofnightvex": "nightvision2potion", + "potionofnightvlevel2": "nightvision2potion", + "potionofdarkvis2": "nightvision2potion", + "potionofdarkvislong": "nightvision2potion", + "potionofdarkvisextended": "nightvision2potion", + "potionofdarkvisex": "nightvision2potion", + "potionofdarkvislevel2": "nightvision2potion", + "potionofdvision2": "nightvision2potion", + "potionofdvisionlong": "nightvision2potion", + "potionofdvisionextended": "nightvision2potion", + "potionofdvisionex": "nightvision2potion", + "potionofdvisionlevel2": "nightvision2potion", + "potionofdarkv2": "nightvision2potion", + "potionofdarkvlong": "nightvision2potion", + "potionofdarkvextended": "nightvision2potion", + "potionofdarkvex": "nightvision2potion", + "potionofdarkvlevel2": "nightvision2potion", + "potofnightvision2": "nightvision2potion", + "potofnightvisionlong": "nightvision2potion", + "potofnightvisionextended": "nightvision2potion", + "potofnightvisionex": "nightvision2potion", + "potofnightvisionlevel2": "nightvision2potion", + "potofnv2": "nightvision2potion", + "potofnvlong": "nightvision2potion", + "potofnvextended": "nightvision2potion", + "potofnvex": "nightvision2potion", + "potofnvlevel2": "nightvision2potion", + "potofnvision2": "nightvision2potion", + "potofnvisionlong": "nightvision2potion", + "potofnvisionextended": "nightvision2potion", + "potofnvisionex": "nightvision2potion", + "potofnvisionlevel2": "nightvision2potion", + "potofnightv2": "nightvision2potion", + "potofnightvlong": "nightvision2potion", + "potofnightvextended": "nightvision2potion", + "potofnightvex": "nightvision2potion", + "potofnightvlevel2": "nightvision2potion", + "potofdarkvis2": "nightvision2potion", + "potofdarkvislong": "nightvision2potion", + "potofdarkvisextended": "nightvision2potion", + "potofdarkvisex": "nightvision2potion", + "potofdarkvislevel2": "nightvision2potion", + "potofdvision2": "nightvision2potion", + "potofdvisionlong": "nightvision2potion", + "potofdvisionextended": "nightvision2potion", + "potofdvisionex": "nightvision2potion", + "potofdvisionlevel2": "nightvision2potion", + "potofdarkv2": "nightvision2potion", + "potofdarkvlong": "nightvision2potion", + "potofdarkvextended": "nightvision2potion", + "potofdarkvex": "nightvision2potion", + "potofdarkvlevel2": "nightvision2potion", + "splashnightvision2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": true + } + }, + "splashnightvisionlongpotion": "splashnightvision2potion", + "splashnightvisionextendedpotion": "splashnightvision2potion", + "splashnightvisionexpotion": "splashnightvision2potion", + "splashnightvisionlevel2potion": "splashnightvision2potion", + "splashnv2potion": "splashnightvision2potion", + "splashnvlongpotion": "splashnightvision2potion", + "splashnvextendedpotion": "splashnightvision2potion", + "splashnvexpotion": "splashnightvision2potion", + "splashnvlevel2potion": "splashnightvision2potion", + "splashnvision2potion": "splashnightvision2potion", + "splashnvisionlongpotion": "splashnightvision2potion", + "splashnvisionextendedpotion": "splashnightvision2potion", + "splashnvisionexpotion": "splashnightvision2potion", + "splashnvisionlevel2potion": "splashnightvision2potion", + "splashnightv2potion": "splashnightvision2potion", + "splashnightvlongpotion": "splashnightvision2potion", + "splashnightvextendedpotion": "splashnightvision2potion", + "splashnightvexpotion": "splashnightvision2potion", + "splashnightvlevel2potion": "splashnightvision2potion", + "splashdarkvis2potion": "splashnightvision2potion", + "splashdarkvislongpotion": "splashnightvision2potion", + "splashdarkvisextendedpotion": "splashnightvision2potion", + "splashdarkvisexpotion": "splashnightvision2potion", + "splashdarkvislevel2potion": "splashnightvision2potion", + "splashdvision2potion": "splashnightvision2potion", + "splashdvisionlongpotion": "splashnightvision2potion", + "splashdvisionextendedpotion": "splashnightvision2potion", + "splashdvisionexpotion": "splashnightvision2potion", + "splashdvisionlevel2potion": "splashnightvision2potion", + "splashdarkv2potion": "splashnightvision2potion", + "splashdarkvlongpotion": "splashnightvision2potion", + "splashdarkvextendedpotion": "splashnightvision2potion", + "splashdarkvexpotion": "splashnightvision2potion", + "splashdarkvlevel2potion": "splashnightvision2potion", + "splnightvision2potion": "splashnightvision2potion", + "splnightvisionlongpotion": "splashnightvision2potion", + "splnightvisionextendedpotion": "splashnightvision2potion", + "splnightvisionexpotion": "splashnightvision2potion", + "splnightvisionlevel2potion": "splashnightvision2potion", + "splnv2potion": "splashnightvision2potion", + "splnvlongpotion": "splashnightvision2potion", + "splnvextendedpotion": "splashnightvision2potion", + "splnvexpotion": "splashnightvision2potion", + "splnvlevel2potion": "splashnightvision2potion", + "splnvision2potion": "splashnightvision2potion", + "splnvisionlongpotion": "splashnightvision2potion", + "splnvisionextendedpotion": "splashnightvision2potion", + "splnvisionexpotion": "splashnightvision2potion", + "splnvisionlevel2potion": "splashnightvision2potion", + "splnightv2potion": "splashnightvision2potion", + "splnightvlongpotion": "splashnightvision2potion", + "splnightvextendedpotion": "splashnightvision2potion", + "splnightvexpotion": "splashnightvision2potion", + "splnightvlevel2potion": "splashnightvision2potion", + "spldarkvis2potion": "splashnightvision2potion", + "spldarkvislongpotion": "splashnightvision2potion", + "spldarkvisextendedpotion": "splashnightvision2potion", + "spldarkvisexpotion": "splashnightvision2potion", + "spldarkvislevel2potion": "splashnightvision2potion", + "spldvision2potion": "splashnightvision2potion", + "spldvisionlongpotion": "splashnightvision2potion", + "spldvisionextendedpotion": "splashnightvision2potion", + "spldvisionexpotion": "splashnightvision2potion", + "spldvisionlevel2potion": "splashnightvision2potion", + "spldarkv2potion": "splashnightvision2potion", + "spldarkvlongpotion": "splashnightvision2potion", + "spldarkvextendedpotion": "splashnightvision2potion", + "spldarkvexpotion": "splashnightvision2potion", + "spldarkvlevel2potion": "splashnightvision2potion", + "nightvision2splashpotion": "splashnightvision2potion", + "nightvisionlongsplashpotion": "splashnightvision2potion", + "nightvisionextendedsplashpotion": "splashnightvision2potion", + "nightvisionexsplashpotion": "splashnightvision2potion", + "nightvisionlevel2splashpotion": "splashnightvision2potion", + "nv2splashpotion": "splashnightvision2potion", + "nvlongsplashpotion": "splashnightvision2potion", + "nvextendedsplashpotion": "splashnightvision2potion", + "nvexsplashpotion": "splashnightvision2potion", + "nvlevel2splashpotion": "splashnightvision2potion", + "nvision2splashpotion": "splashnightvision2potion", + "nvisionlongsplashpotion": "splashnightvision2potion", + "nvisionextendedsplashpotion": "splashnightvision2potion", + "nvisionexsplashpotion": "splashnightvision2potion", + "nvisionlevel2splashpotion": "splashnightvision2potion", + "nightv2splashpotion": "splashnightvision2potion", + "nightvlongsplashpotion": "splashnightvision2potion", + "nightvextendedsplashpotion": "splashnightvision2potion", + "nightvexsplashpotion": "splashnightvision2potion", + "nightvlevel2splashpotion": "splashnightvision2potion", + "darkvis2splashpotion": "splashnightvision2potion", + "darkvislongsplashpotion": "splashnightvision2potion", + "darkvisextendedsplashpotion": "splashnightvision2potion", + "darkvisexsplashpotion": "splashnightvision2potion", + "darkvislevel2splashpotion": "splashnightvision2potion", + "dvision2splashpotion": "splashnightvision2potion", + "dvisionlongsplashpotion": "splashnightvision2potion", + "dvisionextendedsplashpotion": "splashnightvision2potion", + "dvisionexsplashpotion": "splashnightvision2potion", + "dvisionlevel2splashpotion": "splashnightvision2potion", + "darkv2splashpotion": "splashnightvision2potion", + "darkvlongsplashpotion": "splashnightvision2potion", + "darkvextendedsplashpotion": "splashnightvision2potion", + "darkvexsplashpotion": "splashnightvision2potion", + "darkvlevel2splashpotion": "splashnightvision2potion", + "splashnightvision2pot": "splashnightvision2potion", + "splashnightvisionlongpot": "splashnightvision2potion", + "splashnightvisionextendedpot": "splashnightvision2potion", + "splashnightvisionexpot": "splashnightvision2potion", + "splashnightvisionlevel2pot": "splashnightvision2potion", + "splashnv2pot": "splashnightvision2potion", + "splashnvlongpot": "splashnightvision2potion", + "splashnvextendedpot": "splashnightvision2potion", + "splashnvexpot": "splashnightvision2potion", + "splashnvlevel2pot": "splashnightvision2potion", + "splashnvision2pot": "splashnightvision2potion", + "splashnvisionlongpot": "splashnightvision2potion", + "splashnvisionextendedpot": "splashnightvision2potion", + "splashnvisionexpot": "splashnightvision2potion", + "splashnvisionlevel2pot": "splashnightvision2potion", + "splashnightv2pot": "splashnightvision2potion", + "splashnightvlongpot": "splashnightvision2potion", + "splashnightvextendedpot": "splashnightvision2potion", + "splashnightvexpot": "splashnightvision2potion", + "splashnightvlevel2pot": "splashnightvision2potion", + "splashdarkvis2pot": "splashnightvision2potion", + "splashdarkvislongpot": "splashnightvision2potion", + "splashdarkvisextendedpot": "splashnightvision2potion", + "splashdarkvisexpot": "splashnightvision2potion", + "splashdarkvislevel2pot": "splashnightvision2potion", + "splashdvision2pot": "splashnightvision2potion", + "splashdvisionlongpot": "splashnightvision2potion", + "splashdvisionextendedpot": "splashnightvision2potion", + "splashdvisionexpot": "splashnightvision2potion", + "splashdvisionlevel2pot": "splashnightvision2potion", + "splashdarkv2pot": "splashnightvision2potion", + "splashdarkvlongpot": "splashnightvision2potion", + "splashdarkvextendedpot": "splashnightvision2potion", + "splashdarkvexpot": "splashnightvision2potion", + "splashdarkvlevel2pot": "splashnightvision2potion", + "splnightvision2pot": "splashnightvision2potion", + "splnightvisionlongpot": "splashnightvision2potion", + "splnightvisionextendedpot": "splashnightvision2potion", + "splnightvisionexpot": "splashnightvision2potion", + "splnightvisionlevel2pot": "splashnightvision2potion", + "splnv2pot": "splashnightvision2potion", + "splnvlongpot": "splashnightvision2potion", + "splnvextendedpot": "splashnightvision2potion", + "splnvexpot": "splashnightvision2potion", + "splnvlevel2pot": "splashnightvision2potion", + "splnvision2pot": "splashnightvision2potion", + "splnvisionlongpot": "splashnightvision2potion", + "splnvisionextendedpot": "splashnightvision2potion", + "splnvisionexpot": "splashnightvision2potion", + "splnvisionlevel2pot": "splashnightvision2potion", + "splnightv2pot": "splashnightvision2potion", + "splnightvlongpot": "splashnightvision2potion", + "splnightvextendedpot": "splashnightvision2potion", + "splnightvexpot": "splashnightvision2potion", + "splnightvlevel2pot": "splashnightvision2potion", + "spldarkvis2pot": "splashnightvision2potion", + "spldarkvislongpot": "splashnightvision2potion", + "spldarkvisextendedpot": "splashnightvision2potion", + "spldarkvisexpot": "splashnightvision2potion", + "spldarkvislevel2pot": "splashnightvision2potion", + "spldvision2pot": "splashnightvision2potion", + "spldvisionlongpot": "splashnightvision2potion", + "spldvisionextendedpot": "splashnightvision2potion", + "spldvisionexpot": "splashnightvision2potion", + "spldvisionlevel2pot": "splashnightvision2potion", + "spldarkv2pot": "splashnightvision2potion", + "spldarkvlongpot": "splashnightvision2potion", + "spldarkvextendedpot": "splashnightvision2potion", + "spldarkvexpot": "splashnightvision2potion", + "spldarkvlevel2pot": "splashnightvision2potion", + "nightvision2splashpot": "splashnightvision2potion", + "nightvisionlongsplashpot": "splashnightvision2potion", + "nightvisionextendedsplashpot": "splashnightvision2potion", + "nightvisionexsplashpot": "splashnightvision2potion", + "nightvisionlevel2splashpot": "splashnightvision2potion", + "nv2splashpot": "splashnightvision2potion", + "nvlongsplashpot": "splashnightvision2potion", + "nvextendedsplashpot": "splashnightvision2potion", + "nvexsplashpot": "splashnightvision2potion", + "nvlevel2splashpot": "splashnightvision2potion", + "nvision2splashpot": "splashnightvision2potion", + "nvisionlongsplashpot": "splashnightvision2potion", + "nvisionextendedsplashpot": "splashnightvision2potion", + "nvisionexsplashpot": "splashnightvision2potion", + "nvisionlevel2splashpot": "splashnightvision2potion", + "nightv2splashpot": "splashnightvision2potion", + "nightvlongsplashpot": "splashnightvision2potion", + "nightvextendedsplashpot": "splashnightvision2potion", + "nightvexsplashpot": "splashnightvision2potion", + "nightvlevel2splashpot": "splashnightvision2potion", + "darkvis2splashpot": "splashnightvision2potion", + "darkvislongsplashpot": "splashnightvision2potion", + "darkvisextendedsplashpot": "splashnightvision2potion", + "darkvisexsplashpot": "splashnightvision2potion", + "darkvislevel2splashpot": "splashnightvision2potion", + "dvision2splashpot": "splashnightvision2potion", + "dvisionlongsplashpot": "splashnightvision2potion", + "dvisionextendedsplashpot": "splashnightvision2potion", + "dvisionexsplashpot": "splashnightvision2potion", + "dvisionlevel2splashpot": "splashnightvision2potion", + "darkv2splashpot": "splashnightvision2potion", + "darkvlongsplashpot": "splashnightvision2potion", + "darkvextendedsplashpot": "splashnightvision2potion", + "darkvexsplashpot": "splashnightvision2potion", + "darkvlevel2splashpot": "splashnightvision2potion", + "lingerpotnightvision2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": true + } + }, + "lingerpotnightvisionlong": "lingerpotnightvision2", + "lingerpotnightvisionextended": "lingerpotnightvision2", + "lingerpotnightvisionex": "lingerpotnightvision2", + "lingerpotnightvisionlevel2": "lingerpotnightvision2", + "lingerpotnv2": "lingerpotnightvision2", + "lingerpotnvlong": "lingerpotnightvision2", + "lingerpotnvextended": "lingerpotnightvision2", + "lingerpotnvex": "lingerpotnightvision2", + "lingerpotnvlevel2": "lingerpotnightvision2", + "lingerpotnvision2": "lingerpotnightvision2", + "lingerpotnvisionlong": "lingerpotnightvision2", + "lingerpotnvisionextended": "lingerpotnightvision2", + "lingerpotnvisionex": "lingerpotnightvision2", + "lingerpotnvisionlevel2": "lingerpotnightvision2", + "lingerpotnightv2": "lingerpotnightvision2", + "lingerpotnightvlong": "lingerpotnightvision2", + "lingerpotnightvextended": "lingerpotnightvision2", + "lingerpotnightvex": "lingerpotnightvision2", + "lingerpotnightvlevel2": "lingerpotnightvision2", + "lingerpotdarkvis2": "lingerpotnightvision2", + "lingerpotdarkvislong": "lingerpotnightvision2", + "lingerpotdarkvisextended": "lingerpotnightvision2", + "lingerpotdarkvisex": "lingerpotnightvision2", + "lingerpotdarkvislevel2": "lingerpotnightvision2", + "lingerpotdvision2": "lingerpotnightvision2", + "lingerpotdvisionlong": "lingerpotnightvision2", + "lingerpotdvisionextended": "lingerpotnightvision2", + "lingerpotdvisionex": "lingerpotnightvision2", + "lingerpotdvisionlevel2": "lingerpotnightvision2", + "lingerpotdarkv2": "lingerpotnightvision2", + "lingerpotdarkvlong": "lingerpotnightvision2", + "lingerpotdarkvextended": "lingerpotnightvision2", + "lingerpotdarkvex": "lingerpotnightvision2", + "lingerpotdarkvlevel2": "lingerpotnightvision2", + "nightvisionlingerpot2": "lingerpotnightvision2", + "nightvisionlingerpotlong": "lingerpotnightvision2", + "nightvisionlingerpotextended": "lingerpotnightvision2", + "nightvisionlingerpotex": "lingerpotnightvision2", + "nightvisionlingerpotlevel2": "lingerpotnightvision2", + "nvlingerpot2": "lingerpotnightvision2", + "nvlingerpotlong": "lingerpotnightvision2", + "nvlingerpotextended": "lingerpotnightvision2", + "nvlingerpotex": "lingerpotnightvision2", + "nvlingerpotlevel2": "lingerpotnightvision2", + "nvisionlingerpot2": "lingerpotnightvision2", + "nvisionlingerpotlong": "lingerpotnightvision2", + "nvisionlingerpotextended": "lingerpotnightvision2", + "nvisionlingerpotex": "lingerpotnightvision2", + "nvisionlingerpotlevel2": "lingerpotnightvision2", + "nightvlingerpot2": "lingerpotnightvision2", + "nightvlingerpotlong": "lingerpotnightvision2", + "nightvlingerpotextended": "lingerpotnightvision2", + "nightvlingerpotex": "lingerpotnightvision2", + "nightvlingerpotlevel2": "lingerpotnightvision2", + "darkvislingerpot2": "lingerpotnightvision2", + "darkvislingerpotlong": "lingerpotnightvision2", + "darkvislingerpotextended": "lingerpotnightvision2", + "darkvislingerpotex": "lingerpotnightvision2", + "darkvislingerpotlevel2": "lingerpotnightvision2", + "dvisionlingerpot2": "lingerpotnightvision2", + "dvisionlingerpotlong": "lingerpotnightvision2", + "dvisionlingerpotextended": "lingerpotnightvision2", + "dvisionlingerpotex": "lingerpotnightvision2", + "dvisionlingerpotlevel2": "lingerpotnightvision2", + "darkvlingerpot2": "lingerpotnightvision2", + "darkvlingerpotlong": "lingerpotnightvision2", + "darkvlingerpotextended": "lingerpotnightvision2", + "darkvlingerpotex": "lingerpotnightvision2", + "darkvlingerpotlevel2": "lingerpotnightvision2", + "aoepotionnightvision2": "lingerpotnightvision2", + "aoepotionnightvisionlong": "lingerpotnightvision2", + "aoepotionnightvisionextended": "lingerpotnightvision2", + "aoepotionnightvisionex": "lingerpotnightvision2", + "aoepotionnightvisionlevel2": "lingerpotnightvision2", + "aoepotionnv2": "lingerpotnightvision2", + "aoepotionnvlong": "lingerpotnightvision2", + "aoepotionnvextended": "lingerpotnightvision2", + "aoepotionnvex": "lingerpotnightvision2", + "aoepotionnvlevel2": "lingerpotnightvision2", + "aoepotionnvision2": "lingerpotnightvision2", + "aoepotionnvisionlong": "lingerpotnightvision2", + "aoepotionnvisionextended": "lingerpotnightvision2", + "aoepotionnvisionex": "lingerpotnightvision2", + "aoepotionnvisionlevel2": "lingerpotnightvision2", + "aoepotionnightv2": "lingerpotnightvision2", + "aoepotionnightvlong": "lingerpotnightvision2", + "aoepotionnightvextended": "lingerpotnightvision2", + "aoepotionnightvex": "lingerpotnightvision2", + "aoepotionnightvlevel2": "lingerpotnightvision2", + "aoepotiondarkvis2": "lingerpotnightvision2", + "aoepotiondarkvislong": "lingerpotnightvision2", + "aoepotiondarkvisextended": "lingerpotnightvision2", + "aoepotiondarkvisex": "lingerpotnightvision2", + "aoepotiondarkvislevel2": "lingerpotnightvision2", + "aoepotiondvision2": "lingerpotnightvision2", + "aoepotiondvisionlong": "lingerpotnightvision2", + "aoepotiondvisionextended": "lingerpotnightvision2", + "aoepotiondvisionex": "lingerpotnightvision2", + "aoepotiondvisionlevel2": "lingerpotnightvision2", + "aoepotiondarkv2": "lingerpotnightvision2", + "aoepotiondarkvlong": "lingerpotnightvision2", + "aoepotiondarkvextended": "lingerpotnightvision2", + "aoepotiondarkvex": "lingerpotnightvision2", + "aoepotiondarkvlevel2": "lingerpotnightvision2", + "nightvisionaoepoiont2": "lingerpotnightvision2", + "nightvisionaoepoiontlong": "lingerpotnightvision2", + "nightvisionaoepoiontextended": "lingerpotnightvision2", + "nightvisionaoepoiontex": "lingerpotnightvision2", + "nightvisionaoepoiontlevel2": "lingerpotnightvision2", + "nvaoepoiont2": "lingerpotnightvision2", + "nvaoepoiontlong": "lingerpotnightvision2", + "nvaoepoiontextended": "lingerpotnightvision2", + "nvaoepoiontex": "lingerpotnightvision2", + "nvaoepoiontlevel2": "lingerpotnightvision2", + "nvisionaoepoiont2": "lingerpotnightvision2", + "nvisionaoepoiontlong": "lingerpotnightvision2", + "nvisionaoepoiontextended": "lingerpotnightvision2", + "nvisionaoepoiontex": "lingerpotnightvision2", + "nvisionaoepoiontlevel2": "lingerpotnightvision2", + "nightvaoepoiont2": "lingerpotnightvision2", + "nightvaoepoiontlong": "lingerpotnightvision2", + "nightvaoepoiontextended": "lingerpotnightvision2", + "nightvaoepoiontex": "lingerpotnightvision2", + "nightvaoepoiontlevel2": "lingerpotnightvision2", + "darkvisaoepoiont2": "lingerpotnightvision2", + "darkvisaoepoiontlong": "lingerpotnightvision2", + "darkvisaoepoiontextended": "lingerpotnightvision2", + "darkvisaoepoiontex": "lingerpotnightvision2", + "darkvisaoepoiontlevel2": "lingerpotnightvision2", + "dvisionaoepoiont2": "lingerpotnightvision2", + "dvisionaoepoiontlong": "lingerpotnightvision2", + "dvisionaoepoiontextended": "lingerpotnightvision2", + "dvisionaoepoiontex": "lingerpotnightvision2", + "dvisionaoepoiontlevel2": "lingerpotnightvision2", + "darkvaoepoiont2": "lingerpotnightvision2", + "darkvaoepoiontlong": "lingerpotnightvision2", + "darkvaoepoiontextended": "lingerpotnightvision2", + "darkvaoepoiontex": "lingerpotnightvision2", + "darkvaoepoiontlevel2": "lingerpotnightvision2", + "aoepotnightvision2": "lingerpotnightvision2", + "aoepotnightvisionlong": "lingerpotnightvision2", + "aoepotnightvisionextended": "lingerpotnightvision2", + "aoepotnightvisionex": "lingerpotnightvision2", + "aoepotnightvisionlevel2": "lingerpotnightvision2", + "aoepotnv2": "lingerpotnightvision2", + "aoepotnvlong": "lingerpotnightvision2", + "aoepotnvextended": "lingerpotnightvision2", + "aoepotnvex": "lingerpotnightvision2", + "aoepotnvlevel2": "lingerpotnightvision2", + "aoepotnvision2": "lingerpotnightvision2", + "aoepotnvisionlong": "lingerpotnightvision2", + "aoepotnvisionextended": "lingerpotnightvision2", + "aoepotnvisionex": "lingerpotnightvision2", + "aoepotnvisionlevel2": "lingerpotnightvision2", + "aoepotnightv2": "lingerpotnightvision2", + "aoepotnightvlong": "lingerpotnightvision2", + "aoepotnightvextended": "lingerpotnightvision2", + "aoepotnightvex": "lingerpotnightvision2", + "aoepotnightvlevel2": "lingerpotnightvision2", + "aoepotdarkvis2": "lingerpotnightvision2", + "aoepotdarkvislong": "lingerpotnightvision2", + "aoepotdarkvisextended": "lingerpotnightvision2", + "aoepotdarkvisex": "lingerpotnightvision2", + "aoepotdarkvislevel2": "lingerpotnightvision2", + "aoepotdvision2": "lingerpotnightvision2", + "aoepotdvisionlong": "lingerpotnightvision2", + "aoepotdvisionextended": "lingerpotnightvision2", + "aoepotdvisionex": "lingerpotnightvision2", + "aoepotdvisionlevel2": "lingerpotnightvision2", + "aoepotdarkv2": "lingerpotnightvision2", + "aoepotdarkvlong": "lingerpotnightvision2", + "aoepotdarkvextended": "lingerpotnightvision2", + "aoepotdarkvex": "lingerpotnightvision2", + "aoepotdarkvlevel2": "lingerpotnightvision2", + "nightvisionaoepot2": "lingerpotnightvision2", + "nightvisionaoepotlong": "lingerpotnightvision2", + "nightvisionaoepotextended": "lingerpotnightvision2", + "nightvisionaoepotex": "lingerpotnightvision2", + "nightvisionaoepotlevel2": "lingerpotnightvision2", + "nvaoepot2": "lingerpotnightvision2", + "nvaoepotlong": "lingerpotnightvision2", + "nvaoepotextended": "lingerpotnightvision2", + "nvaoepotex": "lingerpotnightvision2", + "nvaoepotlevel2": "lingerpotnightvision2", + "nvisionaoepot2": "lingerpotnightvision2", + "nvisionaoepotlong": "lingerpotnightvision2", + "nvisionaoepotextended": "lingerpotnightvision2", + "nvisionaoepotex": "lingerpotnightvision2", + "nvisionaoepotlevel2": "lingerpotnightvision2", + "nightvaoepot2": "lingerpotnightvision2", + "nightvaoepotlong": "lingerpotnightvision2", + "nightvaoepotextended": "lingerpotnightvision2", + "nightvaoepotex": "lingerpotnightvision2", + "nightvaoepotlevel2": "lingerpotnightvision2", + "darkvisaoepot2": "lingerpotnightvision2", + "darkvisaoepotlong": "lingerpotnightvision2", + "darkvisaoepotextended": "lingerpotnightvision2", + "darkvisaoepotex": "lingerpotnightvision2", + "darkvisaoepotlevel2": "lingerpotnightvision2", + "dvisionaoepot2": "lingerpotnightvision2", + "dvisionaoepotlong": "lingerpotnightvision2", + "dvisionaoepotextended": "lingerpotnightvision2", + "dvisionaoepotex": "lingerpotnightvision2", + "dvisionaoepotlevel2": "lingerpotnightvision2", + "darkvaoepot2": "lingerpotnightvision2", + "darkvaoepotlong": "lingerpotnightvision2", + "darkvaoepotextended": "lingerpotnightvision2", + "darkvaoepotex": "lingerpotnightvision2", + "darkvaoepotlevel2": "lingerpotnightvision2", + "areapotionnightvision2": "lingerpotnightvision2", + "areapotionnightvisionlong": "lingerpotnightvision2", + "areapotionnightvisionextended": "lingerpotnightvision2", + "areapotionnightvisionex": "lingerpotnightvision2", + "areapotionnightvisionlevel2": "lingerpotnightvision2", + "areapotionnv2": "lingerpotnightvision2", + "areapotionnvlong": "lingerpotnightvision2", + "areapotionnvextended": "lingerpotnightvision2", + "areapotionnvex": "lingerpotnightvision2", + "areapotionnvlevel2": "lingerpotnightvision2", + "areapotionnvision2": "lingerpotnightvision2", + "areapotionnvisionlong": "lingerpotnightvision2", + "areapotionnvisionextended": "lingerpotnightvision2", + "areapotionnvisionex": "lingerpotnightvision2", + "areapotionnvisionlevel2": "lingerpotnightvision2", + "areapotionnightv2": "lingerpotnightvision2", + "areapotionnightvlong": "lingerpotnightvision2", + "areapotionnightvextended": "lingerpotnightvision2", + "areapotionnightvex": "lingerpotnightvision2", + "areapotionnightvlevel2": "lingerpotnightvision2", + "areapotiondarkvis2": "lingerpotnightvision2", + "areapotiondarkvislong": "lingerpotnightvision2", + "areapotiondarkvisextended": "lingerpotnightvision2", + "areapotiondarkvisex": "lingerpotnightvision2", + "areapotiondarkvislevel2": "lingerpotnightvision2", + "areapotiondvision2": "lingerpotnightvision2", + "areapotiondvisionlong": "lingerpotnightvision2", + "areapotiondvisionextended": "lingerpotnightvision2", + "areapotiondvisionex": "lingerpotnightvision2", + "areapotiondvisionlevel2": "lingerpotnightvision2", + "areapotiondarkv2": "lingerpotnightvision2", + "areapotiondarkvlong": "lingerpotnightvision2", + "areapotiondarkvextended": "lingerpotnightvision2", + "areapotiondarkvex": "lingerpotnightvision2", + "areapotiondarkvlevel2": "lingerpotnightvision2", + "nightvisionareapotion2": "lingerpotnightvision2", + "nightvisionareapotionlong": "lingerpotnightvision2", + "nightvisionareapotionextended": "lingerpotnightvision2", + "nightvisionareapotionex": "lingerpotnightvision2", + "nightvisionareapotionlevel2": "lingerpotnightvision2", + "nvareapotion2": "lingerpotnightvision2", + "nvareapotionlong": "lingerpotnightvision2", + "nvareapotionextended": "lingerpotnightvision2", + "nvareapotionex": "lingerpotnightvision2", + "nvareapotionlevel2": "lingerpotnightvision2", + "nvisionareapotion2": "lingerpotnightvision2", + "nvisionareapotionlong": "lingerpotnightvision2", + "nvisionareapotionextended": "lingerpotnightvision2", + "nvisionareapotionex": "lingerpotnightvision2", + "nvisionareapotionlevel2": "lingerpotnightvision2", + "nightvareapotion2": "lingerpotnightvision2", + "nightvareapotionlong": "lingerpotnightvision2", + "nightvareapotionextended": "lingerpotnightvision2", + "nightvareapotionex": "lingerpotnightvision2", + "nightvareapotionlevel2": "lingerpotnightvision2", + "darkvisareapotion2": "lingerpotnightvision2", + "darkvisareapotionlong": "lingerpotnightvision2", + "darkvisareapotionextended": "lingerpotnightvision2", + "darkvisareapotionex": "lingerpotnightvision2", + "darkvisareapotionlevel2": "lingerpotnightvision2", + "dvisionareapotion2": "lingerpotnightvision2", + "dvisionareapotionlong": "lingerpotnightvision2", + "dvisionareapotionextended": "lingerpotnightvision2", + "dvisionareapotionex": "lingerpotnightvision2", + "dvisionareapotionlevel2": "lingerpotnightvision2", + "darkvareapotion2": "lingerpotnightvision2", + "darkvareapotionlong": "lingerpotnightvision2", + "darkvareapotionextended": "lingerpotnightvision2", + "darkvareapotionex": "lingerpotnightvision2", + "darkvareapotionlevel2": "lingerpotnightvision2", + "areapotnightvision2": "lingerpotnightvision2", + "areapotnightvisionlong": "lingerpotnightvision2", + "areapotnightvisionextended": "lingerpotnightvision2", + "areapotnightvisionex": "lingerpotnightvision2", + "areapotnightvisionlevel2": "lingerpotnightvision2", + "areapotnv2": "lingerpotnightvision2", + "areapotnvlong": "lingerpotnightvision2", + "areapotnvextended": "lingerpotnightvision2", + "areapotnvex": "lingerpotnightvision2", + "areapotnvlevel2": "lingerpotnightvision2", + "areapotnvision2": "lingerpotnightvision2", + "areapotnvisionlong": "lingerpotnightvision2", + "areapotnvisionextended": "lingerpotnightvision2", + "areapotnvisionex": "lingerpotnightvision2", + "areapotnvisionlevel2": "lingerpotnightvision2", + "areapotnightv2": "lingerpotnightvision2", + "areapotnightvlong": "lingerpotnightvision2", + "areapotnightvextended": "lingerpotnightvision2", + "areapotnightvex": "lingerpotnightvision2", + "areapotnightvlevel2": "lingerpotnightvision2", + "areapotdarkvis2": "lingerpotnightvision2", + "areapotdarkvislong": "lingerpotnightvision2", + "areapotdarkvisextended": "lingerpotnightvision2", + "areapotdarkvisex": "lingerpotnightvision2", + "areapotdarkvislevel2": "lingerpotnightvision2", + "areapotdvision2": "lingerpotnightvision2", + "areapotdvisionlong": "lingerpotnightvision2", + "areapotdvisionextended": "lingerpotnightvision2", + "areapotdvisionex": "lingerpotnightvision2", + "areapotdvisionlevel2": "lingerpotnightvision2", + "areapotdarkv2": "lingerpotnightvision2", + "areapotdarkvlong": "lingerpotnightvision2", + "areapotdarkvextended": "lingerpotnightvision2", + "areapotdarkvex": "lingerpotnightvision2", + "areapotdarkvlevel2": "lingerpotnightvision2", + "nightvisionareapot2": "lingerpotnightvision2", + "nightvisionareapotlong": "lingerpotnightvision2", + "nightvisionareapotextended": "lingerpotnightvision2", + "nightvisionareapotex": "lingerpotnightvision2", + "nightvisionareapotlevel2": "lingerpotnightvision2", + "nvareapot2": "lingerpotnightvision2", + "nvareapotlong": "lingerpotnightvision2", + "nvareapotextended": "lingerpotnightvision2", + "nvareapotex": "lingerpotnightvision2", + "nvareapotlevel2": "lingerpotnightvision2", + "nvisionareapot2": "lingerpotnightvision2", + "nvisionareapotlong": "lingerpotnightvision2", + "nvisionareapotextended": "lingerpotnightvision2", + "nvisionareapotex": "lingerpotnightvision2", + "nvisionareapotlevel2": "lingerpotnightvision2", + "nightvareapot2": "lingerpotnightvision2", + "nightvareapotlong": "lingerpotnightvision2", + "nightvareapotextended": "lingerpotnightvision2", + "nightvareapotex": "lingerpotnightvision2", + "nightvareapotlevel2": "lingerpotnightvision2", + "darkvisareapot2": "lingerpotnightvision2", + "darkvisareapotlong": "lingerpotnightvision2", + "darkvisareapotextended": "lingerpotnightvision2", + "darkvisareapotex": "lingerpotnightvision2", + "darkvisareapotlevel2": "lingerpotnightvision2", + "dvisionareapot2": "lingerpotnightvision2", + "dvisionareapotlong": "lingerpotnightvision2", + "dvisionareapotextended": "lingerpotnightvision2", + "dvisionareapotex": "lingerpotnightvision2", + "dvisionareapotlevel2": "lingerpotnightvision2", + "darkvareapot2": "lingerpotnightvision2", + "darkvareapotlong": "lingerpotnightvision2", + "darkvareapotextended": "lingerpotnightvision2", + "darkvareapotex": "lingerpotnightvision2", + "darkvareapotlevel2": "lingerpotnightvision2", + "cloudpotionnightvision2": "lingerpotnightvision2", + "cloudpotionnightvisionlong": "lingerpotnightvision2", + "cloudpotionnightvisionextended": "lingerpotnightvision2", + "cloudpotionnightvisionex": "lingerpotnightvision2", + "cloudpotionnightvisionlevel2": "lingerpotnightvision2", + "cloudpotionnv2": "lingerpotnightvision2", + "cloudpotionnvlong": "lingerpotnightvision2", + "cloudpotionnvextended": "lingerpotnightvision2", + "cloudpotionnvex": "lingerpotnightvision2", + "cloudpotionnvlevel2": "lingerpotnightvision2", + "cloudpotionnvision2": "lingerpotnightvision2", + "cloudpotionnvisionlong": "lingerpotnightvision2", + "cloudpotionnvisionextended": "lingerpotnightvision2", + "cloudpotionnvisionex": "lingerpotnightvision2", + "cloudpotionnvisionlevel2": "lingerpotnightvision2", + "cloudpotionnightv2": "lingerpotnightvision2", + "cloudpotionnightvlong": "lingerpotnightvision2", + "cloudpotionnightvextended": "lingerpotnightvision2", + "cloudpotionnightvex": "lingerpotnightvision2", + "cloudpotionnightvlevel2": "lingerpotnightvision2", + "cloudpotiondarkvis2": "lingerpotnightvision2", + "cloudpotiondarkvislong": "lingerpotnightvision2", + "cloudpotiondarkvisextended": "lingerpotnightvision2", + "cloudpotiondarkvisex": "lingerpotnightvision2", + "cloudpotiondarkvislevel2": "lingerpotnightvision2", + "cloudpotiondvision2": "lingerpotnightvision2", + "cloudpotiondvisionlong": "lingerpotnightvision2", + "cloudpotiondvisionextended": "lingerpotnightvision2", + "cloudpotiondvisionex": "lingerpotnightvision2", + "cloudpotiondvisionlevel2": "lingerpotnightvision2", + "cloudpotiondarkv2": "lingerpotnightvision2", + "cloudpotiondarkvlong": "lingerpotnightvision2", + "cloudpotiondarkvextended": "lingerpotnightvision2", + "cloudpotiondarkvex": "lingerpotnightvision2", + "cloudpotiondarkvlevel2": "lingerpotnightvision2", + "nightvisioncloudpotion2": "lingerpotnightvision2", + "nightvisioncloudpotionlong": "lingerpotnightvision2", + "nightvisioncloudpotionextended": "lingerpotnightvision2", + "nightvisioncloudpotionex": "lingerpotnightvision2", + "nightvisioncloudpotionlevel2": "lingerpotnightvision2", + "nvcloudpotion2": "lingerpotnightvision2", + "nvcloudpotionlong": "lingerpotnightvision2", + "nvcloudpotionextended": "lingerpotnightvision2", + "nvcloudpotionex": "lingerpotnightvision2", + "nvcloudpotionlevel2": "lingerpotnightvision2", + "nvisioncloudpotion2": "lingerpotnightvision2", + "nvisioncloudpotionlong": "lingerpotnightvision2", + "nvisioncloudpotionextended": "lingerpotnightvision2", + "nvisioncloudpotionex": "lingerpotnightvision2", + "nvisioncloudpotionlevel2": "lingerpotnightvision2", + "nightvcloudpotion2": "lingerpotnightvision2", + "nightvcloudpotionlong": "lingerpotnightvision2", + "nightvcloudpotionextended": "lingerpotnightvision2", + "nightvcloudpotionex": "lingerpotnightvision2", + "nightvcloudpotionlevel2": "lingerpotnightvision2", + "darkviscloudpotion2": "lingerpotnightvision2", + "darkviscloudpotionlong": "lingerpotnightvision2", + "darkviscloudpotionextended": "lingerpotnightvision2", + "darkviscloudpotionex": "lingerpotnightvision2", + "darkviscloudpotionlevel2": "lingerpotnightvision2", + "dvisioncloudpotion2": "lingerpotnightvision2", + "dvisioncloudpotionlong": "lingerpotnightvision2", + "dvisioncloudpotionextended": "lingerpotnightvision2", + "dvisioncloudpotionex": "lingerpotnightvision2", + "dvisioncloudpotionlevel2": "lingerpotnightvision2", + "darkvcloudpotion2": "lingerpotnightvision2", + "darkvcloudpotionlong": "lingerpotnightvision2", + "darkvcloudpotionextended": "lingerpotnightvision2", + "darkvcloudpotionex": "lingerpotnightvision2", + "darkvcloudpotionlevel2": "lingerpotnightvision2", + "cloudpotnightvision2": "lingerpotnightvision2", + "cloudpotnightvisionlong": "lingerpotnightvision2", + "cloudpotnightvisionextended": "lingerpotnightvision2", + "cloudpotnightvisionex": "lingerpotnightvision2", + "cloudpotnightvisionlevel2": "lingerpotnightvision2", + "cloudpotnv2": "lingerpotnightvision2", + "cloudpotnvlong": "lingerpotnightvision2", + "cloudpotnvextended": "lingerpotnightvision2", + "cloudpotnvex": "lingerpotnightvision2", + "cloudpotnvlevel2": "lingerpotnightvision2", + "cloudpotnvision2": "lingerpotnightvision2", + "cloudpotnvisionlong": "lingerpotnightvision2", + "cloudpotnvisionextended": "lingerpotnightvision2", + "cloudpotnvisionex": "lingerpotnightvision2", + "cloudpotnvisionlevel2": "lingerpotnightvision2", + "cloudpotnightv2": "lingerpotnightvision2", + "cloudpotnightvlong": "lingerpotnightvision2", + "cloudpotnightvextended": "lingerpotnightvision2", + "cloudpotnightvex": "lingerpotnightvision2", + "cloudpotnightvlevel2": "lingerpotnightvision2", + "cloudpotdarkvis2": "lingerpotnightvision2", + "cloudpotdarkvislong": "lingerpotnightvision2", + "cloudpotdarkvisextended": "lingerpotnightvision2", + "cloudpotdarkvisex": "lingerpotnightvision2", + "cloudpotdarkvislevel2": "lingerpotnightvision2", + "cloudpotdvision2": "lingerpotnightvision2", + "cloudpotdvisionlong": "lingerpotnightvision2", + "cloudpotdvisionextended": "lingerpotnightvision2", + "cloudpotdvisionex": "lingerpotnightvision2", + "cloudpotdvisionlevel2": "lingerpotnightvision2", + "cloudpotdarkv2": "lingerpotnightvision2", + "cloudpotdarkvlong": "lingerpotnightvision2", + "cloudpotdarkvextended": "lingerpotnightvision2", + "cloudpotdarkvex": "lingerpotnightvision2", + "cloudpotdarkvlevel2": "lingerpotnightvision2", + "nightvisioncloudpot2": "lingerpotnightvision2", + "nightvisioncloudpotlong": "lingerpotnightvision2", + "nightvisioncloudpotextended": "lingerpotnightvision2", + "nightvisioncloudpotex": "lingerpotnightvision2", + "nightvisioncloudpotlevel2": "lingerpotnightvision2", + "nvcloudpot2": "lingerpotnightvision2", + "nvcloudpotlong": "lingerpotnightvision2", + "nvcloudpotextended": "lingerpotnightvision2", + "nvcloudpotex": "lingerpotnightvision2", + "nvcloudpotlevel2": "lingerpotnightvision2", + "nvisioncloudpot2": "lingerpotnightvision2", + "nvisioncloudpotlong": "lingerpotnightvision2", + "nvisioncloudpotextended": "lingerpotnightvision2", + "nvisioncloudpotex": "lingerpotnightvision2", + "nvisioncloudpotlevel2": "lingerpotnightvision2", + "nightvcloudpot2": "lingerpotnightvision2", + "nightvcloudpotlong": "lingerpotnightvision2", + "nightvcloudpotextended": "lingerpotnightvision2", + "nightvcloudpotex": "lingerpotnightvision2", + "nightvcloudpotlevel2": "lingerpotnightvision2", + "darkviscloudpot2": "lingerpotnightvision2", + "darkviscloudpotlong": "lingerpotnightvision2", + "darkviscloudpotextended": "lingerpotnightvision2", + "darkviscloudpotex": "lingerpotnightvision2", + "darkviscloudpotlevel2": "lingerpotnightvision2", + "dvisioncloudpot2": "lingerpotnightvision2", + "dvisioncloudpotlong": "lingerpotnightvision2", + "dvisioncloudpotextended": "lingerpotnightvision2", + "dvisioncloudpotex": "lingerpotnightvision2", + "dvisioncloudpotlevel2": "lingerpotnightvision2", + "darkvcloudpot2": "lingerpotnightvision2", + "darkvcloudpotlong": "lingerpotnightvision2", + "darkvcloudpotextended": "lingerpotnightvision2", + "darkvcloudpotex": "lingerpotnightvision2", + "darkvcloudpotlevel2": "lingerpotnightvision2", + "arrownightvision2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_night_vision", + "type": "NIGHT_VISION", + "upgraded": false, + "extended": true + } + }, + "arrownightvisionlong": "arrownightvision2", + "arrownightvisionextended": "arrownightvision2", + "arrownightvisionex": "arrownightvision2", + "arrownightvisionlevel2": "arrownightvision2", + "arrownv2": "arrownightvision2", + "arrownvlong": "arrownightvision2", + "arrownvextended": "arrownightvision2", + "arrownvex": "arrownightvision2", + "arrownvlevel2": "arrownightvision2", + "arrownvision2": "arrownightvision2", + "arrownvisionlong": "arrownightvision2", + "arrownvisionextended": "arrownightvision2", + "arrownvisionex": "arrownightvision2", + "arrownvisionlevel2": "arrownightvision2", + "arrownightv2": "arrownightvision2", + "arrownightvlong": "arrownightvision2", + "arrownightvextended": "arrownightvision2", + "arrownightvex": "arrownightvision2", + "arrownightvlevel2": "arrownightvision2", + "arrowdarkvis2": "arrownightvision2", + "arrowdarkvislong": "arrownightvision2", + "arrowdarkvisextended": "arrownightvision2", + "arrowdarkvisex": "arrownightvision2", + "arrowdarkvislevel2": "arrownightvision2", + "arrowdvision2": "arrownightvision2", + "arrowdvisionlong": "arrownightvision2", + "arrowdvisionextended": "arrownightvision2", + "arrowdvisionex": "arrownightvision2", + "arrowdvisionlevel2": "arrownightvision2", + "arrowdarkv2": "arrownightvision2", + "arrowdarkvlong": "arrownightvision2", + "arrowdarkvextended": "arrownightvision2", + "arrowdarkvex": "arrownightvision2", + "arrowdarkvlevel2": "arrownightvision2", + "nightvisionarrow2": "arrownightvision2", + "nightvisionarrowlong": "arrownightvision2", + "nightvisionarrowextended": "arrownightvision2", + "nightvisionarrowex": "arrownightvision2", + "nightvisionarrowlevel2": "arrownightvision2", + "nvarrow2": "arrownightvision2", + "nvarrowlong": "arrownightvision2", + "nvarrowextended": "arrownightvision2", + "nvarrowex": "arrownightvision2", + "nvarrowlevel2": "arrownightvision2", + "nvisionarrow2": "arrownightvision2", + "nvisionarrowlong": "arrownightvision2", + "nvisionarrowextended": "arrownightvision2", + "nvisionarrowex": "arrownightvision2", + "nvisionarrowlevel2": "arrownightvision2", + "nightvarrow2": "arrownightvision2", + "nightvarrowlong": "arrownightvision2", + "nightvarrowextended": "arrownightvision2", + "nightvarrowex": "arrownightvision2", + "nightvarrowlevel2": "arrownightvision2", + "darkvisarrow2": "arrownightvision2", + "darkvisarrowlong": "arrownightvision2", + "darkvisarrowextended": "arrownightvision2", + "darkvisarrowex": "arrownightvision2", + "darkvisarrowlevel2": "arrownightvision2", + "dvisionarrow2": "arrownightvision2", + "dvisionarrowlong": "arrownightvision2", + "dvisionarrowextended": "arrownightvision2", + "dvisionarrowex": "arrownightvision2", + "dvisionarrowlevel2": "arrownightvision2", + "darkvarrow2": "arrownightvision2", + "darkvarrowlong": "arrownightvision2", + "darkvarrowextended": "arrownightvision2", + "darkvarrowex": "arrownightvision2", + "darkvarrowlevel2": "arrownightvision2", + "invisibilitypotion": { + "material": "POTION", + "potionData": { + "vanillaType": "invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": false + } + }, + "invispotion": "invisibilitypotion", + "invisiblepotion": "invisibilitypotion", + "invpotion": "invisibilitypotion", + "invisibilitypot": "invisibilitypotion", + "invispot": "invisibilitypotion", + "invisiblepot": "invisibilitypotion", + "invpot": "invisibilitypotion", + "potionofinvisibility": "invisibilitypotion", + "potionofinvis": "invisibilitypotion", + "potionofinvisible": "invisibilitypotion", + "potionofinv": "invisibilitypotion", + "potofinvisibility": "invisibilitypotion", + "potofinvis": "invisibilitypotion", + "potofinvisible": "invisibilitypotion", + "potofinv": "invisibilitypotion", + "splashinvisibilitypotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": false + } + }, + "splashinvispotion": "splashinvisibilitypotion", + "splashinvisiblepotion": "splashinvisibilitypotion", + "splashinvpotion": "splashinvisibilitypotion", + "splinvisibilitypotion": "splashinvisibilitypotion", + "splinvispotion": "splashinvisibilitypotion", + "splinvisiblepotion": "splashinvisibilitypotion", + "splinvpotion": "splashinvisibilitypotion", + "invisibilitysplashpotion": "splashinvisibilitypotion", + "invissplashpotion": "splashinvisibilitypotion", + "invisiblesplashpotion": "splashinvisibilitypotion", + "invsplashpotion": "splashinvisibilitypotion", + "splashinvisibilitypot": "splashinvisibilitypotion", + "splashinvispot": "splashinvisibilitypotion", + "splashinvisiblepot": "splashinvisibilitypotion", + "splashinvpot": "splashinvisibilitypotion", + "splinvisibilitypot": "splashinvisibilitypotion", + "splinvispot": "splashinvisibilitypotion", + "splinvisiblepot": "splashinvisibilitypotion", + "splinvpot": "splashinvisibilitypotion", + "invisibilitysplashpot": "splashinvisibilitypotion", + "invissplashpot": "splashinvisibilitypotion", + "invisiblesplashpot": "splashinvisibilitypotion", + "invsplashpot": "splashinvisibilitypotion", + "lingerpotinvisibility": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": false + } + }, + "lingerpotinvis": "lingerpotinvisibility", + "lingerpotinvisible": "lingerpotinvisibility", + "lingerpotinv": "lingerpotinvisibility", + "invisibilitylingerpot": "lingerpotinvisibility", + "invislingerpot": "lingerpotinvisibility", + "invisiblelingerpot": "lingerpotinvisibility", + "invlingerpot": "lingerpotinvisibility", + "aoepotioninvisibility": "lingerpotinvisibility", + "aoepotioninvis": "lingerpotinvisibility", + "aoepotioninvisible": "lingerpotinvisibility", + "aoepotioninv": "lingerpotinvisibility", + "invisibilityaoepoiont": "lingerpotinvisibility", + "invisaoepoiont": "lingerpotinvisibility", + "invisibleaoepoiont": "lingerpotinvisibility", + "invaoepoiont": "lingerpotinvisibility", + "aoepotinvisibility": "lingerpotinvisibility", + "aoepotinvis": "lingerpotinvisibility", + "aoepotinvisible": "lingerpotinvisibility", + "aoepotinv": "lingerpotinvisibility", + "invisibilityaoepot": "lingerpotinvisibility", + "invisaoepot": "lingerpotinvisibility", + "invisibleaoepot": "lingerpotinvisibility", + "invaoepot": "lingerpotinvisibility", + "areapotioninvisibility": "lingerpotinvisibility", + "areapotioninvis": "lingerpotinvisibility", + "areapotioninvisible": "lingerpotinvisibility", + "areapotioninv": "lingerpotinvisibility", + "invisibilityareapotion": "lingerpotinvisibility", + "invisareapotion": "lingerpotinvisibility", + "invisibleareapotion": "lingerpotinvisibility", + "invareapotion": "lingerpotinvisibility", + "areapotinvisibility": "lingerpotinvisibility", + "areapotinvis": "lingerpotinvisibility", + "areapotinvisible": "lingerpotinvisibility", + "areapotinv": "lingerpotinvisibility", + "invisibilityareapot": "lingerpotinvisibility", + "invisareapot": "lingerpotinvisibility", + "invisibleareapot": "lingerpotinvisibility", + "invareapot": "lingerpotinvisibility", + "cloudpotioninvisibility": "lingerpotinvisibility", + "cloudpotioninvis": "lingerpotinvisibility", + "cloudpotioninvisible": "lingerpotinvisibility", + "cloudpotioninv": "lingerpotinvisibility", + "invisibilitycloudpotion": "lingerpotinvisibility", + "inviscloudpotion": "lingerpotinvisibility", + "invisiblecloudpotion": "lingerpotinvisibility", + "invcloudpotion": "lingerpotinvisibility", + "cloudpotinvisibility": "lingerpotinvisibility", + "cloudpotinvis": "lingerpotinvisibility", + "cloudpotinvisible": "lingerpotinvisibility", + "cloudpotinv": "lingerpotinvisibility", + "invisibilitycloudpot": "lingerpotinvisibility", + "inviscloudpot": "lingerpotinvisibility", + "invisiblecloudpot": "lingerpotinvisibility", + "invcloudpot": "lingerpotinvisibility", + "arrowinvisibility": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": false + } + }, + "arrowinvis": "arrowinvisibility", + "arrowinvisible": "arrowinvisibility", + "arrowinv": "arrowinvisibility", + "invisibilityarrow": "arrowinvisibility", + "invisarrow": "arrowinvisibility", + "invisiblearrow": "arrowinvisibility", + "invarrow": "arrowinvisibility", + "invisibility2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": true + } + }, + "invisibilitylongpotion": "invisibility2potion", + "invisibilityextendedpotion": "invisibility2potion", + "invisibilityexpotion": "invisibility2potion", + "invisibilitylevel2potion": "invisibility2potion", + "invis2potion": "invisibility2potion", + "invislongpotion": "invisibility2potion", + "invisextendedpotion": "invisibility2potion", + "invisexpotion": "invisibility2potion", + "invislevel2potion": "invisibility2potion", + "invisible2potion": "invisibility2potion", + "invisiblelongpotion": "invisibility2potion", + "invisibleextendedpotion": "invisibility2potion", + "invisibleexpotion": "invisibility2potion", + "invisiblelevel2potion": "invisibility2potion", + "inv2potion": "invisibility2potion", + "invlongpotion": "invisibility2potion", + "invextendedpotion": "invisibility2potion", + "invexpotion": "invisibility2potion", + "invlevel2potion": "invisibility2potion", + "invisibility2pot": "invisibility2potion", + "invisibilitylongpot": "invisibility2potion", + "invisibilityextendedpot": "invisibility2potion", + "invisibilityexpot": "invisibility2potion", + "invisibilitylevel2pot": "invisibility2potion", + "invis2pot": "invisibility2potion", + "invislongpot": "invisibility2potion", + "invisextendedpot": "invisibility2potion", + "invisexpot": "invisibility2potion", + "invislevel2pot": "invisibility2potion", + "invisible2pot": "invisibility2potion", + "invisiblelongpot": "invisibility2potion", + "invisibleextendedpot": "invisibility2potion", + "invisibleexpot": "invisibility2potion", + "invisiblelevel2pot": "invisibility2potion", + "inv2pot": "invisibility2potion", + "invlongpot": "invisibility2potion", + "invextendedpot": "invisibility2potion", + "invexpot": "invisibility2potion", + "invlevel2pot": "invisibility2potion", + "potionofinvisibility2": "invisibility2potion", + "potionofinvisibilitylong": "invisibility2potion", + "potionofinvisibilityextended": "invisibility2potion", + "potionofinvisibilityex": "invisibility2potion", + "potionofinvisibilitylevel2": "invisibility2potion", + "potionofinvis2": "invisibility2potion", + "potionofinvislong": "invisibility2potion", + "potionofinvisextended": "invisibility2potion", + "potionofinvisex": "invisibility2potion", + "potionofinvislevel2": "invisibility2potion", + "potionofinvisible2": "invisibility2potion", + "potionofinvisiblelong": "invisibility2potion", + "potionofinvisibleextended": "invisibility2potion", + "potionofinvisibleex": "invisibility2potion", + "potionofinvisiblelevel2": "invisibility2potion", + "potionofinv2": "invisibility2potion", + "potionofinvlong": "invisibility2potion", + "potionofinvextended": "invisibility2potion", + "potionofinvex": "invisibility2potion", + "potionofinvlevel2": "invisibility2potion", + "potofinvisibility2": "invisibility2potion", + "potofinvisibilitylong": "invisibility2potion", + "potofinvisibilityextended": "invisibility2potion", + "potofinvisibilityex": "invisibility2potion", + "potofinvisibilitylevel2": "invisibility2potion", + "potofinvis2": "invisibility2potion", + "potofinvislong": "invisibility2potion", + "potofinvisextended": "invisibility2potion", + "potofinvisex": "invisibility2potion", + "potofinvislevel2": "invisibility2potion", + "potofinvisible2": "invisibility2potion", + "potofinvisiblelong": "invisibility2potion", + "potofinvisibleextended": "invisibility2potion", + "potofinvisibleex": "invisibility2potion", + "potofinvisiblelevel2": "invisibility2potion", + "potofinv2": "invisibility2potion", + "potofinvlong": "invisibility2potion", + "potofinvextended": "invisibility2potion", + "potofinvex": "invisibility2potion", + "potofinvlevel2": "invisibility2potion", + "splashinvisibility2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": true + } + }, + "splashinvisibilitylongpotion": "splashinvisibility2potion", + "splashinvisibilityextendedpotion": "splashinvisibility2potion", + "splashinvisibilityexpotion": "splashinvisibility2potion", + "splashinvisibilitylevel2potion": "splashinvisibility2potion", + "splashinvis2potion": "splashinvisibility2potion", + "splashinvislongpotion": "splashinvisibility2potion", + "splashinvisextendedpotion": "splashinvisibility2potion", + "splashinvisexpotion": "splashinvisibility2potion", + "splashinvislevel2potion": "splashinvisibility2potion", + "splashinvisible2potion": "splashinvisibility2potion", + "splashinvisiblelongpotion": "splashinvisibility2potion", + "splashinvisibleextendedpotion": "splashinvisibility2potion", + "splashinvisibleexpotion": "splashinvisibility2potion", + "splashinvisiblelevel2potion": "splashinvisibility2potion", + "splashinv2potion": "splashinvisibility2potion", + "splashinvlongpotion": "splashinvisibility2potion", + "splashinvextendedpotion": "splashinvisibility2potion", + "splashinvexpotion": "splashinvisibility2potion", + "splashinvlevel2potion": "splashinvisibility2potion", + "splinvisibility2potion": "splashinvisibility2potion", + "splinvisibilitylongpotion": "splashinvisibility2potion", + "splinvisibilityextendedpotion": "splashinvisibility2potion", + "splinvisibilityexpotion": "splashinvisibility2potion", + "splinvisibilitylevel2potion": "splashinvisibility2potion", + "splinvis2potion": "splashinvisibility2potion", + "splinvislongpotion": "splashinvisibility2potion", + "splinvisextendedpotion": "splashinvisibility2potion", + "splinvisexpotion": "splashinvisibility2potion", + "splinvislevel2potion": "splashinvisibility2potion", + "splinvisible2potion": "splashinvisibility2potion", + "splinvisiblelongpotion": "splashinvisibility2potion", + "splinvisibleextendedpotion": "splashinvisibility2potion", + "splinvisibleexpotion": "splashinvisibility2potion", + "splinvisiblelevel2potion": "splashinvisibility2potion", + "splinv2potion": "splashinvisibility2potion", + "splinvlongpotion": "splashinvisibility2potion", + "splinvextendedpotion": "splashinvisibility2potion", + "splinvexpotion": "splashinvisibility2potion", + "splinvlevel2potion": "splashinvisibility2potion", + "invisibility2splashpotion": "splashinvisibility2potion", + "invisibilitylongsplashpotion": "splashinvisibility2potion", + "invisibilityextendedsplashpotion": "splashinvisibility2potion", + "invisibilityexsplashpotion": "splashinvisibility2potion", + "invisibilitylevel2splashpotion": "splashinvisibility2potion", + "invis2splashpotion": "splashinvisibility2potion", + "invislongsplashpotion": "splashinvisibility2potion", + "invisextendedsplashpotion": "splashinvisibility2potion", + "invisexsplashpotion": "splashinvisibility2potion", + "invislevel2splashpotion": "splashinvisibility2potion", + "invisible2splashpotion": "splashinvisibility2potion", + "invisiblelongsplashpotion": "splashinvisibility2potion", + "invisibleextendedsplashpotion": "splashinvisibility2potion", + "invisibleexsplashpotion": "splashinvisibility2potion", + "invisiblelevel2splashpotion": "splashinvisibility2potion", + "inv2splashpotion": "splashinvisibility2potion", + "invlongsplashpotion": "splashinvisibility2potion", + "invextendedsplashpotion": "splashinvisibility2potion", + "invexsplashpotion": "splashinvisibility2potion", + "invlevel2splashpotion": "splashinvisibility2potion", + "splashinvisibility2pot": "splashinvisibility2potion", + "splashinvisibilitylongpot": "splashinvisibility2potion", + "splashinvisibilityextendedpot": "splashinvisibility2potion", + "splashinvisibilityexpot": "splashinvisibility2potion", + "splashinvisibilitylevel2pot": "splashinvisibility2potion", + "splashinvis2pot": "splashinvisibility2potion", + "splashinvislongpot": "splashinvisibility2potion", + "splashinvisextendedpot": "splashinvisibility2potion", + "splashinvisexpot": "splashinvisibility2potion", + "splashinvislevel2pot": "splashinvisibility2potion", + "splashinvisible2pot": "splashinvisibility2potion", + "splashinvisiblelongpot": "splashinvisibility2potion", + "splashinvisibleextendedpot": "splashinvisibility2potion", + "splashinvisibleexpot": "splashinvisibility2potion", + "splashinvisiblelevel2pot": "splashinvisibility2potion", + "splashinv2pot": "splashinvisibility2potion", + "splashinvlongpot": "splashinvisibility2potion", + "splashinvextendedpot": "splashinvisibility2potion", + "splashinvexpot": "splashinvisibility2potion", + "splashinvlevel2pot": "splashinvisibility2potion", + "splinvisibility2pot": "splashinvisibility2potion", + "splinvisibilitylongpot": "splashinvisibility2potion", + "splinvisibilityextendedpot": "splashinvisibility2potion", + "splinvisibilityexpot": "splashinvisibility2potion", + "splinvisibilitylevel2pot": "splashinvisibility2potion", + "splinvis2pot": "splashinvisibility2potion", + "splinvislongpot": "splashinvisibility2potion", + "splinvisextendedpot": "splashinvisibility2potion", + "splinvisexpot": "splashinvisibility2potion", + "splinvislevel2pot": "splashinvisibility2potion", + "splinvisible2pot": "splashinvisibility2potion", + "splinvisiblelongpot": "splashinvisibility2potion", + "splinvisibleextendedpot": "splashinvisibility2potion", + "splinvisibleexpot": "splashinvisibility2potion", + "splinvisiblelevel2pot": "splashinvisibility2potion", + "splinv2pot": "splashinvisibility2potion", + "splinvlongpot": "splashinvisibility2potion", + "splinvextendedpot": "splashinvisibility2potion", + "splinvexpot": "splashinvisibility2potion", + "splinvlevel2pot": "splashinvisibility2potion", + "invisibility2splashpot": "splashinvisibility2potion", + "invisibilitylongsplashpot": "splashinvisibility2potion", + "invisibilityextendedsplashpot": "splashinvisibility2potion", + "invisibilityexsplashpot": "splashinvisibility2potion", + "invisibilitylevel2splashpot": "splashinvisibility2potion", + "invis2splashpot": "splashinvisibility2potion", + "invislongsplashpot": "splashinvisibility2potion", + "invisextendedsplashpot": "splashinvisibility2potion", + "invisexsplashpot": "splashinvisibility2potion", + "invislevel2splashpot": "splashinvisibility2potion", + "invisible2splashpot": "splashinvisibility2potion", + "invisiblelongsplashpot": "splashinvisibility2potion", + "invisibleextendedsplashpot": "splashinvisibility2potion", + "invisibleexsplashpot": "splashinvisibility2potion", + "invisiblelevel2splashpot": "splashinvisibility2potion", + "inv2splashpot": "splashinvisibility2potion", + "invlongsplashpot": "splashinvisibility2potion", + "invextendedsplashpot": "splashinvisibility2potion", + "invexsplashpot": "splashinvisibility2potion", + "invlevel2splashpot": "splashinvisibility2potion", + "lingerpotinvisibility2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": true + } + }, + "lingerpotinvisibilitylong": "lingerpotinvisibility2", + "lingerpotinvisibilityextended": "lingerpotinvisibility2", + "lingerpotinvisibilityex": "lingerpotinvisibility2", + "lingerpotinvisibilitylevel2": "lingerpotinvisibility2", + "lingerpotinvis2": "lingerpotinvisibility2", + "lingerpotinvislong": "lingerpotinvisibility2", + "lingerpotinvisextended": "lingerpotinvisibility2", + "lingerpotinvisex": "lingerpotinvisibility2", + "lingerpotinvislevel2": "lingerpotinvisibility2", + "lingerpotinvisible2": "lingerpotinvisibility2", + "lingerpotinvisiblelong": "lingerpotinvisibility2", + "lingerpotinvisibleextended": "lingerpotinvisibility2", + "lingerpotinvisibleex": "lingerpotinvisibility2", + "lingerpotinvisiblelevel2": "lingerpotinvisibility2", + "lingerpotinv2": "lingerpotinvisibility2", + "lingerpotinvlong": "lingerpotinvisibility2", + "lingerpotinvextended": "lingerpotinvisibility2", + "lingerpotinvex": "lingerpotinvisibility2", + "lingerpotinvlevel2": "lingerpotinvisibility2", + "invisibilitylingerpot2": "lingerpotinvisibility2", + "invisibilitylingerpotlong": "lingerpotinvisibility2", + "invisibilitylingerpotextended": "lingerpotinvisibility2", + "invisibilitylingerpotex": "lingerpotinvisibility2", + "invisibilitylingerpotlevel2": "lingerpotinvisibility2", + "invislingerpot2": "lingerpotinvisibility2", + "invislingerpotlong": "lingerpotinvisibility2", + "invislingerpotextended": "lingerpotinvisibility2", + "invislingerpotex": "lingerpotinvisibility2", + "invislingerpotlevel2": "lingerpotinvisibility2", + "invisiblelingerpot2": "lingerpotinvisibility2", + "invisiblelingerpotlong": "lingerpotinvisibility2", + "invisiblelingerpotextended": "lingerpotinvisibility2", + "invisiblelingerpotex": "lingerpotinvisibility2", + "invisiblelingerpotlevel2": "lingerpotinvisibility2", + "invlingerpot2": "lingerpotinvisibility2", + "invlingerpotlong": "lingerpotinvisibility2", + "invlingerpotextended": "lingerpotinvisibility2", + "invlingerpotex": "lingerpotinvisibility2", + "invlingerpotlevel2": "lingerpotinvisibility2", + "aoepotioninvisibility2": "lingerpotinvisibility2", + "aoepotioninvisibilitylong": "lingerpotinvisibility2", + "aoepotioninvisibilityextended": "lingerpotinvisibility2", + "aoepotioninvisibilityex": "lingerpotinvisibility2", + "aoepotioninvisibilitylevel2": "lingerpotinvisibility2", + "aoepotioninvis2": "lingerpotinvisibility2", + "aoepotioninvislong": "lingerpotinvisibility2", + "aoepotioninvisextended": "lingerpotinvisibility2", + "aoepotioninvisex": "lingerpotinvisibility2", + "aoepotioninvislevel2": "lingerpotinvisibility2", + "aoepotioninvisible2": "lingerpotinvisibility2", + "aoepotioninvisiblelong": "lingerpotinvisibility2", + "aoepotioninvisibleextended": "lingerpotinvisibility2", + "aoepotioninvisibleex": "lingerpotinvisibility2", + "aoepotioninvisiblelevel2": "lingerpotinvisibility2", + "aoepotioninv2": "lingerpotinvisibility2", + "aoepotioninvlong": "lingerpotinvisibility2", + "aoepotioninvextended": "lingerpotinvisibility2", + "aoepotioninvex": "lingerpotinvisibility2", + "aoepotioninvlevel2": "lingerpotinvisibility2", + "invisibilityaoepoiont2": "lingerpotinvisibility2", + "invisibilityaoepoiontlong": "lingerpotinvisibility2", + "invisibilityaoepoiontextended": "lingerpotinvisibility2", + "invisibilityaoepoiontex": "lingerpotinvisibility2", + "invisibilityaoepoiontlevel2": "lingerpotinvisibility2", + "invisaoepoiont2": "lingerpotinvisibility2", + "invisaoepoiontlong": "lingerpotinvisibility2", + "invisaoepoiontextended": "lingerpotinvisibility2", + "invisaoepoiontex": "lingerpotinvisibility2", + "invisaoepoiontlevel2": "lingerpotinvisibility2", + "invisibleaoepoiont2": "lingerpotinvisibility2", + "invisibleaoepoiontlong": "lingerpotinvisibility2", + "invisibleaoepoiontextended": "lingerpotinvisibility2", + "invisibleaoepoiontex": "lingerpotinvisibility2", + "invisibleaoepoiontlevel2": "lingerpotinvisibility2", + "invaoepoiont2": "lingerpotinvisibility2", + "invaoepoiontlong": "lingerpotinvisibility2", + "invaoepoiontextended": "lingerpotinvisibility2", + "invaoepoiontex": "lingerpotinvisibility2", + "invaoepoiontlevel2": "lingerpotinvisibility2", + "aoepotinvisibility2": "lingerpotinvisibility2", + "aoepotinvisibilitylong": "lingerpotinvisibility2", + "aoepotinvisibilityextended": "lingerpotinvisibility2", + "aoepotinvisibilityex": "lingerpotinvisibility2", + "aoepotinvisibilitylevel2": "lingerpotinvisibility2", + "aoepotinvis2": "lingerpotinvisibility2", + "aoepotinvislong": "lingerpotinvisibility2", + "aoepotinvisextended": "lingerpotinvisibility2", + "aoepotinvisex": "lingerpotinvisibility2", + "aoepotinvislevel2": "lingerpotinvisibility2", + "aoepotinvisible2": "lingerpotinvisibility2", + "aoepotinvisiblelong": "lingerpotinvisibility2", + "aoepotinvisibleextended": "lingerpotinvisibility2", + "aoepotinvisibleex": "lingerpotinvisibility2", + "aoepotinvisiblelevel2": "lingerpotinvisibility2", + "aoepotinv2": "lingerpotinvisibility2", + "aoepotinvlong": "lingerpotinvisibility2", + "aoepotinvextended": "lingerpotinvisibility2", + "aoepotinvex": "lingerpotinvisibility2", + "aoepotinvlevel2": "lingerpotinvisibility2", + "invisibilityaoepot2": "lingerpotinvisibility2", + "invisibilityaoepotlong": "lingerpotinvisibility2", + "invisibilityaoepotextended": "lingerpotinvisibility2", + "invisibilityaoepotex": "lingerpotinvisibility2", + "invisibilityaoepotlevel2": "lingerpotinvisibility2", + "invisaoepot2": "lingerpotinvisibility2", + "invisaoepotlong": "lingerpotinvisibility2", + "invisaoepotextended": "lingerpotinvisibility2", + "invisaoepotex": "lingerpotinvisibility2", + "invisaoepotlevel2": "lingerpotinvisibility2", + "invisibleaoepot2": "lingerpotinvisibility2", + "invisibleaoepotlong": "lingerpotinvisibility2", + "invisibleaoepotextended": "lingerpotinvisibility2", + "invisibleaoepotex": "lingerpotinvisibility2", + "invisibleaoepotlevel2": "lingerpotinvisibility2", + "invaoepot2": "lingerpotinvisibility2", + "invaoepotlong": "lingerpotinvisibility2", + "invaoepotextended": "lingerpotinvisibility2", + "invaoepotex": "lingerpotinvisibility2", + "invaoepotlevel2": "lingerpotinvisibility2", + "areapotioninvisibility2": "lingerpotinvisibility2", + "areapotioninvisibilitylong": "lingerpotinvisibility2", + "areapotioninvisibilityextended": "lingerpotinvisibility2", + "areapotioninvisibilityex": "lingerpotinvisibility2", + "areapotioninvisibilitylevel2": "lingerpotinvisibility2", + "areapotioninvis2": "lingerpotinvisibility2", + "areapotioninvislong": "lingerpotinvisibility2", + "areapotioninvisextended": "lingerpotinvisibility2", + "areapotioninvisex": "lingerpotinvisibility2", + "areapotioninvislevel2": "lingerpotinvisibility2", + "areapotioninvisible2": "lingerpotinvisibility2", + "areapotioninvisiblelong": "lingerpotinvisibility2", + "areapotioninvisibleextended": "lingerpotinvisibility2", + "areapotioninvisibleex": "lingerpotinvisibility2", + "areapotioninvisiblelevel2": "lingerpotinvisibility2", + "areapotioninv2": "lingerpotinvisibility2", + "areapotioninvlong": "lingerpotinvisibility2", + "areapotioninvextended": "lingerpotinvisibility2", + "areapotioninvex": "lingerpotinvisibility2", + "areapotioninvlevel2": "lingerpotinvisibility2", + "invisibilityareapotion2": "lingerpotinvisibility2", + "invisibilityareapotionlong": "lingerpotinvisibility2", + "invisibilityareapotionextended": "lingerpotinvisibility2", + "invisibilityareapotionex": "lingerpotinvisibility2", + "invisibilityareapotionlevel2": "lingerpotinvisibility2", + "invisareapotion2": "lingerpotinvisibility2", + "invisareapotionlong": "lingerpotinvisibility2", + "invisareapotionextended": "lingerpotinvisibility2", + "invisareapotionex": "lingerpotinvisibility2", + "invisareapotionlevel2": "lingerpotinvisibility2", + "invisibleareapotion2": "lingerpotinvisibility2", + "invisibleareapotionlong": "lingerpotinvisibility2", + "invisibleareapotionextended": "lingerpotinvisibility2", + "invisibleareapotionex": "lingerpotinvisibility2", + "invisibleareapotionlevel2": "lingerpotinvisibility2", + "invareapotion2": "lingerpotinvisibility2", + "invareapotionlong": "lingerpotinvisibility2", + "invareapotionextended": "lingerpotinvisibility2", + "invareapotionex": "lingerpotinvisibility2", + "invareapotionlevel2": "lingerpotinvisibility2", + "areapotinvisibility2": "lingerpotinvisibility2", + "areapotinvisibilitylong": "lingerpotinvisibility2", + "areapotinvisibilityextended": "lingerpotinvisibility2", + "areapotinvisibilityex": "lingerpotinvisibility2", + "areapotinvisibilitylevel2": "lingerpotinvisibility2", + "areapotinvis2": "lingerpotinvisibility2", + "areapotinvislong": "lingerpotinvisibility2", + "areapotinvisextended": "lingerpotinvisibility2", + "areapotinvisex": "lingerpotinvisibility2", + "areapotinvislevel2": "lingerpotinvisibility2", + "areapotinvisible2": "lingerpotinvisibility2", + "areapotinvisiblelong": "lingerpotinvisibility2", + "areapotinvisibleextended": "lingerpotinvisibility2", + "areapotinvisibleex": "lingerpotinvisibility2", + "areapotinvisiblelevel2": "lingerpotinvisibility2", + "areapotinv2": "lingerpotinvisibility2", + "areapotinvlong": "lingerpotinvisibility2", + "areapotinvextended": "lingerpotinvisibility2", + "areapotinvex": "lingerpotinvisibility2", + "areapotinvlevel2": "lingerpotinvisibility2", + "invisibilityareapot2": "lingerpotinvisibility2", + "invisibilityareapotlong": "lingerpotinvisibility2", + "invisibilityareapotextended": "lingerpotinvisibility2", + "invisibilityareapotex": "lingerpotinvisibility2", + "invisibilityareapotlevel2": "lingerpotinvisibility2", + "invisareapot2": "lingerpotinvisibility2", + "invisareapotlong": "lingerpotinvisibility2", + "invisareapotextended": "lingerpotinvisibility2", + "invisareapotex": "lingerpotinvisibility2", + "invisareapotlevel2": "lingerpotinvisibility2", + "invisibleareapot2": "lingerpotinvisibility2", + "invisibleareapotlong": "lingerpotinvisibility2", + "invisibleareapotextended": "lingerpotinvisibility2", + "invisibleareapotex": "lingerpotinvisibility2", + "invisibleareapotlevel2": "lingerpotinvisibility2", + "invareapot2": "lingerpotinvisibility2", + "invareapotlong": "lingerpotinvisibility2", + "invareapotextended": "lingerpotinvisibility2", + "invareapotex": "lingerpotinvisibility2", + "invareapotlevel2": "lingerpotinvisibility2", + "cloudpotioninvisibility2": "lingerpotinvisibility2", + "cloudpotioninvisibilitylong": "lingerpotinvisibility2", + "cloudpotioninvisibilityextended": "lingerpotinvisibility2", + "cloudpotioninvisibilityex": "lingerpotinvisibility2", + "cloudpotioninvisibilitylevel2": "lingerpotinvisibility2", + "cloudpotioninvis2": "lingerpotinvisibility2", + "cloudpotioninvislong": "lingerpotinvisibility2", + "cloudpotioninvisextended": "lingerpotinvisibility2", + "cloudpotioninvisex": "lingerpotinvisibility2", + "cloudpotioninvislevel2": "lingerpotinvisibility2", + "cloudpotioninvisible2": "lingerpotinvisibility2", + "cloudpotioninvisiblelong": "lingerpotinvisibility2", + "cloudpotioninvisibleextended": "lingerpotinvisibility2", + "cloudpotioninvisibleex": "lingerpotinvisibility2", + "cloudpotioninvisiblelevel2": "lingerpotinvisibility2", + "cloudpotioninv2": "lingerpotinvisibility2", + "cloudpotioninvlong": "lingerpotinvisibility2", + "cloudpotioninvextended": "lingerpotinvisibility2", + "cloudpotioninvex": "lingerpotinvisibility2", + "cloudpotioninvlevel2": "lingerpotinvisibility2", + "invisibilitycloudpotion2": "lingerpotinvisibility2", + "invisibilitycloudpotionlong": "lingerpotinvisibility2", + "invisibilitycloudpotionextended": "lingerpotinvisibility2", + "invisibilitycloudpotionex": "lingerpotinvisibility2", + "invisibilitycloudpotionlevel2": "lingerpotinvisibility2", + "inviscloudpotion2": "lingerpotinvisibility2", + "inviscloudpotionlong": "lingerpotinvisibility2", + "inviscloudpotionextended": "lingerpotinvisibility2", + "inviscloudpotionex": "lingerpotinvisibility2", + "inviscloudpotionlevel2": "lingerpotinvisibility2", + "invisiblecloudpotion2": "lingerpotinvisibility2", + "invisiblecloudpotionlong": "lingerpotinvisibility2", + "invisiblecloudpotionextended": "lingerpotinvisibility2", + "invisiblecloudpotionex": "lingerpotinvisibility2", + "invisiblecloudpotionlevel2": "lingerpotinvisibility2", + "invcloudpotion2": "lingerpotinvisibility2", + "invcloudpotionlong": "lingerpotinvisibility2", + "invcloudpotionextended": "lingerpotinvisibility2", + "invcloudpotionex": "lingerpotinvisibility2", + "invcloudpotionlevel2": "lingerpotinvisibility2", + "cloudpotinvisibility2": "lingerpotinvisibility2", + "cloudpotinvisibilitylong": "lingerpotinvisibility2", + "cloudpotinvisibilityextended": "lingerpotinvisibility2", + "cloudpotinvisibilityex": "lingerpotinvisibility2", + "cloudpotinvisibilitylevel2": "lingerpotinvisibility2", + "cloudpotinvis2": "lingerpotinvisibility2", + "cloudpotinvislong": "lingerpotinvisibility2", + "cloudpotinvisextended": "lingerpotinvisibility2", + "cloudpotinvisex": "lingerpotinvisibility2", + "cloudpotinvislevel2": "lingerpotinvisibility2", + "cloudpotinvisible2": "lingerpotinvisibility2", + "cloudpotinvisiblelong": "lingerpotinvisibility2", + "cloudpotinvisibleextended": "lingerpotinvisibility2", + "cloudpotinvisibleex": "lingerpotinvisibility2", + "cloudpotinvisiblelevel2": "lingerpotinvisibility2", + "cloudpotinv2": "lingerpotinvisibility2", + "cloudpotinvlong": "lingerpotinvisibility2", + "cloudpotinvextended": "lingerpotinvisibility2", + "cloudpotinvex": "lingerpotinvisibility2", + "cloudpotinvlevel2": "lingerpotinvisibility2", + "invisibilitycloudpot2": "lingerpotinvisibility2", + "invisibilitycloudpotlong": "lingerpotinvisibility2", + "invisibilitycloudpotextended": "lingerpotinvisibility2", + "invisibilitycloudpotex": "lingerpotinvisibility2", + "invisibilitycloudpotlevel2": "lingerpotinvisibility2", + "inviscloudpot2": "lingerpotinvisibility2", + "inviscloudpotlong": "lingerpotinvisibility2", + "inviscloudpotextended": "lingerpotinvisibility2", + "inviscloudpotex": "lingerpotinvisibility2", + "inviscloudpotlevel2": "lingerpotinvisibility2", + "invisiblecloudpot2": "lingerpotinvisibility2", + "invisiblecloudpotlong": "lingerpotinvisibility2", + "invisiblecloudpotextended": "lingerpotinvisibility2", + "invisiblecloudpotex": "lingerpotinvisibility2", + "invisiblecloudpotlevel2": "lingerpotinvisibility2", + "invcloudpot2": "lingerpotinvisibility2", + "invcloudpotlong": "lingerpotinvisibility2", + "invcloudpotextended": "lingerpotinvisibility2", + "invcloudpotex": "lingerpotinvisibility2", + "invcloudpotlevel2": "lingerpotinvisibility2", + "arrowinvisibility2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_invisibility", + "type": "INVISIBILITY", + "upgraded": false, + "extended": true + } + }, + "arrowinvisibilitylong": "arrowinvisibility2", + "arrowinvisibilityextended": "arrowinvisibility2", + "arrowinvisibilityex": "arrowinvisibility2", + "arrowinvisibilitylevel2": "arrowinvisibility2", + "arrowinvis2": "arrowinvisibility2", + "arrowinvislong": "arrowinvisibility2", + "arrowinvisextended": "arrowinvisibility2", + "arrowinvisex": "arrowinvisibility2", + "arrowinvislevel2": "arrowinvisibility2", + "arrowinvisible2": "arrowinvisibility2", + "arrowinvisiblelong": "arrowinvisibility2", + "arrowinvisibleextended": "arrowinvisibility2", + "arrowinvisibleex": "arrowinvisibility2", + "arrowinvisiblelevel2": "arrowinvisibility2", + "arrowinv2": "arrowinvisibility2", + "arrowinvlong": "arrowinvisibility2", + "arrowinvextended": "arrowinvisibility2", + "arrowinvex": "arrowinvisibility2", + "arrowinvlevel2": "arrowinvisibility2", + "invisibilityarrow2": "arrowinvisibility2", + "invisibilityarrowlong": "arrowinvisibility2", + "invisibilityarrowextended": "arrowinvisibility2", + "invisibilityarrowex": "arrowinvisibility2", + "invisibilityarrowlevel2": "arrowinvisibility2", + "invisarrow2": "arrowinvisibility2", + "invisarrowlong": "arrowinvisibility2", + "invisarrowextended": "arrowinvisibility2", + "invisarrowex": "arrowinvisibility2", + "invisarrowlevel2": "arrowinvisibility2", + "invisiblearrow2": "arrowinvisibility2", + "invisiblearrowlong": "arrowinvisibility2", + "invisiblearrowextended": "arrowinvisibility2", + "invisiblearrowex": "arrowinvisibility2", + "invisiblearrowlevel2": "arrowinvisibility2", + "invarrow2": "arrowinvisibility2", + "invarrowlong": "arrowinvisibility2", + "invarrowextended": "arrowinvisibility2", + "invarrowex": "arrowinvisibility2", + "invarrowlevel2": "arrowinvisibility2", + "leapingpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "leaping", + "type": "JUMP", + "upgraded": false, + "extended": false + } + }, + "leappotion": "leapingpotion", + "leapingpot": "leapingpotion", + "leappot": "leapingpotion", + "potionofleaping": "leapingpotion", + "potionofleap": "leapingpotion", + "potofleaping": "leapingpotion", + "potofleap": "leapingpotion", + "splashleapingpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "leaping", + "type": "JUMP", + "upgraded": false, + "extended": false + } + }, + "splashleappotion": "splashleapingpotion", + "splleapingpotion": "splashleapingpotion", + "splleappotion": "splashleapingpotion", + "leapingsplashpotion": "splashleapingpotion", + "leapsplashpotion": "splashleapingpotion", + "splashleapingpot": "splashleapingpotion", + "splashleappot": "splashleapingpotion", + "splleapingpot": "splashleapingpotion", + "splleappot": "splashleapingpotion", + "leapingsplashpot": "splashleapingpotion", + "leapsplashpot": "splashleapingpotion", + "lingerpotleaping": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "leaping", + "type": "JUMP", + "upgraded": false, + "extended": false + } + }, + "lingerpotleap": "lingerpotleaping", + "leapinglingerpot": "lingerpotleaping", + "leaplingerpot": "lingerpotleaping", + "aoepotionleaping": "lingerpotleaping", + "aoepotionleap": "lingerpotleaping", + "leapingaoepoiont": "lingerpotleaping", + "leapaoepoiont": "lingerpotleaping", + "aoepotleaping": "lingerpotleaping", + "aoepotleap": "lingerpotleaping", + "leapingaoepot": "lingerpotleaping", + "leapaoepot": "lingerpotleaping", + "areapotionleaping": "lingerpotleaping", + "areapotionleap": "lingerpotleaping", + "leapingareapotion": "lingerpotleaping", + "leapareapotion": "lingerpotleaping", + "areapotleaping": "lingerpotleaping", + "areapotleap": "lingerpotleaping", + "leapingareapot": "lingerpotleaping", + "leapareapot": "lingerpotleaping", + "cloudpotionleaping": "lingerpotleaping", + "cloudpotionleap": "lingerpotleaping", + "leapingcloudpotion": "lingerpotleaping", + "leapcloudpotion": "lingerpotleaping", + "cloudpotleaping": "lingerpotleaping", + "cloudpotleap": "lingerpotleaping", + "leapingcloudpot": "lingerpotleaping", + "leapcloudpot": "lingerpotleaping", + "arrowleaping": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "leaping", + "type": "JUMP", + "upgraded": false, + "extended": false + } + }, + "arrowleap": "arrowleaping", + "leapingarrow": "arrowleaping", + "leaparrow": "arrowleaping", + "leapingiipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_leaping", + "type": "JUMP", + "upgraded": true, + "extended": false + } + }, + "leapingstrongpotion": "leapingiipotion", + "leapingleveliipotion": "leapingiipotion", + "leapiipotion": "leapingiipotion", + "leapstrongpotion": "leapingiipotion", + "leapleveliipotion": "leapingiipotion", + "leapingiipot": "leapingiipotion", + "leapingstrongpot": "leapingiipotion", + "leapingleveliipot": "leapingiipotion", + "leapiipot": "leapingiipotion", + "leapstrongpot": "leapingiipotion", + "leapleveliipot": "leapingiipotion", + "potionofleapingii": "leapingiipotion", + "potionofleapingstrong": "leapingiipotion", + "potionofleapinglevelii": "leapingiipotion", + "potionofleapii": "leapingiipotion", + "potionofleapstrong": "leapingiipotion", + "potionofleaplevelii": "leapingiipotion", + "potofleapingii": "leapingiipotion", + "potofleapingstrong": "leapingiipotion", + "potofleapinglevelii": "leapingiipotion", + "potofleapii": "leapingiipotion", + "potofleapstrong": "leapingiipotion", + "potofleaplevelii": "leapingiipotion", + "splashleapingiipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_leaping", + "type": "JUMP", + "upgraded": true, + "extended": false + } + }, + "splashleapingstrongpotion": "splashleapingiipotion", + "splashleapingleveliipotion": "splashleapingiipotion", + "splashleapiipotion": "splashleapingiipotion", + "splashleapstrongpotion": "splashleapingiipotion", + "splashleapleveliipotion": "splashleapingiipotion", + "splleapingiipotion": "splashleapingiipotion", + "splleapingstrongpotion": "splashleapingiipotion", + "splleapingleveliipotion": "splashleapingiipotion", + "splleapiipotion": "splashleapingiipotion", + "splleapstrongpotion": "splashleapingiipotion", + "splleapleveliipotion": "splashleapingiipotion", + "leapingiisplashpotion": "splashleapingiipotion", + "leapingstrongsplashpotion": "splashleapingiipotion", + "leapingleveliisplashpotion": "splashleapingiipotion", + "leapiisplashpotion": "splashleapingiipotion", + "leapstrongsplashpotion": "splashleapingiipotion", + "leapleveliisplashpotion": "splashleapingiipotion", + "splashleapingiipot": "splashleapingiipotion", + "splashleapingstrongpot": "splashleapingiipotion", + "splashleapingleveliipot": "splashleapingiipotion", + "splashleapiipot": "splashleapingiipotion", + "splashleapstrongpot": "splashleapingiipotion", + "splashleapleveliipot": "splashleapingiipotion", + "splleapingiipot": "splashleapingiipotion", + "splleapingstrongpot": "splashleapingiipotion", + "splleapingleveliipot": "splashleapingiipotion", + "splleapiipot": "splashleapingiipotion", + "splleapstrongpot": "splashleapingiipotion", + "splleapleveliipot": "splashleapingiipotion", + "leapingiisplashpot": "splashleapingiipotion", + "leapingstrongsplashpot": "splashleapingiipotion", + "leapingleveliisplashpot": "splashleapingiipotion", + "leapiisplashpot": "splashleapingiipotion", + "leapstrongsplashpot": "splashleapingiipotion", + "leapleveliisplashpot": "splashleapingiipotion", + "lingerpotleapingii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_leaping", + "type": "JUMP", + "upgraded": true, + "extended": false + } + }, + "lingerpotleapingstrong": "lingerpotleapingii", + "lingerpotleapinglevelii": "lingerpotleapingii", + "lingerpotleapii": "lingerpotleapingii", + "lingerpotleapstrong": "lingerpotleapingii", + "lingerpotleaplevelii": "lingerpotleapingii", + "leapinglingerpotii": "lingerpotleapingii", + "leapinglingerpotstrong": "lingerpotleapingii", + "leapinglingerpotlevelii": "lingerpotleapingii", + "leaplingerpotii": "lingerpotleapingii", + "leaplingerpotstrong": "lingerpotleapingii", + "leaplingerpotlevelii": "lingerpotleapingii", + "aoepotionleapingii": "lingerpotleapingii", + "aoepotionleapingstrong": "lingerpotleapingii", + "aoepotionleapinglevelii": "lingerpotleapingii", + "aoepotionleapii": "lingerpotleapingii", + "aoepotionleapstrong": "lingerpotleapingii", + "aoepotionleaplevelii": "lingerpotleapingii", + "leapingaoepoiontii": "lingerpotleapingii", + "leapingaoepoiontstrong": "lingerpotleapingii", + "leapingaoepoiontlevelii": "lingerpotleapingii", + "leapaoepoiontii": "lingerpotleapingii", + "leapaoepoiontstrong": "lingerpotleapingii", + "leapaoepoiontlevelii": "lingerpotleapingii", + "aoepotleapingii": "lingerpotleapingii", + "aoepotleapingstrong": "lingerpotleapingii", + "aoepotleapinglevelii": "lingerpotleapingii", + "aoepotleapii": "lingerpotleapingii", + "aoepotleapstrong": "lingerpotleapingii", + "aoepotleaplevelii": "lingerpotleapingii", + "leapingaoepotii": "lingerpotleapingii", + "leapingaoepotstrong": "lingerpotleapingii", + "leapingaoepotlevelii": "lingerpotleapingii", + "leapaoepotii": "lingerpotleapingii", + "leapaoepotstrong": "lingerpotleapingii", + "leapaoepotlevelii": "lingerpotleapingii", + "areapotionleapingii": "lingerpotleapingii", + "areapotionleapingstrong": "lingerpotleapingii", + "areapotionleapinglevelii": "lingerpotleapingii", + "areapotionleapii": "lingerpotleapingii", + "areapotionleapstrong": "lingerpotleapingii", + "areapotionleaplevelii": "lingerpotleapingii", + "leapingareapotionii": "lingerpotleapingii", + "leapingareapotionstrong": "lingerpotleapingii", + "leapingareapotionlevelii": "lingerpotleapingii", + "leapareapotionii": "lingerpotleapingii", + "leapareapotionstrong": "lingerpotleapingii", + "leapareapotionlevelii": "lingerpotleapingii", + "areapotleapingii": "lingerpotleapingii", + "areapotleapingstrong": "lingerpotleapingii", + "areapotleapinglevelii": "lingerpotleapingii", + "areapotleapii": "lingerpotleapingii", + "areapotleapstrong": "lingerpotleapingii", + "areapotleaplevelii": "lingerpotleapingii", + "leapingareapotii": "lingerpotleapingii", + "leapingareapotstrong": "lingerpotleapingii", + "leapingareapotlevelii": "lingerpotleapingii", + "leapareapotii": "lingerpotleapingii", + "leapareapotstrong": "lingerpotleapingii", + "leapareapotlevelii": "lingerpotleapingii", + "cloudpotionleapingii": "lingerpotleapingii", + "cloudpotionleapingstrong": "lingerpotleapingii", + "cloudpotionleapinglevelii": "lingerpotleapingii", + "cloudpotionleapii": "lingerpotleapingii", + "cloudpotionleapstrong": "lingerpotleapingii", + "cloudpotionleaplevelii": "lingerpotleapingii", + "leapingcloudpotionii": "lingerpotleapingii", + "leapingcloudpotionstrong": "lingerpotleapingii", + "leapingcloudpotionlevelii": "lingerpotleapingii", + "leapcloudpotionii": "lingerpotleapingii", + "leapcloudpotionstrong": "lingerpotleapingii", + "leapcloudpotionlevelii": "lingerpotleapingii", + "cloudpotleapingii": "lingerpotleapingii", + "cloudpotleapingstrong": "lingerpotleapingii", + "cloudpotleapinglevelii": "lingerpotleapingii", + "cloudpotleapii": "lingerpotleapingii", + "cloudpotleapstrong": "lingerpotleapingii", + "cloudpotleaplevelii": "lingerpotleapingii", + "leapingcloudpotii": "lingerpotleapingii", + "leapingcloudpotstrong": "lingerpotleapingii", + "leapingcloudpotlevelii": "lingerpotleapingii", + "leapcloudpotii": "lingerpotleapingii", + "leapcloudpotstrong": "lingerpotleapingii", + "leapcloudpotlevelii": "lingerpotleapingii", + "arrowleapingii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_leaping", + "type": "JUMP", + "upgraded": true, + "extended": false + } + }, + "arrowleapingstrong": "arrowleapingii", + "arrowleapinglevelii": "arrowleapingii", + "arrowleapii": "arrowleapingii", + "arrowleapstrong": "arrowleapingii", + "arrowleaplevelii": "arrowleapingii", + "leapingarrowii": "arrowleapingii", + "leapingarrowstrong": "arrowleapingii", + "leapingarrowlevelii": "arrowleapingii", + "leaparrowii": "arrowleapingii", + "leaparrowstrong": "arrowleapingii", + "leaparrowlevelii": "arrowleapingii", + "leaping2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_leaping", + "type": "JUMP", + "upgraded": false, + "extended": true + } + }, + "leapinglongpotion": "leaping2potion", + "leapingextendedpotion": "leaping2potion", + "leapingexpotion": "leaping2potion", + "leapinglevel2potion": "leaping2potion", + "leap2potion": "leaping2potion", + "leaplongpotion": "leaping2potion", + "leapextendedpotion": "leaping2potion", + "leapexpotion": "leaping2potion", + "leaplevel2potion": "leaping2potion", + "leaping2pot": "leaping2potion", + "leapinglongpot": "leaping2potion", + "leapingextendedpot": "leaping2potion", + "leapingexpot": "leaping2potion", + "leapinglevel2pot": "leaping2potion", + "leap2pot": "leaping2potion", + "leaplongpot": "leaping2potion", + "leapextendedpot": "leaping2potion", + "leapexpot": "leaping2potion", + "leaplevel2pot": "leaping2potion", + "potionofleaping2": "leaping2potion", + "potionofleapinglong": "leaping2potion", + "potionofleapingextended": "leaping2potion", + "potionofleapingex": "leaping2potion", + "potionofleapinglevel2": "leaping2potion", + "potionofleap2": "leaping2potion", + "potionofleaplong": "leaping2potion", + "potionofleapextended": "leaping2potion", + "potionofleapex": "leaping2potion", + "potionofleaplevel2": "leaping2potion", + "potofleaping2": "leaping2potion", + "potofleapinglong": "leaping2potion", + "potofleapingextended": "leaping2potion", + "potofleapingex": "leaping2potion", + "potofleapinglevel2": "leaping2potion", + "potofleap2": "leaping2potion", + "potofleaplong": "leaping2potion", + "potofleapextended": "leaping2potion", + "potofleapex": "leaping2potion", + "potofleaplevel2": "leaping2potion", + "splashleaping2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_leaping", + "type": "JUMP", + "upgraded": false, + "extended": true + } + }, + "splashleapinglongpotion": "splashleaping2potion", + "splashleapingextendedpotion": "splashleaping2potion", + "splashleapingexpotion": "splashleaping2potion", + "splashleapinglevel2potion": "splashleaping2potion", + "splashleap2potion": "splashleaping2potion", + "splashleaplongpotion": "splashleaping2potion", + "splashleapextendedpotion": "splashleaping2potion", + "splashleapexpotion": "splashleaping2potion", + "splashleaplevel2potion": "splashleaping2potion", + "splleaping2potion": "splashleaping2potion", + "splleapinglongpotion": "splashleaping2potion", + "splleapingextendedpotion": "splashleaping2potion", + "splleapingexpotion": "splashleaping2potion", + "splleapinglevel2potion": "splashleaping2potion", + "splleap2potion": "splashleaping2potion", + "splleaplongpotion": "splashleaping2potion", + "splleapextendedpotion": "splashleaping2potion", + "splleapexpotion": "splashleaping2potion", + "splleaplevel2potion": "splashleaping2potion", + "leaping2splashpotion": "splashleaping2potion", + "leapinglongsplashpotion": "splashleaping2potion", + "leapingextendedsplashpotion": "splashleaping2potion", + "leapingexsplashpotion": "splashleaping2potion", + "leapinglevel2splashpotion": "splashleaping2potion", + "leap2splashpotion": "splashleaping2potion", + "leaplongsplashpotion": "splashleaping2potion", + "leapextendedsplashpotion": "splashleaping2potion", + "leapexsplashpotion": "splashleaping2potion", + "leaplevel2splashpotion": "splashleaping2potion", + "splashleaping2pot": "splashleaping2potion", + "splashleapinglongpot": "splashleaping2potion", + "splashleapingextendedpot": "splashleaping2potion", + "splashleapingexpot": "splashleaping2potion", + "splashleapinglevel2pot": "splashleaping2potion", + "splashleap2pot": "splashleaping2potion", + "splashleaplongpot": "splashleaping2potion", + "splashleapextendedpot": "splashleaping2potion", + "splashleapexpot": "splashleaping2potion", + "splashleaplevel2pot": "splashleaping2potion", + "splleaping2pot": "splashleaping2potion", + "splleapinglongpot": "splashleaping2potion", + "splleapingextendedpot": "splashleaping2potion", + "splleapingexpot": "splashleaping2potion", + "splleapinglevel2pot": "splashleaping2potion", + "splleap2pot": "splashleaping2potion", + "splleaplongpot": "splashleaping2potion", + "splleapextendedpot": "splashleaping2potion", + "splleapexpot": "splashleaping2potion", + "splleaplevel2pot": "splashleaping2potion", + "leaping2splashpot": "splashleaping2potion", + "leapinglongsplashpot": "splashleaping2potion", + "leapingextendedsplashpot": "splashleaping2potion", + "leapingexsplashpot": "splashleaping2potion", + "leapinglevel2splashpot": "splashleaping2potion", + "leap2splashpot": "splashleaping2potion", + "leaplongsplashpot": "splashleaping2potion", + "leapextendedsplashpot": "splashleaping2potion", + "leapexsplashpot": "splashleaping2potion", + "leaplevel2splashpot": "splashleaping2potion", + "lingerpotleaping2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_leaping", + "type": "JUMP", + "upgraded": false, + "extended": true + } + }, + "lingerpotleapinglong": "lingerpotleaping2", + "lingerpotleapingextended": "lingerpotleaping2", + "lingerpotleapingex": "lingerpotleaping2", + "lingerpotleapinglevel2": "lingerpotleaping2", + "lingerpotleap2": "lingerpotleaping2", + "lingerpotleaplong": "lingerpotleaping2", + "lingerpotleapextended": "lingerpotleaping2", + "lingerpotleapex": "lingerpotleaping2", + "lingerpotleaplevel2": "lingerpotleaping2", + "leapinglingerpot2": "lingerpotleaping2", + "leapinglingerpotlong": "lingerpotleaping2", + "leapinglingerpotextended": "lingerpotleaping2", + "leapinglingerpotex": "lingerpotleaping2", + "leapinglingerpotlevel2": "lingerpotleaping2", + "leaplingerpot2": "lingerpotleaping2", + "leaplingerpotlong": "lingerpotleaping2", + "leaplingerpotextended": "lingerpotleaping2", + "leaplingerpotex": "lingerpotleaping2", + "leaplingerpotlevel2": "lingerpotleaping2", + "aoepotionleaping2": "lingerpotleaping2", + "aoepotionleapinglong": "lingerpotleaping2", + "aoepotionleapingextended": "lingerpotleaping2", + "aoepotionleapingex": "lingerpotleaping2", + "aoepotionleapinglevel2": "lingerpotleaping2", + "aoepotionleap2": "lingerpotleaping2", + "aoepotionleaplong": "lingerpotleaping2", + "aoepotionleapextended": "lingerpotleaping2", + "aoepotionleapex": "lingerpotleaping2", + "aoepotionleaplevel2": "lingerpotleaping2", + "leapingaoepoiont2": "lingerpotleaping2", + "leapingaoepoiontlong": "lingerpotleaping2", + "leapingaoepoiontextended": "lingerpotleaping2", + "leapingaoepoiontex": "lingerpotleaping2", + "leapingaoepoiontlevel2": "lingerpotleaping2", + "leapaoepoiont2": "lingerpotleaping2", + "leapaoepoiontlong": "lingerpotleaping2", + "leapaoepoiontextended": "lingerpotleaping2", + "leapaoepoiontex": "lingerpotleaping2", + "leapaoepoiontlevel2": "lingerpotleaping2", + "aoepotleaping2": "lingerpotleaping2", + "aoepotleapinglong": "lingerpotleaping2", + "aoepotleapingextended": "lingerpotleaping2", + "aoepotleapingex": "lingerpotleaping2", + "aoepotleapinglevel2": "lingerpotleaping2", + "aoepotleap2": "lingerpotleaping2", + "aoepotleaplong": "lingerpotleaping2", + "aoepotleapextended": "lingerpotleaping2", + "aoepotleapex": "lingerpotleaping2", + "aoepotleaplevel2": "lingerpotleaping2", + "leapingaoepot2": "lingerpotleaping2", + "leapingaoepotlong": "lingerpotleaping2", + "leapingaoepotextended": "lingerpotleaping2", + "leapingaoepotex": "lingerpotleaping2", + "leapingaoepotlevel2": "lingerpotleaping2", + "leapaoepot2": "lingerpotleaping2", + "leapaoepotlong": "lingerpotleaping2", + "leapaoepotextended": "lingerpotleaping2", + "leapaoepotex": "lingerpotleaping2", + "leapaoepotlevel2": "lingerpotleaping2", + "areapotionleaping2": "lingerpotleaping2", + "areapotionleapinglong": "lingerpotleaping2", + "areapotionleapingextended": "lingerpotleaping2", + "areapotionleapingex": "lingerpotleaping2", + "areapotionleapinglevel2": "lingerpotleaping2", + "areapotionleap2": "lingerpotleaping2", + "areapotionleaplong": "lingerpotleaping2", + "areapotionleapextended": "lingerpotleaping2", + "areapotionleapex": "lingerpotleaping2", + "areapotionleaplevel2": "lingerpotleaping2", + "leapingareapotion2": "lingerpotleaping2", + "leapingareapotionlong": "lingerpotleaping2", + "leapingareapotionextended": "lingerpotleaping2", + "leapingareapotionex": "lingerpotleaping2", + "leapingareapotionlevel2": "lingerpotleaping2", + "leapareapotion2": "lingerpotleaping2", + "leapareapotionlong": "lingerpotleaping2", + "leapareapotionextended": "lingerpotleaping2", + "leapareapotionex": "lingerpotleaping2", + "leapareapotionlevel2": "lingerpotleaping2", + "areapotleaping2": "lingerpotleaping2", + "areapotleapinglong": "lingerpotleaping2", + "areapotleapingextended": "lingerpotleaping2", + "areapotleapingex": "lingerpotleaping2", + "areapotleapinglevel2": "lingerpotleaping2", + "areapotleap2": "lingerpotleaping2", + "areapotleaplong": "lingerpotleaping2", + "areapotleapextended": "lingerpotleaping2", + "areapotleapex": "lingerpotleaping2", + "areapotleaplevel2": "lingerpotleaping2", + "leapingareapot2": "lingerpotleaping2", + "leapingareapotlong": "lingerpotleaping2", + "leapingareapotextended": "lingerpotleaping2", + "leapingareapotex": "lingerpotleaping2", + "leapingareapotlevel2": "lingerpotleaping2", + "leapareapot2": "lingerpotleaping2", + "leapareapotlong": "lingerpotleaping2", + "leapareapotextended": "lingerpotleaping2", + "leapareapotex": "lingerpotleaping2", + "leapareapotlevel2": "lingerpotleaping2", + "cloudpotionleaping2": "lingerpotleaping2", + "cloudpotionleapinglong": "lingerpotleaping2", + "cloudpotionleapingextended": "lingerpotleaping2", + "cloudpotionleapingex": "lingerpotleaping2", + "cloudpotionleapinglevel2": "lingerpotleaping2", + "cloudpotionleap2": "lingerpotleaping2", + "cloudpotionleaplong": "lingerpotleaping2", + "cloudpotionleapextended": "lingerpotleaping2", + "cloudpotionleapex": "lingerpotleaping2", + "cloudpotionleaplevel2": "lingerpotleaping2", + "leapingcloudpotion2": "lingerpotleaping2", + "leapingcloudpotionlong": "lingerpotleaping2", + "leapingcloudpotionextended": "lingerpotleaping2", + "leapingcloudpotionex": "lingerpotleaping2", + "leapingcloudpotionlevel2": "lingerpotleaping2", + "leapcloudpotion2": "lingerpotleaping2", + "leapcloudpotionlong": "lingerpotleaping2", + "leapcloudpotionextended": "lingerpotleaping2", + "leapcloudpotionex": "lingerpotleaping2", + "leapcloudpotionlevel2": "lingerpotleaping2", + "cloudpotleaping2": "lingerpotleaping2", + "cloudpotleapinglong": "lingerpotleaping2", + "cloudpotleapingextended": "lingerpotleaping2", + "cloudpotleapingex": "lingerpotleaping2", + "cloudpotleapinglevel2": "lingerpotleaping2", + "cloudpotleap2": "lingerpotleaping2", + "cloudpotleaplong": "lingerpotleaping2", + "cloudpotleapextended": "lingerpotleaping2", + "cloudpotleapex": "lingerpotleaping2", + "cloudpotleaplevel2": "lingerpotleaping2", + "leapingcloudpot2": "lingerpotleaping2", + "leapingcloudpotlong": "lingerpotleaping2", + "leapingcloudpotextended": "lingerpotleaping2", + "leapingcloudpotex": "lingerpotleaping2", + "leapingcloudpotlevel2": "lingerpotleaping2", + "leapcloudpot2": "lingerpotleaping2", + "leapcloudpotlong": "lingerpotleaping2", + "leapcloudpotextended": "lingerpotleaping2", + "leapcloudpotex": "lingerpotleaping2", + "leapcloudpotlevel2": "lingerpotleaping2", + "arrowleaping2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_leaping", + "type": "JUMP", + "upgraded": false, + "extended": true + } + }, + "arrowleapinglong": "arrowleaping2", + "arrowleapingextended": "arrowleaping2", + "arrowleapingex": "arrowleaping2", + "arrowleapinglevel2": "arrowleaping2", + "arrowleap2": "arrowleaping2", + "arrowleaplong": "arrowleaping2", + "arrowleapextended": "arrowleaping2", + "arrowleapex": "arrowleaping2", + "arrowleaplevel2": "arrowleaping2", + "leapingarrow2": "arrowleaping2", + "leapingarrowlong": "arrowleaping2", + "leapingarrowextended": "arrowleaping2", + "leapingarrowex": "arrowleaping2", + "leapingarrowlevel2": "arrowleaping2", + "leaparrow2": "arrowleaping2", + "leaparrowlong": "arrowleaping2", + "leaparrowextended": "arrowleaping2", + "leaparrowex": "arrowleaping2", + "leaparrowlevel2": "arrowleaping2", + "fireresistpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": false + } + }, + "firerespotion": "fireresistpotion", + "fireresistancepotion": "fireresistpotion", + "fireresistpot": "fireresistpotion", + "firerespot": "fireresistpotion", + "fireresistancepot": "fireresistpotion", + "potionoffireresist": "fireresistpotion", + "potionoffireres": "fireresistpotion", + "potionoffireresistance": "fireresistpotion", + "potoffireresist": "fireresistpotion", + "potoffireres": "fireresistpotion", + "potoffireresistance": "fireresistpotion", + "splashfireresistpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": false + } + }, + "splashfirerespotion": "splashfireresistpotion", + "splashfireresistancepotion": "splashfireresistpotion", + "splfireresistpotion": "splashfireresistpotion", + "splfirerespotion": "splashfireresistpotion", + "splfireresistancepotion": "splashfireresistpotion", + "fireresistsplashpotion": "splashfireresistpotion", + "fireressplashpotion": "splashfireresistpotion", + "fireresistancesplashpotion": "splashfireresistpotion", + "splashfireresistpot": "splashfireresistpotion", + "splashfirerespot": "splashfireresistpotion", + "splashfireresistancepot": "splashfireresistpotion", + "splfireresistpot": "splashfireresistpotion", + "splfirerespot": "splashfireresistpotion", + "splfireresistancepot": "splashfireresistpotion", + "fireresistsplashpot": "splashfireresistpotion", + "fireressplashpot": "splashfireresistpotion", + "fireresistancesplashpot": "splashfireresistpotion", + "lingerpotfireresist": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": false + } + }, + "lingerpotfireres": "lingerpotfireresist", + "lingerpotfireresistance": "lingerpotfireresist", + "fireresistlingerpot": "lingerpotfireresist", + "firereslingerpot": "lingerpotfireresist", + "fireresistancelingerpot": "lingerpotfireresist", + "aoepotionfireresist": "lingerpotfireresist", + "aoepotionfireres": "lingerpotfireresist", + "aoepotionfireresistance": "lingerpotfireresist", + "fireresistaoepoiont": "lingerpotfireresist", + "fireresaoepoiont": "lingerpotfireresist", + "fireresistanceaoepoiont": "lingerpotfireresist", + "aoepotfireresist": "lingerpotfireresist", + "aoepotfireres": "lingerpotfireresist", + "aoepotfireresistance": "lingerpotfireresist", + "fireresistaoepot": "lingerpotfireresist", + "fireresaoepot": "lingerpotfireresist", + "fireresistanceaoepot": "lingerpotfireresist", + "areapotionfireresist": "lingerpotfireresist", + "areapotionfireres": "lingerpotfireresist", + "areapotionfireresistance": "lingerpotfireresist", + "fireresistareapotion": "lingerpotfireresist", + "fireresareapotion": "lingerpotfireresist", + "fireresistanceareapotion": "lingerpotfireresist", + "areapotfireresist": "lingerpotfireresist", + "areapotfireres": "lingerpotfireresist", + "areapotfireresistance": "lingerpotfireresist", + "fireresistareapot": "lingerpotfireresist", + "fireresareapot": "lingerpotfireresist", + "fireresistanceareapot": "lingerpotfireresist", + "cloudpotionfireresist": "lingerpotfireresist", + "cloudpotionfireres": "lingerpotfireresist", + "cloudpotionfireresistance": "lingerpotfireresist", + "fireresistcloudpotion": "lingerpotfireresist", + "firerescloudpotion": "lingerpotfireresist", + "fireresistancecloudpotion": "lingerpotfireresist", + "cloudpotfireresist": "lingerpotfireresist", + "cloudpotfireres": "lingerpotfireresist", + "cloudpotfireresistance": "lingerpotfireresist", + "fireresistcloudpot": "lingerpotfireresist", + "firerescloudpot": "lingerpotfireresist", + "fireresistancecloudpot": "lingerpotfireresist", + "arrowfireresist": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": false + } + }, + "arrowfireres": "arrowfireresist", + "arrowfireresistance": "arrowfireresist", + "fireresistarrow": "arrowfireresist", + "fireresarrow": "arrowfireresist", + "fireresistancearrow": "arrowfireresist", + "fireresist2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": true + } + }, + "fireresistlongpotion": "fireresist2potion", + "fireresistextendedpotion": "fireresist2potion", + "fireresistexpotion": "fireresist2potion", + "fireresistlevel2potion": "fireresist2potion", + "fireres2potion": "fireresist2potion", + "firereslongpotion": "fireresist2potion", + "fireresextendedpotion": "fireresist2potion", + "fireresexpotion": "fireresist2potion", + "firereslevel2potion": "fireresist2potion", + "fireresistance2potion": "fireresist2potion", + "fireresistancelongpotion": "fireresist2potion", + "fireresistanceextendedpotion": "fireresist2potion", + "fireresistanceexpotion": "fireresist2potion", + "fireresistancelevel2potion": "fireresist2potion", + "fireresist2pot": "fireresist2potion", + "fireresistlongpot": "fireresist2potion", + "fireresistextendedpot": "fireresist2potion", + "fireresistexpot": "fireresist2potion", + "fireresistlevel2pot": "fireresist2potion", + "fireres2pot": "fireresist2potion", + "firereslongpot": "fireresist2potion", + "fireresextendedpot": "fireresist2potion", + "fireresexpot": "fireresist2potion", + "firereslevel2pot": "fireresist2potion", + "fireresistance2pot": "fireresist2potion", + "fireresistancelongpot": "fireresist2potion", + "fireresistanceextendedpot": "fireresist2potion", + "fireresistanceexpot": "fireresist2potion", + "fireresistancelevel2pot": "fireresist2potion", + "potionoffireresist2": "fireresist2potion", + "potionoffireresistlong": "fireresist2potion", + "potionoffireresistextended": "fireresist2potion", + "potionoffireresistex": "fireresist2potion", + "potionoffireresistlevel2": "fireresist2potion", + "potionoffireres2": "fireresist2potion", + "potionoffirereslong": "fireresist2potion", + "potionoffireresextended": "fireresist2potion", + "potionoffireresex": "fireresist2potion", + "potionoffirereslevel2": "fireresist2potion", + "potionoffireresistance2": "fireresist2potion", + "potionoffireresistancelong": "fireresist2potion", + "potionoffireresistanceextended": "fireresist2potion", + "potionoffireresistanceex": "fireresist2potion", + "potionoffireresistancelevel2": "fireresist2potion", + "potoffireresist2": "fireresist2potion", + "potoffireresistlong": "fireresist2potion", + "potoffireresistextended": "fireresist2potion", + "potoffireresistex": "fireresist2potion", + "potoffireresistlevel2": "fireresist2potion", + "potoffireres2": "fireresist2potion", + "potoffirereslong": "fireresist2potion", + "potoffireresextended": "fireresist2potion", + "potoffireresex": "fireresist2potion", + "potoffirereslevel2": "fireresist2potion", + "potoffireresistance2": "fireresist2potion", + "potoffireresistancelong": "fireresist2potion", + "potoffireresistanceextended": "fireresist2potion", + "potoffireresistanceex": "fireresist2potion", + "potoffireresistancelevel2": "fireresist2potion", + "splashfireresist2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": true + } + }, + "splashfireresistlongpotion": "splashfireresist2potion", + "splashfireresistextendedpotion": "splashfireresist2potion", + "splashfireresistexpotion": "splashfireresist2potion", + "splashfireresistlevel2potion": "splashfireresist2potion", + "splashfireres2potion": "splashfireresist2potion", + "splashfirereslongpotion": "splashfireresist2potion", + "splashfireresextendedpotion": "splashfireresist2potion", + "splashfireresexpotion": "splashfireresist2potion", + "splashfirereslevel2potion": "splashfireresist2potion", + "splashfireresistance2potion": "splashfireresist2potion", + "splashfireresistancelongpotion": "splashfireresist2potion", + "splashfireresistanceextendedpotion": "splashfireresist2potion", + "splashfireresistanceexpotion": "splashfireresist2potion", + "splashfireresistancelevel2potion": "splashfireresist2potion", + "splfireresist2potion": "splashfireresist2potion", + "splfireresistlongpotion": "splashfireresist2potion", + "splfireresistextendedpotion": "splashfireresist2potion", + "splfireresistexpotion": "splashfireresist2potion", + "splfireresistlevel2potion": "splashfireresist2potion", + "splfireres2potion": "splashfireresist2potion", + "splfirereslongpotion": "splashfireresist2potion", + "splfireresextendedpotion": "splashfireresist2potion", + "splfireresexpotion": "splashfireresist2potion", + "splfirereslevel2potion": "splashfireresist2potion", + "splfireresistance2potion": "splashfireresist2potion", + "splfireresistancelongpotion": "splashfireresist2potion", + "splfireresistanceextendedpotion": "splashfireresist2potion", + "splfireresistanceexpotion": "splashfireresist2potion", + "splfireresistancelevel2potion": "splashfireresist2potion", + "fireresist2splashpotion": "splashfireresist2potion", + "fireresistlongsplashpotion": "splashfireresist2potion", + "fireresistextendedsplashpotion": "splashfireresist2potion", + "fireresistexsplashpotion": "splashfireresist2potion", + "fireresistlevel2splashpotion": "splashfireresist2potion", + "fireres2splashpotion": "splashfireresist2potion", + "firereslongsplashpotion": "splashfireresist2potion", + "fireresextendedsplashpotion": "splashfireresist2potion", + "fireresexsplashpotion": "splashfireresist2potion", + "firereslevel2splashpotion": "splashfireresist2potion", + "fireresistance2splashpotion": "splashfireresist2potion", + "fireresistancelongsplashpotion": "splashfireresist2potion", + "fireresistanceextendedsplashpotion": "splashfireresist2potion", + "fireresistanceexsplashpotion": "splashfireresist2potion", + "fireresistancelevel2splashpotion": "splashfireresist2potion", + "splashfireresist2pot": "splashfireresist2potion", + "splashfireresistlongpot": "splashfireresist2potion", + "splashfireresistextendedpot": "splashfireresist2potion", + "splashfireresistexpot": "splashfireresist2potion", + "splashfireresistlevel2pot": "splashfireresist2potion", + "splashfireres2pot": "splashfireresist2potion", + "splashfirereslongpot": "splashfireresist2potion", + "splashfireresextendedpot": "splashfireresist2potion", + "splashfireresexpot": "splashfireresist2potion", + "splashfirereslevel2pot": "splashfireresist2potion", + "splashfireresistance2pot": "splashfireresist2potion", + "splashfireresistancelongpot": "splashfireresist2potion", + "splashfireresistanceextendedpot": "splashfireresist2potion", + "splashfireresistanceexpot": "splashfireresist2potion", + "splashfireresistancelevel2pot": "splashfireresist2potion", + "splfireresist2pot": "splashfireresist2potion", + "splfireresistlongpot": "splashfireresist2potion", + "splfireresistextendedpot": "splashfireresist2potion", + "splfireresistexpot": "splashfireresist2potion", + "splfireresistlevel2pot": "splashfireresist2potion", + "splfireres2pot": "splashfireresist2potion", + "splfirereslongpot": "splashfireresist2potion", + "splfireresextendedpot": "splashfireresist2potion", + "splfireresexpot": "splashfireresist2potion", + "splfirereslevel2pot": "splashfireresist2potion", + "splfireresistance2pot": "splashfireresist2potion", + "splfireresistancelongpot": "splashfireresist2potion", + "splfireresistanceextendedpot": "splashfireresist2potion", + "splfireresistanceexpot": "splashfireresist2potion", + "splfireresistancelevel2pot": "splashfireresist2potion", + "fireresist2splashpot": "splashfireresist2potion", + "fireresistlongsplashpot": "splashfireresist2potion", + "fireresistextendedsplashpot": "splashfireresist2potion", + "fireresistexsplashpot": "splashfireresist2potion", + "fireresistlevel2splashpot": "splashfireresist2potion", + "fireres2splashpot": "splashfireresist2potion", + "firereslongsplashpot": "splashfireresist2potion", + "fireresextendedsplashpot": "splashfireresist2potion", + "fireresexsplashpot": "splashfireresist2potion", + "firereslevel2splashpot": "splashfireresist2potion", + "fireresistance2splashpot": "splashfireresist2potion", + "fireresistancelongsplashpot": "splashfireresist2potion", + "fireresistanceextendedsplashpot": "splashfireresist2potion", + "fireresistanceexsplashpot": "splashfireresist2potion", + "fireresistancelevel2splashpot": "splashfireresist2potion", + "lingerpotfireresist2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": true + } + }, + "lingerpotfireresistlong": "lingerpotfireresist2", + "lingerpotfireresistextended": "lingerpotfireresist2", + "lingerpotfireresistex": "lingerpotfireresist2", + "lingerpotfireresistlevel2": "lingerpotfireresist2", + "lingerpotfireres2": "lingerpotfireresist2", + "lingerpotfirereslong": "lingerpotfireresist2", + "lingerpotfireresextended": "lingerpotfireresist2", + "lingerpotfireresex": "lingerpotfireresist2", + "lingerpotfirereslevel2": "lingerpotfireresist2", + "lingerpotfireresistance2": "lingerpotfireresist2", + "lingerpotfireresistancelong": "lingerpotfireresist2", + "lingerpotfireresistanceextended": "lingerpotfireresist2", + "lingerpotfireresistanceex": "lingerpotfireresist2", + "lingerpotfireresistancelevel2": "lingerpotfireresist2", + "fireresistlingerpot2": "lingerpotfireresist2", + "fireresistlingerpotlong": "lingerpotfireresist2", + "fireresistlingerpotextended": "lingerpotfireresist2", + "fireresistlingerpotex": "lingerpotfireresist2", + "fireresistlingerpotlevel2": "lingerpotfireresist2", + "firereslingerpot2": "lingerpotfireresist2", + "firereslingerpotlong": "lingerpotfireresist2", + "firereslingerpotextended": "lingerpotfireresist2", + "firereslingerpotex": "lingerpotfireresist2", + "firereslingerpotlevel2": "lingerpotfireresist2", + "fireresistancelingerpot2": "lingerpotfireresist2", + "fireresistancelingerpotlong": "lingerpotfireresist2", + "fireresistancelingerpotextended": "lingerpotfireresist2", + "fireresistancelingerpotex": "lingerpotfireresist2", + "fireresistancelingerpotlevel2": "lingerpotfireresist2", + "aoepotionfireresist2": "lingerpotfireresist2", + "aoepotionfireresistlong": "lingerpotfireresist2", + "aoepotionfireresistextended": "lingerpotfireresist2", + "aoepotionfireresistex": "lingerpotfireresist2", + "aoepotionfireresistlevel2": "lingerpotfireresist2", + "aoepotionfireres2": "lingerpotfireresist2", + "aoepotionfirereslong": "lingerpotfireresist2", + "aoepotionfireresextended": "lingerpotfireresist2", + "aoepotionfireresex": "lingerpotfireresist2", + "aoepotionfirereslevel2": "lingerpotfireresist2", + "aoepotionfireresistance2": "lingerpotfireresist2", + "aoepotionfireresistancelong": "lingerpotfireresist2", + "aoepotionfireresistanceextended": "lingerpotfireresist2", + "aoepotionfireresistanceex": "lingerpotfireresist2", + "aoepotionfireresistancelevel2": "lingerpotfireresist2", + "fireresistaoepoiont2": "lingerpotfireresist2", + "fireresistaoepoiontlong": "lingerpotfireresist2", + "fireresistaoepoiontextended": "lingerpotfireresist2", + "fireresistaoepoiontex": "lingerpotfireresist2", + "fireresistaoepoiontlevel2": "lingerpotfireresist2", + "fireresaoepoiont2": "lingerpotfireresist2", + "fireresaoepoiontlong": "lingerpotfireresist2", + "fireresaoepoiontextended": "lingerpotfireresist2", + "fireresaoepoiontex": "lingerpotfireresist2", + "fireresaoepoiontlevel2": "lingerpotfireresist2", + "fireresistanceaoepoiont2": "lingerpotfireresist2", + "fireresistanceaoepoiontlong": "lingerpotfireresist2", + "fireresistanceaoepoiontextended": "lingerpotfireresist2", + "fireresistanceaoepoiontex": "lingerpotfireresist2", + "fireresistanceaoepoiontlevel2": "lingerpotfireresist2", + "aoepotfireresist2": "lingerpotfireresist2", + "aoepotfireresistlong": "lingerpotfireresist2", + "aoepotfireresistextended": "lingerpotfireresist2", + "aoepotfireresistex": "lingerpotfireresist2", + "aoepotfireresistlevel2": "lingerpotfireresist2", + "aoepotfireres2": "lingerpotfireresist2", + "aoepotfirereslong": "lingerpotfireresist2", + "aoepotfireresextended": "lingerpotfireresist2", + "aoepotfireresex": "lingerpotfireresist2", + "aoepotfirereslevel2": "lingerpotfireresist2", + "aoepotfireresistance2": "lingerpotfireresist2", + "aoepotfireresistancelong": "lingerpotfireresist2", + "aoepotfireresistanceextended": "lingerpotfireresist2", + "aoepotfireresistanceex": "lingerpotfireresist2", + "aoepotfireresistancelevel2": "lingerpotfireresist2", + "fireresistaoepot2": "lingerpotfireresist2", + "fireresistaoepotlong": "lingerpotfireresist2", + "fireresistaoepotextended": "lingerpotfireresist2", + "fireresistaoepotex": "lingerpotfireresist2", + "fireresistaoepotlevel2": "lingerpotfireresist2", + "fireresaoepot2": "lingerpotfireresist2", + "fireresaoepotlong": "lingerpotfireresist2", + "fireresaoepotextended": "lingerpotfireresist2", + "fireresaoepotex": "lingerpotfireresist2", + "fireresaoepotlevel2": "lingerpotfireresist2", + "fireresistanceaoepot2": "lingerpotfireresist2", + "fireresistanceaoepotlong": "lingerpotfireresist2", + "fireresistanceaoepotextended": "lingerpotfireresist2", + "fireresistanceaoepotex": "lingerpotfireresist2", + "fireresistanceaoepotlevel2": "lingerpotfireresist2", + "areapotionfireresist2": "lingerpotfireresist2", + "areapotionfireresistlong": "lingerpotfireresist2", + "areapotionfireresistextended": "lingerpotfireresist2", + "areapotionfireresistex": "lingerpotfireresist2", + "areapotionfireresistlevel2": "lingerpotfireresist2", + "areapotionfireres2": "lingerpotfireresist2", + "areapotionfirereslong": "lingerpotfireresist2", + "areapotionfireresextended": "lingerpotfireresist2", + "areapotionfireresex": "lingerpotfireresist2", + "areapotionfirereslevel2": "lingerpotfireresist2", + "areapotionfireresistance2": "lingerpotfireresist2", + "areapotionfireresistancelong": "lingerpotfireresist2", + "areapotionfireresistanceextended": "lingerpotfireresist2", + "areapotionfireresistanceex": "lingerpotfireresist2", + "areapotionfireresistancelevel2": "lingerpotfireresist2", + "fireresistareapotion2": "lingerpotfireresist2", + "fireresistareapotionlong": "lingerpotfireresist2", + "fireresistareapotionextended": "lingerpotfireresist2", + "fireresistareapotionex": "lingerpotfireresist2", + "fireresistareapotionlevel2": "lingerpotfireresist2", + "fireresareapotion2": "lingerpotfireresist2", + "fireresareapotionlong": "lingerpotfireresist2", + "fireresareapotionextended": "lingerpotfireresist2", + "fireresareapotionex": "lingerpotfireresist2", + "fireresareapotionlevel2": "lingerpotfireresist2", + "fireresistanceareapotion2": "lingerpotfireresist2", + "fireresistanceareapotionlong": "lingerpotfireresist2", + "fireresistanceareapotionextended": "lingerpotfireresist2", + "fireresistanceareapotionex": "lingerpotfireresist2", + "fireresistanceareapotionlevel2": "lingerpotfireresist2", + "areapotfireresist2": "lingerpotfireresist2", + "areapotfireresistlong": "lingerpotfireresist2", + "areapotfireresistextended": "lingerpotfireresist2", + "areapotfireresistex": "lingerpotfireresist2", + "areapotfireresistlevel2": "lingerpotfireresist2", + "areapotfireres2": "lingerpotfireresist2", + "areapotfirereslong": "lingerpotfireresist2", + "areapotfireresextended": "lingerpotfireresist2", + "areapotfireresex": "lingerpotfireresist2", + "areapotfirereslevel2": "lingerpotfireresist2", + "areapotfireresistance2": "lingerpotfireresist2", + "areapotfireresistancelong": "lingerpotfireresist2", + "areapotfireresistanceextended": "lingerpotfireresist2", + "areapotfireresistanceex": "lingerpotfireresist2", + "areapotfireresistancelevel2": "lingerpotfireresist2", + "fireresistareapot2": "lingerpotfireresist2", + "fireresistareapotlong": "lingerpotfireresist2", + "fireresistareapotextended": "lingerpotfireresist2", + "fireresistareapotex": "lingerpotfireresist2", + "fireresistareapotlevel2": "lingerpotfireresist2", + "fireresareapot2": "lingerpotfireresist2", + "fireresareapotlong": "lingerpotfireresist2", + "fireresareapotextended": "lingerpotfireresist2", + "fireresareapotex": "lingerpotfireresist2", + "fireresareapotlevel2": "lingerpotfireresist2", + "fireresistanceareapot2": "lingerpotfireresist2", + "fireresistanceareapotlong": "lingerpotfireresist2", + "fireresistanceareapotextended": "lingerpotfireresist2", + "fireresistanceareapotex": "lingerpotfireresist2", + "fireresistanceareapotlevel2": "lingerpotfireresist2", + "cloudpotionfireresist2": "lingerpotfireresist2", + "cloudpotionfireresistlong": "lingerpotfireresist2", + "cloudpotionfireresistextended": "lingerpotfireresist2", + "cloudpotionfireresistex": "lingerpotfireresist2", + "cloudpotionfireresistlevel2": "lingerpotfireresist2", + "cloudpotionfireres2": "lingerpotfireresist2", + "cloudpotionfirereslong": "lingerpotfireresist2", + "cloudpotionfireresextended": "lingerpotfireresist2", + "cloudpotionfireresex": "lingerpotfireresist2", + "cloudpotionfirereslevel2": "lingerpotfireresist2", + "cloudpotionfireresistance2": "lingerpotfireresist2", + "cloudpotionfireresistancelong": "lingerpotfireresist2", + "cloudpotionfireresistanceextended": "lingerpotfireresist2", + "cloudpotionfireresistanceex": "lingerpotfireresist2", + "cloudpotionfireresistancelevel2": "lingerpotfireresist2", + "fireresistcloudpotion2": "lingerpotfireresist2", + "fireresistcloudpotionlong": "lingerpotfireresist2", + "fireresistcloudpotionextended": "lingerpotfireresist2", + "fireresistcloudpotionex": "lingerpotfireresist2", + "fireresistcloudpotionlevel2": "lingerpotfireresist2", + "firerescloudpotion2": "lingerpotfireresist2", + "firerescloudpotionlong": "lingerpotfireresist2", + "firerescloudpotionextended": "lingerpotfireresist2", + "firerescloudpotionex": "lingerpotfireresist2", + "firerescloudpotionlevel2": "lingerpotfireresist2", + "fireresistancecloudpotion2": "lingerpotfireresist2", + "fireresistancecloudpotionlong": "lingerpotfireresist2", + "fireresistancecloudpotionextended": "lingerpotfireresist2", + "fireresistancecloudpotionex": "lingerpotfireresist2", + "fireresistancecloudpotionlevel2": "lingerpotfireresist2", + "cloudpotfireresist2": "lingerpotfireresist2", + "cloudpotfireresistlong": "lingerpotfireresist2", + "cloudpotfireresistextended": "lingerpotfireresist2", + "cloudpotfireresistex": "lingerpotfireresist2", + "cloudpotfireresistlevel2": "lingerpotfireresist2", + "cloudpotfireres2": "lingerpotfireresist2", + "cloudpotfirereslong": "lingerpotfireresist2", + "cloudpotfireresextended": "lingerpotfireresist2", + "cloudpotfireresex": "lingerpotfireresist2", + "cloudpotfirereslevel2": "lingerpotfireresist2", + "cloudpotfireresistance2": "lingerpotfireresist2", + "cloudpotfireresistancelong": "lingerpotfireresist2", + "cloudpotfireresistanceextended": "lingerpotfireresist2", + "cloudpotfireresistanceex": "lingerpotfireresist2", + "cloudpotfireresistancelevel2": "lingerpotfireresist2", + "fireresistcloudpot2": "lingerpotfireresist2", + "fireresistcloudpotlong": "lingerpotfireresist2", + "fireresistcloudpotextended": "lingerpotfireresist2", + "fireresistcloudpotex": "lingerpotfireresist2", + "fireresistcloudpotlevel2": "lingerpotfireresist2", + "firerescloudpot2": "lingerpotfireresist2", + "firerescloudpotlong": "lingerpotfireresist2", + "firerescloudpotextended": "lingerpotfireresist2", + "firerescloudpotex": "lingerpotfireresist2", + "firerescloudpotlevel2": "lingerpotfireresist2", + "fireresistancecloudpot2": "lingerpotfireresist2", + "fireresistancecloudpotlong": "lingerpotfireresist2", + "fireresistancecloudpotextended": "lingerpotfireresist2", + "fireresistancecloudpotex": "lingerpotfireresist2", + "fireresistancecloudpotlevel2": "lingerpotfireresist2", + "arrowfireresist2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_fire_resistance", + "type": "FIRE_RESISTANCE", + "upgraded": false, + "extended": true + } + }, + "arrowfireresistlong": "arrowfireresist2", + "arrowfireresistextended": "arrowfireresist2", + "arrowfireresistex": "arrowfireresist2", + "arrowfireresistlevel2": "arrowfireresist2", + "arrowfireres2": "arrowfireresist2", + "arrowfirereslong": "arrowfireresist2", + "arrowfireresextended": "arrowfireresist2", + "arrowfireresex": "arrowfireresist2", + "arrowfirereslevel2": "arrowfireresist2", + "arrowfireresistance2": "arrowfireresist2", + "arrowfireresistancelong": "arrowfireresist2", + "arrowfireresistanceextended": "arrowfireresist2", + "arrowfireresistanceex": "arrowfireresist2", + "arrowfireresistancelevel2": "arrowfireresist2", + "fireresistarrow2": "arrowfireresist2", + "fireresistarrowlong": "arrowfireresist2", + "fireresistarrowextended": "arrowfireresist2", + "fireresistarrowex": "arrowfireresist2", + "fireresistarrowlevel2": "arrowfireresist2", + "fireresarrow2": "arrowfireresist2", + "fireresarrowlong": "arrowfireresist2", + "fireresarrowextended": "arrowfireresist2", + "fireresarrowex": "arrowfireresist2", + "fireresarrowlevel2": "arrowfireresist2", + "fireresistancearrow2": "arrowfireresist2", + "fireresistancearrowlong": "arrowfireresist2", + "fireresistancearrowextended": "arrowfireresist2", + "fireresistancearrowex": "arrowfireresist2", + "fireresistancearrowlevel2": "arrowfireresist2", + "swiftnesspotion": { + "material": "POTION", + "potionData": { + "vanillaType": "swiftness", + "type": "SPEED", + "upgraded": false, + "extended": false + } + }, + "swiftpotion": "swiftnesspotion", + "speedpotion": "swiftnesspotion", + "swiftnesspot": "swiftnesspotion", + "swiftpot": "swiftnesspotion", + "speedpot": "swiftnesspotion", + "potionofswiftness": "swiftnesspotion", + "potionofswift": "swiftnesspotion", + "potionofspeed": "swiftnesspotion", + "potofswiftness": "swiftnesspotion", + "potofswift": "swiftnesspotion", + "potofspeed": "swiftnesspotion", + "splashswiftnesspotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "swiftness", + "type": "SPEED", + "upgraded": false, + "extended": false + } + }, + "splashswiftpotion": "splashswiftnesspotion", + "splashspeedpotion": "splashswiftnesspotion", + "splswiftnesspotion": "splashswiftnesspotion", + "splswiftpotion": "splashswiftnesspotion", + "splspeedpotion": "splashswiftnesspotion", + "swiftnesssplashpotion": "splashswiftnesspotion", + "swiftsplashpotion": "splashswiftnesspotion", + "speedsplashpotion": "splashswiftnesspotion", + "splashswiftnesspot": "splashswiftnesspotion", + "splashswiftpot": "splashswiftnesspotion", + "splashspeedpot": "splashswiftnesspotion", + "splswiftnesspot": "splashswiftnesspotion", + "splswiftpot": "splashswiftnesspotion", + "splspeedpot": "splashswiftnesspotion", + "swiftnesssplashpot": "splashswiftnesspotion", + "swiftsplashpot": "splashswiftnesspotion", + "speedsplashpot": "splashswiftnesspotion", + "lingerpotswiftness": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "swiftness", + "type": "SPEED", + "upgraded": false, + "extended": false + } + }, + "lingerpotswift": "lingerpotswiftness", + "lingerpotspeed": "lingerpotswiftness", + "swiftnesslingerpot": "lingerpotswiftness", + "swiftlingerpot": "lingerpotswiftness", + "speedlingerpot": "lingerpotswiftness", + "aoepotionswiftness": "lingerpotswiftness", + "aoepotionswift": "lingerpotswiftness", + "aoepotionspeed": "lingerpotswiftness", + "swiftnessaoepoiont": "lingerpotswiftness", + "swiftaoepoiont": "lingerpotswiftness", + "speedaoepoiont": "lingerpotswiftness", + "aoepotswiftness": "lingerpotswiftness", + "aoepotswift": "lingerpotswiftness", + "aoepotspeed": "lingerpotswiftness", + "swiftnessaoepot": "lingerpotswiftness", + "swiftaoepot": "lingerpotswiftness", + "speedaoepot": "lingerpotswiftness", + "areapotionswiftness": "lingerpotswiftness", + "areapotionswift": "lingerpotswiftness", + "areapotionspeed": "lingerpotswiftness", + "swiftnessareapotion": "lingerpotswiftness", + "swiftareapotion": "lingerpotswiftness", + "speedareapotion": "lingerpotswiftness", + "areapotswiftness": "lingerpotswiftness", + "areapotswift": "lingerpotswiftness", + "areapotspeed": "lingerpotswiftness", + "swiftnessareapot": "lingerpotswiftness", + "swiftareapot": "lingerpotswiftness", + "speedareapot": "lingerpotswiftness", + "cloudpotionswiftness": "lingerpotswiftness", + "cloudpotionswift": "lingerpotswiftness", + "cloudpotionspeed": "lingerpotswiftness", + "swiftnesscloudpotion": "lingerpotswiftness", + "swiftcloudpotion": "lingerpotswiftness", + "speedcloudpotion": "lingerpotswiftness", + "cloudpotswiftness": "lingerpotswiftness", + "cloudpotswift": "lingerpotswiftness", + "cloudpotspeed": "lingerpotswiftness", + "swiftnesscloudpot": "lingerpotswiftness", + "swiftcloudpot": "lingerpotswiftness", + "speedcloudpot": "lingerpotswiftness", + "arrowswiftness": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "swiftness", + "type": "SPEED", + "upgraded": false, + "extended": false + } + }, + "arrowswift": "arrowswiftness", + "arrowspeed": "arrowswiftness", + "swiftnessarrow": "arrowswiftness", + "swiftarrow": "arrowswiftness", + "speedarrow": "arrowswiftness", + "swiftnessiipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_swiftness", + "type": "SPEED", + "upgraded": true, + "extended": false + } + }, + "swiftnessstrongpotion": "swiftnessiipotion", + "swiftnessleveliipotion": "swiftnessiipotion", + "swiftiipotion": "swiftnessiipotion", + "swiftstrongpotion": "swiftnessiipotion", + "swiftleveliipotion": "swiftnessiipotion", + "speediipotion": "swiftnessiipotion", + "speedstrongpotion": "swiftnessiipotion", + "speedleveliipotion": "swiftnessiipotion", + "swiftnessiipot": "swiftnessiipotion", + "swiftnessstrongpot": "swiftnessiipotion", + "swiftnessleveliipot": "swiftnessiipotion", + "swiftiipot": "swiftnessiipotion", + "swiftstrongpot": "swiftnessiipotion", + "swiftleveliipot": "swiftnessiipotion", + "speediipot": "swiftnessiipotion", + "speedstrongpot": "swiftnessiipotion", + "speedleveliipot": "swiftnessiipotion", + "potionofswiftnessii": "swiftnessiipotion", + "potionofswiftnessstrong": "swiftnessiipotion", + "potionofswiftnesslevelii": "swiftnessiipotion", + "potionofswiftii": "swiftnessiipotion", + "potionofswiftstrong": "swiftnessiipotion", + "potionofswiftlevelii": "swiftnessiipotion", + "potionofspeedii": "swiftnessiipotion", + "potionofspeedstrong": "swiftnessiipotion", + "potionofspeedlevelii": "swiftnessiipotion", + "potofswiftnessii": "swiftnessiipotion", + "potofswiftnessstrong": "swiftnessiipotion", + "potofswiftnesslevelii": "swiftnessiipotion", + "potofswiftii": "swiftnessiipotion", + "potofswiftstrong": "swiftnessiipotion", + "potofswiftlevelii": "swiftnessiipotion", + "potofspeedii": "swiftnessiipotion", + "potofspeedstrong": "swiftnessiipotion", + "potofspeedlevelii": "swiftnessiipotion", + "splashswiftnessiipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_swiftness", + "type": "SPEED", + "upgraded": true, + "extended": false + } + }, + "splashswiftnessstrongpotion": "splashswiftnessiipotion", + "splashswiftnessleveliipotion": "splashswiftnessiipotion", + "splashswiftiipotion": "splashswiftnessiipotion", + "splashswiftstrongpotion": "splashswiftnessiipotion", + "splashswiftleveliipotion": "splashswiftnessiipotion", + "splashspeediipotion": "splashswiftnessiipotion", + "splashspeedstrongpotion": "splashswiftnessiipotion", + "splashspeedleveliipotion": "splashswiftnessiipotion", + "splswiftnessiipotion": "splashswiftnessiipotion", + "splswiftnessstrongpotion": "splashswiftnessiipotion", + "splswiftnessleveliipotion": "splashswiftnessiipotion", + "splswiftiipotion": "splashswiftnessiipotion", + "splswiftstrongpotion": "splashswiftnessiipotion", + "splswiftleveliipotion": "splashswiftnessiipotion", + "splspeediipotion": "splashswiftnessiipotion", + "splspeedstrongpotion": "splashswiftnessiipotion", + "splspeedleveliipotion": "splashswiftnessiipotion", + "swiftnessiisplashpotion": "splashswiftnessiipotion", + "swiftnessstrongsplashpotion": "splashswiftnessiipotion", + "swiftnessleveliisplashpotion": "splashswiftnessiipotion", + "swiftiisplashpotion": "splashswiftnessiipotion", + "swiftstrongsplashpotion": "splashswiftnessiipotion", + "swiftleveliisplashpotion": "splashswiftnessiipotion", + "speediisplashpotion": "splashswiftnessiipotion", + "speedstrongsplashpotion": "splashswiftnessiipotion", + "speedleveliisplashpotion": "splashswiftnessiipotion", + "splashswiftnessiipot": "splashswiftnessiipotion", + "splashswiftnessstrongpot": "splashswiftnessiipotion", + "splashswiftnessleveliipot": "splashswiftnessiipotion", + "splashswiftiipot": "splashswiftnessiipotion", + "splashswiftstrongpot": "splashswiftnessiipotion", + "splashswiftleveliipot": "splashswiftnessiipotion", + "splashspeediipot": "splashswiftnessiipotion", + "splashspeedstrongpot": "splashswiftnessiipotion", + "splashspeedleveliipot": "splashswiftnessiipotion", + "splswiftnessiipot": "splashswiftnessiipotion", + "splswiftnessstrongpot": "splashswiftnessiipotion", + "splswiftnessleveliipot": "splashswiftnessiipotion", + "splswiftiipot": "splashswiftnessiipotion", + "splswiftstrongpot": "splashswiftnessiipotion", + "splswiftleveliipot": "splashswiftnessiipotion", + "splspeediipot": "splashswiftnessiipotion", + "splspeedstrongpot": "splashswiftnessiipotion", + "splspeedleveliipot": "splashswiftnessiipotion", + "swiftnessiisplashpot": "splashswiftnessiipotion", + "swiftnessstrongsplashpot": "splashswiftnessiipotion", + "swiftnessleveliisplashpot": "splashswiftnessiipotion", + "swiftiisplashpot": "splashswiftnessiipotion", + "swiftstrongsplashpot": "splashswiftnessiipotion", + "swiftleveliisplashpot": "splashswiftnessiipotion", + "speediisplashpot": "splashswiftnessiipotion", + "speedstrongsplashpot": "splashswiftnessiipotion", + "speedleveliisplashpot": "splashswiftnessiipotion", + "lingerpotswiftnessii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_swiftness", + "type": "SPEED", + "upgraded": true, + "extended": false + } + }, + "lingerpotswiftnessstrong": "lingerpotswiftnessii", + "lingerpotswiftnesslevelii": "lingerpotswiftnessii", + "lingerpotswiftii": "lingerpotswiftnessii", + "lingerpotswiftstrong": "lingerpotswiftnessii", + "lingerpotswiftlevelii": "lingerpotswiftnessii", + "lingerpotspeedii": "lingerpotswiftnessii", + "lingerpotspeedstrong": "lingerpotswiftnessii", + "lingerpotspeedlevelii": "lingerpotswiftnessii", + "swiftnesslingerpotii": "lingerpotswiftnessii", + "swiftnesslingerpotstrong": "lingerpotswiftnessii", + "swiftnesslingerpotlevelii": "lingerpotswiftnessii", + "swiftlingerpotii": "lingerpotswiftnessii", + "swiftlingerpotstrong": "lingerpotswiftnessii", + "swiftlingerpotlevelii": "lingerpotswiftnessii", + "speedlingerpotii": "lingerpotswiftnessii", + "speedlingerpotstrong": "lingerpotswiftnessii", + "speedlingerpotlevelii": "lingerpotswiftnessii", + "aoepotionswiftnessii": "lingerpotswiftnessii", + "aoepotionswiftnessstrong": "lingerpotswiftnessii", + "aoepotionswiftnesslevelii": "lingerpotswiftnessii", + "aoepotionswiftii": "lingerpotswiftnessii", + "aoepotionswiftstrong": "lingerpotswiftnessii", + "aoepotionswiftlevelii": "lingerpotswiftnessii", + "aoepotionspeedii": "lingerpotswiftnessii", + "aoepotionspeedstrong": "lingerpotswiftnessii", + "aoepotionspeedlevelii": "lingerpotswiftnessii", + "swiftnessaoepoiontii": "lingerpotswiftnessii", + "swiftnessaoepoiontstrong": "lingerpotswiftnessii", + "swiftnessaoepoiontlevelii": "lingerpotswiftnessii", + "swiftaoepoiontii": "lingerpotswiftnessii", + "swiftaoepoiontstrong": "lingerpotswiftnessii", + "swiftaoepoiontlevelii": "lingerpotswiftnessii", + "speedaoepoiontii": "lingerpotswiftnessii", + "speedaoepoiontstrong": "lingerpotswiftnessii", + "speedaoepoiontlevelii": "lingerpotswiftnessii", + "aoepotswiftnessii": "lingerpotswiftnessii", + "aoepotswiftnessstrong": "lingerpotswiftnessii", + "aoepotswiftnesslevelii": "lingerpotswiftnessii", + "aoepotswiftii": "lingerpotswiftnessii", + "aoepotswiftstrong": "lingerpotswiftnessii", + "aoepotswiftlevelii": "lingerpotswiftnessii", + "aoepotspeedii": "lingerpotswiftnessii", + "aoepotspeedstrong": "lingerpotswiftnessii", + "aoepotspeedlevelii": "lingerpotswiftnessii", + "swiftnessaoepotii": "lingerpotswiftnessii", + "swiftnessaoepotstrong": "lingerpotswiftnessii", + "swiftnessaoepotlevelii": "lingerpotswiftnessii", + "swiftaoepotii": "lingerpotswiftnessii", + "swiftaoepotstrong": "lingerpotswiftnessii", + "swiftaoepotlevelii": "lingerpotswiftnessii", + "speedaoepotii": "lingerpotswiftnessii", + "speedaoepotstrong": "lingerpotswiftnessii", + "speedaoepotlevelii": "lingerpotswiftnessii", + "areapotionswiftnessii": "lingerpotswiftnessii", + "areapotionswiftnessstrong": "lingerpotswiftnessii", + "areapotionswiftnesslevelii": "lingerpotswiftnessii", + "areapotionswiftii": "lingerpotswiftnessii", + "areapotionswiftstrong": "lingerpotswiftnessii", + "areapotionswiftlevelii": "lingerpotswiftnessii", + "areapotionspeedii": "lingerpotswiftnessii", + "areapotionspeedstrong": "lingerpotswiftnessii", + "areapotionspeedlevelii": "lingerpotswiftnessii", + "swiftnessareapotionii": "lingerpotswiftnessii", + "swiftnessareapotionstrong": "lingerpotswiftnessii", + "swiftnessareapotionlevelii": "lingerpotswiftnessii", + "swiftareapotionii": "lingerpotswiftnessii", + "swiftareapotionstrong": "lingerpotswiftnessii", + "swiftareapotionlevelii": "lingerpotswiftnessii", + "speedareapotionii": "lingerpotswiftnessii", + "speedareapotionstrong": "lingerpotswiftnessii", + "speedareapotionlevelii": "lingerpotswiftnessii", + "areapotswiftnessii": "lingerpotswiftnessii", + "areapotswiftnessstrong": "lingerpotswiftnessii", + "areapotswiftnesslevelii": "lingerpotswiftnessii", + "areapotswiftii": "lingerpotswiftnessii", + "areapotswiftstrong": "lingerpotswiftnessii", + "areapotswiftlevelii": "lingerpotswiftnessii", + "areapotspeedii": "lingerpotswiftnessii", + "areapotspeedstrong": "lingerpotswiftnessii", + "areapotspeedlevelii": "lingerpotswiftnessii", + "swiftnessareapotii": "lingerpotswiftnessii", + "swiftnessareapotstrong": "lingerpotswiftnessii", + "swiftnessareapotlevelii": "lingerpotswiftnessii", + "swiftareapotii": "lingerpotswiftnessii", + "swiftareapotstrong": "lingerpotswiftnessii", + "swiftareapotlevelii": "lingerpotswiftnessii", + "speedareapotii": "lingerpotswiftnessii", + "speedareapotstrong": "lingerpotswiftnessii", + "speedareapotlevelii": "lingerpotswiftnessii", + "cloudpotionswiftnessii": "lingerpotswiftnessii", + "cloudpotionswiftnessstrong": "lingerpotswiftnessii", + "cloudpotionswiftnesslevelii": "lingerpotswiftnessii", + "cloudpotionswiftii": "lingerpotswiftnessii", + "cloudpotionswiftstrong": "lingerpotswiftnessii", + "cloudpotionswiftlevelii": "lingerpotswiftnessii", + "cloudpotionspeedii": "lingerpotswiftnessii", + "cloudpotionspeedstrong": "lingerpotswiftnessii", + "cloudpotionspeedlevelii": "lingerpotswiftnessii", + "swiftnesscloudpotionii": "lingerpotswiftnessii", + "swiftnesscloudpotionstrong": "lingerpotswiftnessii", + "swiftnesscloudpotionlevelii": "lingerpotswiftnessii", + "swiftcloudpotionii": "lingerpotswiftnessii", + "swiftcloudpotionstrong": "lingerpotswiftnessii", + "swiftcloudpotionlevelii": "lingerpotswiftnessii", + "speedcloudpotionii": "lingerpotswiftnessii", + "speedcloudpotionstrong": "lingerpotswiftnessii", + "speedcloudpotionlevelii": "lingerpotswiftnessii", + "cloudpotswiftnessii": "lingerpotswiftnessii", + "cloudpotswiftnessstrong": "lingerpotswiftnessii", + "cloudpotswiftnesslevelii": "lingerpotswiftnessii", + "cloudpotswiftii": "lingerpotswiftnessii", + "cloudpotswiftstrong": "lingerpotswiftnessii", + "cloudpotswiftlevelii": "lingerpotswiftnessii", + "cloudpotspeedii": "lingerpotswiftnessii", + "cloudpotspeedstrong": "lingerpotswiftnessii", + "cloudpotspeedlevelii": "lingerpotswiftnessii", + "swiftnesscloudpotii": "lingerpotswiftnessii", + "swiftnesscloudpotstrong": "lingerpotswiftnessii", + "swiftnesscloudpotlevelii": "lingerpotswiftnessii", + "swiftcloudpotii": "lingerpotswiftnessii", + "swiftcloudpotstrong": "lingerpotswiftnessii", + "swiftcloudpotlevelii": "lingerpotswiftnessii", + "speedcloudpotii": "lingerpotswiftnessii", + "speedcloudpotstrong": "lingerpotswiftnessii", + "speedcloudpotlevelii": "lingerpotswiftnessii", + "arrowswiftnessii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_swiftness", + "type": "SPEED", + "upgraded": true, + "extended": false + } + }, + "arrowswiftnessstrong": "arrowswiftnessii", + "arrowswiftnesslevelii": "arrowswiftnessii", + "arrowswiftii": "arrowswiftnessii", + "arrowswiftstrong": "arrowswiftnessii", + "arrowswiftlevelii": "arrowswiftnessii", + "arrowspeedii": "arrowswiftnessii", + "arrowspeedstrong": "arrowswiftnessii", + "arrowspeedlevelii": "arrowswiftnessii", + "swiftnessarrowii": "arrowswiftnessii", + "swiftnessarrowstrong": "arrowswiftnessii", + "swiftnessarrowlevelii": "arrowswiftnessii", + "swiftarrowii": "arrowswiftnessii", + "swiftarrowstrong": "arrowswiftnessii", + "swiftarrowlevelii": "arrowswiftnessii", + "speedarrowii": "arrowswiftnessii", + "speedarrowstrong": "arrowswiftnessii", + "speedarrowlevelii": "arrowswiftnessii", + "swiftness2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_swiftness", + "type": "SPEED", + "upgraded": false, + "extended": true + } + }, + "swiftnesslongpotion": "swiftness2potion", + "swiftnessextendedpotion": "swiftness2potion", + "swiftnessexpotion": "swiftness2potion", + "swiftnesslevel2potion": "swiftness2potion", + "swift2potion": "swiftness2potion", + "swiftlongpotion": "swiftness2potion", + "swiftextendedpotion": "swiftness2potion", + "swiftexpotion": "swiftness2potion", + "swiftlevel2potion": "swiftness2potion", + "speed2potion": "swiftness2potion", + "speedlongpotion": "swiftness2potion", + "speedextendedpotion": "swiftness2potion", + "speedexpotion": "swiftness2potion", + "speedlevel2potion": "swiftness2potion", + "swiftness2pot": "swiftness2potion", + "swiftnesslongpot": "swiftness2potion", + "swiftnessextendedpot": "swiftness2potion", + "swiftnessexpot": "swiftness2potion", + "swiftnesslevel2pot": "swiftness2potion", + "swift2pot": "swiftness2potion", + "swiftlongpot": "swiftness2potion", + "swiftextendedpot": "swiftness2potion", + "swiftexpot": "swiftness2potion", + "swiftlevel2pot": "swiftness2potion", + "speed2pot": "swiftness2potion", + "speedlongpot": "swiftness2potion", + "speedextendedpot": "swiftness2potion", + "speedexpot": "swiftness2potion", + "speedlevel2pot": "swiftness2potion", + "potionofswiftness2": "swiftness2potion", + "potionofswiftnesslong": "swiftness2potion", + "potionofswiftnessextended": "swiftness2potion", + "potionofswiftnessex": "swiftness2potion", + "potionofswiftnesslevel2": "swiftness2potion", + "potionofswift2": "swiftness2potion", + "potionofswiftlong": "swiftness2potion", + "potionofswiftextended": "swiftness2potion", + "potionofswiftex": "swiftness2potion", + "potionofswiftlevel2": "swiftness2potion", + "potionofspeed2": "swiftness2potion", + "potionofspeedlong": "swiftness2potion", + "potionofspeedextended": "swiftness2potion", + "potionofspeedex": "swiftness2potion", + "potionofspeedlevel2": "swiftness2potion", + "potofswiftness2": "swiftness2potion", + "potofswiftnesslong": "swiftness2potion", + "potofswiftnessextended": "swiftness2potion", + "potofswiftnessex": "swiftness2potion", + "potofswiftnesslevel2": "swiftness2potion", + "potofswift2": "swiftness2potion", + "potofswiftlong": "swiftness2potion", + "potofswiftextended": "swiftness2potion", + "potofswiftex": "swiftness2potion", + "potofswiftlevel2": "swiftness2potion", + "potofspeed2": "swiftness2potion", + "potofspeedlong": "swiftness2potion", + "potofspeedextended": "swiftness2potion", + "potofspeedex": "swiftness2potion", + "potofspeedlevel2": "swiftness2potion", + "splashswiftness2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_swiftness", + "type": "SPEED", + "upgraded": false, + "extended": true + } + }, + "splashswiftnesslongpotion": "splashswiftness2potion", + "splashswiftnessextendedpotion": "splashswiftness2potion", + "splashswiftnessexpotion": "splashswiftness2potion", + "splashswiftnesslevel2potion": "splashswiftness2potion", + "splashswift2potion": "splashswiftness2potion", + "splashswiftlongpotion": "splashswiftness2potion", + "splashswiftextendedpotion": "splashswiftness2potion", + "splashswiftexpotion": "splashswiftness2potion", + "splashswiftlevel2potion": "splashswiftness2potion", + "splashspeed2potion": "splashswiftness2potion", + "splashspeedlongpotion": "splashswiftness2potion", + "splashspeedextendedpotion": "splashswiftness2potion", + "splashspeedexpotion": "splashswiftness2potion", + "splashspeedlevel2potion": "splashswiftness2potion", + "splswiftness2potion": "splashswiftness2potion", + "splswiftnesslongpotion": "splashswiftness2potion", + "splswiftnessextendedpotion": "splashswiftness2potion", + "splswiftnessexpotion": "splashswiftness2potion", + "splswiftnesslevel2potion": "splashswiftness2potion", + "splswift2potion": "splashswiftness2potion", + "splswiftlongpotion": "splashswiftness2potion", + "splswiftextendedpotion": "splashswiftness2potion", + "splswiftexpotion": "splashswiftness2potion", + "splswiftlevel2potion": "splashswiftness2potion", + "splspeed2potion": "splashswiftness2potion", + "splspeedlongpotion": "splashswiftness2potion", + "splspeedextendedpotion": "splashswiftness2potion", + "splspeedexpotion": "splashswiftness2potion", + "splspeedlevel2potion": "splashswiftness2potion", + "swiftness2splashpotion": "splashswiftness2potion", + "swiftnesslongsplashpotion": "splashswiftness2potion", + "swiftnessextendedsplashpotion": "splashswiftness2potion", + "swiftnessexsplashpotion": "splashswiftness2potion", + "swiftnesslevel2splashpotion": "splashswiftness2potion", + "swift2splashpotion": "splashswiftness2potion", + "swiftlongsplashpotion": "splashswiftness2potion", + "swiftextendedsplashpotion": "splashswiftness2potion", + "swiftexsplashpotion": "splashswiftness2potion", + "swiftlevel2splashpotion": "splashswiftness2potion", + "speed2splashpotion": "splashswiftness2potion", + "speedlongsplashpotion": "splashswiftness2potion", + "speedextendedsplashpotion": "splashswiftness2potion", + "speedexsplashpotion": "splashswiftness2potion", + "speedlevel2splashpotion": "splashswiftness2potion", + "splashswiftness2pot": "splashswiftness2potion", + "splashswiftnesslongpot": "splashswiftness2potion", + "splashswiftnessextendedpot": "splashswiftness2potion", + "splashswiftnessexpot": "splashswiftness2potion", + "splashswiftnesslevel2pot": "splashswiftness2potion", + "splashswift2pot": "splashswiftness2potion", + "splashswiftlongpot": "splashswiftness2potion", + "splashswiftextendedpot": "splashswiftness2potion", + "splashswiftexpot": "splashswiftness2potion", + "splashswiftlevel2pot": "splashswiftness2potion", + "splashspeed2pot": "splashswiftness2potion", + "splashspeedlongpot": "splashswiftness2potion", + "splashspeedextendedpot": "splashswiftness2potion", + "splashspeedexpot": "splashswiftness2potion", + "splashspeedlevel2pot": "splashswiftness2potion", + "splswiftness2pot": "splashswiftness2potion", + "splswiftnesslongpot": "splashswiftness2potion", + "splswiftnessextendedpot": "splashswiftness2potion", + "splswiftnessexpot": "splashswiftness2potion", + "splswiftnesslevel2pot": "splashswiftness2potion", + "splswift2pot": "splashswiftness2potion", + "splswiftlongpot": "splashswiftness2potion", + "splswiftextendedpot": "splashswiftness2potion", + "splswiftexpot": "splashswiftness2potion", + "splswiftlevel2pot": "splashswiftness2potion", + "splspeed2pot": "splashswiftness2potion", + "splspeedlongpot": "splashswiftness2potion", + "splspeedextendedpot": "splashswiftness2potion", + "splspeedexpot": "splashswiftness2potion", + "splspeedlevel2pot": "splashswiftness2potion", + "swiftness2splashpot": "splashswiftness2potion", + "swiftnesslongsplashpot": "splashswiftness2potion", + "swiftnessextendedsplashpot": "splashswiftness2potion", + "swiftnessexsplashpot": "splashswiftness2potion", + "swiftnesslevel2splashpot": "splashswiftness2potion", + "swift2splashpot": "splashswiftness2potion", + "swiftlongsplashpot": "splashswiftness2potion", + "swiftextendedsplashpot": "splashswiftness2potion", + "swiftexsplashpot": "splashswiftness2potion", + "swiftlevel2splashpot": "splashswiftness2potion", + "speed2splashpot": "splashswiftness2potion", + "speedlongsplashpot": "splashswiftness2potion", + "speedextendedsplashpot": "splashswiftness2potion", + "speedexsplashpot": "splashswiftness2potion", + "speedlevel2splashpot": "splashswiftness2potion", + "lingerpotswiftness2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_swiftness", + "type": "SPEED", + "upgraded": false, + "extended": true + } + }, + "lingerpotswiftnesslong": "lingerpotswiftness2", + "lingerpotswiftnessextended": "lingerpotswiftness2", + "lingerpotswiftnessex": "lingerpotswiftness2", + "lingerpotswiftnesslevel2": "lingerpotswiftness2", + "lingerpotswift2": "lingerpotswiftness2", + "lingerpotswiftlong": "lingerpotswiftness2", + "lingerpotswiftextended": "lingerpotswiftness2", + "lingerpotswiftex": "lingerpotswiftness2", + "lingerpotswiftlevel2": "lingerpotswiftness2", + "lingerpotspeed2": "lingerpotswiftness2", + "lingerpotspeedlong": "lingerpotswiftness2", + "lingerpotspeedextended": "lingerpotswiftness2", + "lingerpotspeedex": "lingerpotswiftness2", + "lingerpotspeedlevel2": "lingerpotswiftness2", + "swiftnesslingerpot2": "lingerpotswiftness2", + "swiftnesslingerpotlong": "lingerpotswiftness2", + "swiftnesslingerpotextended": "lingerpotswiftness2", + "swiftnesslingerpotex": "lingerpotswiftness2", + "swiftnesslingerpotlevel2": "lingerpotswiftness2", + "swiftlingerpot2": "lingerpotswiftness2", + "swiftlingerpotlong": "lingerpotswiftness2", + "swiftlingerpotextended": "lingerpotswiftness2", + "swiftlingerpotex": "lingerpotswiftness2", + "swiftlingerpotlevel2": "lingerpotswiftness2", + "speedlingerpot2": "lingerpotswiftness2", + "speedlingerpotlong": "lingerpotswiftness2", + "speedlingerpotextended": "lingerpotswiftness2", + "speedlingerpotex": "lingerpotswiftness2", + "speedlingerpotlevel2": "lingerpotswiftness2", + "aoepotionswiftness2": "lingerpotswiftness2", + "aoepotionswiftnesslong": "lingerpotswiftness2", + "aoepotionswiftnessextended": "lingerpotswiftness2", + "aoepotionswiftnessex": "lingerpotswiftness2", + "aoepotionswiftnesslevel2": "lingerpotswiftness2", + "aoepotionswift2": "lingerpotswiftness2", + "aoepotionswiftlong": "lingerpotswiftness2", + "aoepotionswiftextended": "lingerpotswiftness2", + "aoepotionswiftex": "lingerpotswiftness2", + "aoepotionswiftlevel2": "lingerpotswiftness2", + "aoepotionspeed2": "lingerpotswiftness2", + "aoepotionspeedlong": "lingerpotswiftness2", + "aoepotionspeedextended": "lingerpotswiftness2", + "aoepotionspeedex": "lingerpotswiftness2", + "aoepotionspeedlevel2": "lingerpotswiftness2", + "swiftnessaoepoiont2": "lingerpotswiftness2", + "swiftnessaoepoiontlong": "lingerpotswiftness2", + "swiftnessaoepoiontextended": "lingerpotswiftness2", + "swiftnessaoepoiontex": "lingerpotswiftness2", + "swiftnessaoepoiontlevel2": "lingerpotswiftness2", + "swiftaoepoiont2": "lingerpotswiftness2", + "swiftaoepoiontlong": "lingerpotswiftness2", + "swiftaoepoiontextended": "lingerpotswiftness2", + "swiftaoepoiontex": "lingerpotswiftness2", + "swiftaoepoiontlevel2": "lingerpotswiftness2", + "speedaoepoiont2": "lingerpotswiftness2", + "speedaoepoiontlong": "lingerpotswiftness2", + "speedaoepoiontextended": "lingerpotswiftness2", + "speedaoepoiontex": "lingerpotswiftness2", + "speedaoepoiontlevel2": "lingerpotswiftness2", + "aoepotswiftness2": "lingerpotswiftness2", + "aoepotswiftnesslong": "lingerpotswiftness2", + "aoepotswiftnessextended": "lingerpotswiftness2", + "aoepotswiftnessex": "lingerpotswiftness2", + "aoepotswiftnesslevel2": "lingerpotswiftness2", + "aoepotswift2": "lingerpotswiftness2", + "aoepotswiftlong": "lingerpotswiftness2", + "aoepotswiftextended": "lingerpotswiftness2", + "aoepotswiftex": "lingerpotswiftness2", + "aoepotswiftlevel2": "lingerpotswiftness2", + "aoepotspeed2": "lingerpotswiftness2", + "aoepotspeedlong": "lingerpotswiftness2", + "aoepotspeedextended": "lingerpotswiftness2", + "aoepotspeedex": "lingerpotswiftness2", + "aoepotspeedlevel2": "lingerpotswiftness2", + "swiftnessaoepot2": "lingerpotswiftness2", + "swiftnessaoepotlong": "lingerpotswiftness2", + "swiftnessaoepotextended": "lingerpotswiftness2", + "swiftnessaoepotex": "lingerpotswiftness2", + "swiftnessaoepotlevel2": "lingerpotswiftness2", + "swiftaoepot2": "lingerpotswiftness2", + "swiftaoepotlong": "lingerpotswiftness2", + "swiftaoepotextended": "lingerpotswiftness2", + "swiftaoepotex": "lingerpotswiftness2", + "swiftaoepotlevel2": "lingerpotswiftness2", + "speedaoepot2": "lingerpotswiftness2", + "speedaoepotlong": "lingerpotswiftness2", + "speedaoepotextended": "lingerpotswiftness2", + "speedaoepotex": "lingerpotswiftness2", + "speedaoepotlevel2": "lingerpotswiftness2", + "areapotionswiftness2": "lingerpotswiftness2", + "areapotionswiftnesslong": "lingerpotswiftness2", + "areapotionswiftnessextended": "lingerpotswiftness2", + "areapotionswiftnessex": "lingerpotswiftness2", + "areapotionswiftnesslevel2": "lingerpotswiftness2", + "areapotionswift2": "lingerpotswiftness2", + "areapotionswiftlong": "lingerpotswiftness2", + "areapotionswiftextended": "lingerpotswiftness2", + "areapotionswiftex": "lingerpotswiftness2", + "areapotionswiftlevel2": "lingerpotswiftness2", + "areapotionspeed2": "lingerpotswiftness2", + "areapotionspeedlong": "lingerpotswiftness2", + "areapotionspeedextended": "lingerpotswiftness2", + "areapotionspeedex": "lingerpotswiftness2", + "areapotionspeedlevel2": "lingerpotswiftness2", + "swiftnessareapotion2": "lingerpotswiftness2", + "swiftnessareapotionlong": "lingerpotswiftness2", + "swiftnessareapotionextended": "lingerpotswiftness2", + "swiftnessareapotionex": "lingerpotswiftness2", + "swiftnessareapotionlevel2": "lingerpotswiftness2", + "swiftareapotion2": "lingerpotswiftness2", + "swiftareapotionlong": "lingerpotswiftness2", + "swiftareapotionextended": "lingerpotswiftness2", + "swiftareapotionex": "lingerpotswiftness2", + "swiftareapotionlevel2": "lingerpotswiftness2", + "speedareapotion2": "lingerpotswiftness2", + "speedareapotionlong": "lingerpotswiftness2", + "speedareapotionextended": "lingerpotswiftness2", + "speedareapotionex": "lingerpotswiftness2", + "speedareapotionlevel2": "lingerpotswiftness2", + "areapotswiftness2": "lingerpotswiftness2", + "areapotswiftnesslong": "lingerpotswiftness2", + "areapotswiftnessextended": "lingerpotswiftness2", + "areapotswiftnessex": "lingerpotswiftness2", + "areapotswiftnesslevel2": "lingerpotswiftness2", + "areapotswift2": "lingerpotswiftness2", + "areapotswiftlong": "lingerpotswiftness2", + "areapotswiftextended": "lingerpotswiftness2", + "areapotswiftex": "lingerpotswiftness2", + "areapotswiftlevel2": "lingerpotswiftness2", + "areapotspeed2": "lingerpotswiftness2", + "areapotspeedlong": "lingerpotswiftness2", + "areapotspeedextended": "lingerpotswiftness2", + "areapotspeedex": "lingerpotswiftness2", + "areapotspeedlevel2": "lingerpotswiftness2", + "swiftnessareapot2": "lingerpotswiftness2", + "swiftnessareapotlong": "lingerpotswiftness2", + "swiftnessareapotextended": "lingerpotswiftness2", + "swiftnessareapotex": "lingerpotswiftness2", + "swiftnessareapotlevel2": "lingerpotswiftness2", + "swiftareapot2": "lingerpotswiftness2", + "swiftareapotlong": "lingerpotswiftness2", + "swiftareapotextended": "lingerpotswiftness2", + "swiftareapotex": "lingerpotswiftness2", + "swiftareapotlevel2": "lingerpotswiftness2", + "speedareapot2": "lingerpotswiftness2", + "speedareapotlong": "lingerpotswiftness2", + "speedareapotextended": "lingerpotswiftness2", + "speedareapotex": "lingerpotswiftness2", + "speedareapotlevel2": "lingerpotswiftness2", + "cloudpotionswiftness2": "lingerpotswiftness2", + "cloudpotionswiftnesslong": "lingerpotswiftness2", + "cloudpotionswiftnessextended": "lingerpotswiftness2", + "cloudpotionswiftnessex": "lingerpotswiftness2", + "cloudpotionswiftnesslevel2": "lingerpotswiftness2", + "cloudpotionswift2": "lingerpotswiftness2", + "cloudpotionswiftlong": "lingerpotswiftness2", + "cloudpotionswiftextended": "lingerpotswiftness2", + "cloudpotionswiftex": "lingerpotswiftness2", + "cloudpotionswiftlevel2": "lingerpotswiftness2", + "cloudpotionspeed2": "lingerpotswiftness2", + "cloudpotionspeedlong": "lingerpotswiftness2", + "cloudpotionspeedextended": "lingerpotswiftness2", + "cloudpotionspeedex": "lingerpotswiftness2", + "cloudpotionspeedlevel2": "lingerpotswiftness2", + "swiftnesscloudpotion2": "lingerpotswiftness2", + "swiftnesscloudpotionlong": "lingerpotswiftness2", + "swiftnesscloudpotionextended": "lingerpotswiftness2", + "swiftnesscloudpotionex": "lingerpotswiftness2", + "swiftnesscloudpotionlevel2": "lingerpotswiftness2", + "swiftcloudpotion2": "lingerpotswiftness2", + "swiftcloudpotionlong": "lingerpotswiftness2", + "swiftcloudpotionextended": "lingerpotswiftness2", + "swiftcloudpotionex": "lingerpotswiftness2", + "swiftcloudpotionlevel2": "lingerpotswiftness2", + "speedcloudpotion2": "lingerpotswiftness2", + "speedcloudpotionlong": "lingerpotswiftness2", + "speedcloudpotionextended": "lingerpotswiftness2", + "speedcloudpotionex": "lingerpotswiftness2", + "speedcloudpotionlevel2": "lingerpotswiftness2", + "cloudpotswiftness2": "lingerpotswiftness2", + "cloudpotswiftnesslong": "lingerpotswiftness2", + "cloudpotswiftnessextended": "lingerpotswiftness2", + "cloudpotswiftnessex": "lingerpotswiftness2", + "cloudpotswiftnesslevel2": "lingerpotswiftness2", + "cloudpotswift2": "lingerpotswiftness2", + "cloudpotswiftlong": "lingerpotswiftness2", + "cloudpotswiftextended": "lingerpotswiftness2", + "cloudpotswiftex": "lingerpotswiftness2", + "cloudpotswiftlevel2": "lingerpotswiftness2", + "cloudpotspeed2": "lingerpotswiftness2", + "cloudpotspeedlong": "lingerpotswiftness2", + "cloudpotspeedextended": "lingerpotswiftness2", + "cloudpotspeedex": "lingerpotswiftness2", + "cloudpotspeedlevel2": "lingerpotswiftness2", + "swiftnesscloudpot2": "lingerpotswiftness2", + "swiftnesscloudpotlong": "lingerpotswiftness2", + "swiftnesscloudpotextended": "lingerpotswiftness2", + "swiftnesscloudpotex": "lingerpotswiftness2", + "swiftnesscloudpotlevel2": "lingerpotswiftness2", + "swiftcloudpot2": "lingerpotswiftness2", + "swiftcloudpotlong": "lingerpotswiftness2", + "swiftcloudpotextended": "lingerpotswiftness2", + "swiftcloudpotex": "lingerpotswiftness2", + "swiftcloudpotlevel2": "lingerpotswiftness2", + "speedcloudpot2": "lingerpotswiftness2", + "speedcloudpotlong": "lingerpotswiftness2", + "speedcloudpotextended": "lingerpotswiftness2", + "speedcloudpotex": "lingerpotswiftness2", + "speedcloudpotlevel2": "lingerpotswiftness2", + "arrowswiftness2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_swiftness", + "type": "SPEED", + "upgraded": false, + "extended": true + } + }, + "arrowswiftnesslong": "arrowswiftness2", + "arrowswiftnessextended": "arrowswiftness2", + "arrowswiftnessex": "arrowswiftness2", + "arrowswiftnesslevel2": "arrowswiftness2", + "arrowswift2": "arrowswiftness2", + "arrowswiftlong": "arrowswiftness2", + "arrowswiftextended": "arrowswiftness2", + "arrowswiftex": "arrowswiftness2", + "arrowswiftlevel2": "arrowswiftness2", + "arrowspeed2": "arrowswiftness2", + "arrowspeedlong": "arrowswiftness2", + "arrowspeedextended": "arrowswiftness2", + "arrowspeedex": "arrowswiftness2", + "arrowspeedlevel2": "arrowswiftness2", + "swiftnessarrow2": "arrowswiftness2", + "swiftnessarrowlong": "arrowswiftness2", + "swiftnessarrowextended": "arrowswiftness2", + "swiftnessarrowex": "arrowswiftness2", + "swiftnessarrowlevel2": "arrowswiftness2", + "swiftarrow2": "arrowswiftness2", + "swiftarrowlong": "arrowswiftness2", + "swiftarrowextended": "arrowswiftness2", + "swiftarrowex": "arrowswiftness2", + "swiftarrowlevel2": "arrowswiftness2", + "speedarrow2": "arrowswiftness2", + "speedarrowlong": "arrowswiftness2", + "speedarrowextended": "arrowswiftness2", + "speedarrowex": "arrowswiftness2", + "speedarrowlevel2": "arrowswiftness2", + "slownesspotion": { + "material": "POTION", + "potionData": { + "vanillaType": "slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": false + } + }, + "slowpotion": "slownesspotion", + "slownesspot": "slownesspotion", + "slowpot": "slownesspotion", + "potionofslowness": "slownesspotion", + "potionofslow": "slownesspotion", + "potofslowness": "slownesspotion", + "potofslow": "slownesspotion", + "splashslownesspotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": false + } + }, + "splashslowpotion": "splashslownesspotion", + "splslownesspotion": "splashslownesspotion", + "splslowpotion": "splashslownesspotion", + "slownesssplashpotion": "splashslownesspotion", + "slowsplashpotion": "splashslownesspotion", + "splashslownesspot": "splashslownesspotion", + "splashslowpot": "splashslownesspotion", + "splslownesspot": "splashslownesspotion", + "splslowpot": "splashslownesspotion", + "slownesssplashpot": "splashslownesspotion", + "slowsplashpot": "splashslownesspotion", + "lingerpotslowness": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": false + } + }, + "lingerpotslow": "lingerpotslowness", + "slownesslingerpot": "lingerpotslowness", + "slowlingerpot": "lingerpotslowness", + "aoepotionslowness": "lingerpotslowness", + "aoepotionslow": "lingerpotslowness", + "slownessaoepoiont": "lingerpotslowness", + "slowaoepoiont": "lingerpotslowness", + "aoepotslowness": "lingerpotslowness", + "aoepotslow": "lingerpotslowness", + "slownessaoepot": "lingerpotslowness", + "slowaoepot": "lingerpotslowness", + "areapotionslowness": "lingerpotslowness", + "areapotionslow": "lingerpotslowness", + "slownessareapotion": "lingerpotslowness", + "slowareapotion": "lingerpotslowness", + "areapotslowness": "lingerpotslowness", + "areapotslow": "lingerpotslowness", + "slownessareapot": "lingerpotslowness", + "slowareapot": "lingerpotslowness", + "cloudpotionslowness": "lingerpotslowness", + "cloudpotionslow": "lingerpotslowness", + "slownesscloudpotion": "lingerpotslowness", + "slowcloudpotion": "lingerpotslowness", + "cloudpotslowness": "lingerpotslowness", + "cloudpotslow": "lingerpotslowness", + "slownesscloudpot": "lingerpotslowness", + "slowcloudpot": "lingerpotslowness", + "arrowslowness": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": false + } + }, + "arrowslow": "arrowslowness", + "slownessarrow": "arrowslowness", + "slowarrow": "arrowslowness", + "slowness2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": true + } + }, + "slownesslongpotion": "slowness2potion", + "slownessextendedpotion": "slowness2potion", + "slownessexpotion": "slowness2potion", + "slownesslevel2potion": "slowness2potion", + "slow2potion": "slowness2potion", + "slowlongpotion": "slowness2potion", + "slowextendedpotion": "slowness2potion", + "slowexpotion": "slowness2potion", + "slowlevel2potion": "slowness2potion", + "slowness2pot": "slowness2potion", + "slownesslongpot": "slowness2potion", + "slownessextendedpot": "slowness2potion", + "slownessexpot": "slowness2potion", + "slownesslevel2pot": "slowness2potion", + "slow2pot": "slowness2potion", + "slowlongpot": "slowness2potion", + "slowextendedpot": "slowness2potion", + "slowexpot": "slowness2potion", + "slowlevel2pot": "slowness2potion", + "potionofslowness2": "slowness2potion", + "potionofslownesslong": "slowness2potion", + "potionofslownessextended": "slowness2potion", + "potionofslownessex": "slowness2potion", + "potionofslownesslevel2": "slowness2potion", + "potionofslow2": "slowness2potion", + "potionofslowlong": "slowness2potion", + "potionofslowextended": "slowness2potion", + "potionofslowex": "slowness2potion", + "potionofslowlevel2": "slowness2potion", + "potofslowness2": "slowness2potion", + "potofslownesslong": "slowness2potion", + "potofslownessextended": "slowness2potion", + "potofslownessex": "slowness2potion", + "potofslownesslevel2": "slowness2potion", + "potofslow2": "slowness2potion", + "potofslowlong": "slowness2potion", + "potofslowextended": "slowness2potion", + "potofslowex": "slowness2potion", + "potofslowlevel2": "slowness2potion", + "splashslowness2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": true + } + }, + "splashslownesslongpotion": "splashslowness2potion", + "splashslownessextendedpotion": "splashslowness2potion", + "splashslownessexpotion": "splashslowness2potion", + "splashslownesslevel2potion": "splashslowness2potion", + "splashslow2potion": "splashslowness2potion", + "splashslowlongpotion": "splashslowness2potion", + "splashslowextendedpotion": "splashslowness2potion", + "splashslowexpotion": "splashslowness2potion", + "splashslowlevel2potion": "splashslowness2potion", + "splslowness2potion": "splashslowness2potion", + "splslownesslongpotion": "splashslowness2potion", + "splslownessextendedpotion": "splashslowness2potion", + "splslownessexpotion": "splashslowness2potion", + "splslownesslevel2potion": "splashslowness2potion", + "splslow2potion": "splashslowness2potion", + "splslowlongpotion": "splashslowness2potion", + "splslowextendedpotion": "splashslowness2potion", + "splslowexpotion": "splashslowness2potion", + "splslowlevel2potion": "splashslowness2potion", + "slowness2splashpotion": "splashslowness2potion", + "slownesslongsplashpotion": "splashslowness2potion", + "slownessextendedsplashpotion": "splashslowness2potion", + "slownessexsplashpotion": "splashslowness2potion", + "slownesslevel2splashpotion": "splashslowness2potion", + "slow2splashpotion": "splashslowness2potion", + "slowlongsplashpotion": "splashslowness2potion", + "slowextendedsplashpotion": "splashslowness2potion", + "slowexsplashpotion": "splashslowness2potion", + "slowlevel2splashpotion": "splashslowness2potion", + "splashslowness2pot": "splashslowness2potion", + "splashslownesslongpot": "splashslowness2potion", + "splashslownessextendedpot": "splashslowness2potion", + "splashslownessexpot": "splashslowness2potion", + "splashslownesslevel2pot": "splashslowness2potion", + "splashslow2pot": "splashslowness2potion", + "splashslowlongpot": "splashslowness2potion", + "splashslowextendedpot": "splashslowness2potion", + "splashslowexpot": "splashslowness2potion", + "splashslowlevel2pot": "splashslowness2potion", + "splslowness2pot": "splashslowness2potion", + "splslownesslongpot": "splashslowness2potion", + "splslownessextendedpot": "splashslowness2potion", + "splslownessexpot": "splashslowness2potion", + "splslownesslevel2pot": "splashslowness2potion", + "splslow2pot": "splashslowness2potion", + "splslowlongpot": "splashslowness2potion", + "splslowextendedpot": "splashslowness2potion", + "splslowexpot": "splashslowness2potion", + "splslowlevel2pot": "splashslowness2potion", + "slowness2splashpot": "splashslowness2potion", + "slownesslongsplashpot": "splashslowness2potion", + "slownessextendedsplashpot": "splashslowness2potion", + "slownessexsplashpot": "splashslowness2potion", + "slownesslevel2splashpot": "splashslowness2potion", + "slow2splashpot": "splashslowness2potion", + "slowlongsplashpot": "splashslowness2potion", + "slowextendedsplashpot": "splashslowness2potion", + "slowexsplashpot": "splashslowness2potion", + "slowlevel2splashpot": "splashslowness2potion", + "lingerpotslowness2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": true + } + }, + "lingerpotslownesslong": "lingerpotslowness2", + "lingerpotslownessextended": "lingerpotslowness2", + "lingerpotslownessex": "lingerpotslowness2", + "lingerpotslownesslevel2": "lingerpotslowness2", + "lingerpotslow2": "lingerpotslowness2", + "lingerpotslowlong": "lingerpotslowness2", + "lingerpotslowextended": "lingerpotslowness2", + "lingerpotslowex": "lingerpotslowness2", + "lingerpotslowlevel2": "lingerpotslowness2", + "slownesslingerpot2": "lingerpotslowness2", + "slownesslingerpotlong": "lingerpotslowness2", + "slownesslingerpotextended": "lingerpotslowness2", + "slownesslingerpotex": "lingerpotslowness2", + "slownesslingerpotlevel2": "lingerpotslowness2", + "slowlingerpot2": "lingerpotslowness2", + "slowlingerpotlong": "lingerpotslowness2", + "slowlingerpotextended": "lingerpotslowness2", + "slowlingerpotex": "lingerpotslowness2", + "slowlingerpotlevel2": "lingerpotslowness2", + "aoepotionslowness2": "lingerpotslowness2", + "aoepotionslownesslong": "lingerpotslowness2", + "aoepotionslownessextended": "lingerpotslowness2", + "aoepotionslownessex": "lingerpotslowness2", + "aoepotionslownesslevel2": "lingerpotslowness2", + "aoepotionslow2": "lingerpotslowness2", + "aoepotionslowlong": "lingerpotslowness2", + "aoepotionslowextended": "lingerpotslowness2", + "aoepotionslowex": "lingerpotslowness2", + "aoepotionslowlevel2": "lingerpotslowness2", + "slownessaoepoiont2": "lingerpotslowness2", + "slownessaoepoiontlong": "lingerpotslowness2", + "slownessaoepoiontextended": "lingerpotslowness2", + "slownessaoepoiontex": "lingerpotslowness2", + "slownessaoepoiontlevel2": "lingerpotslowness2", + "slowaoepoiont2": "lingerpotslowness2", + "slowaoepoiontlong": "lingerpotslowness2", + "slowaoepoiontextended": "lingerpotslowness2", + "slowaoepoiontex": "lingerpotslowness2", + "slowaoepoiontlevel2": "lingerpotslowness2", + "aoepotslowness2": "lingerpotslowness2", + "aoepotslownesslong": "lingerpotslowness2", + "aoepotslownessextended": "lingerpotslowness2", + "aoepotslownessex": "lingerpotslowness2", + "aoepotslownesslevel2": "lingerpotslowness2", + "aoepotslow2": "lingerpotslowness2", + "aoepotslowlong": "lingerpotslowness2", + "aoepotslowextended": "lingerpotslowness2", + "aoepotslowex": "lingerpotslowness2", + "aoepotslowlevel2": "lingerpotslowness2", + "slownessaoepot2": "lingerpotslowness2", + "slownessaoepotlong": "lingerpotslowness2", + "slownessaoepotextended": "lingerpotslowness2", + "slownessaoepotex": "lingerpotslowness2", + "slownessaoepotlevel2": "lingerpotslowness2", + "slowaoepot2": "lingerpotslowness2", + "slowaoepotlong": "lingerpotslowness2", + "slowaoepotextended": "lingerpotslowness2", + "slowaoepotex": "lingerpotslowness2", + "slowaoepotlevel2": "lingerpotslowness2", + "areapotionslowness2": "lingerpotslowness2", + "areapotionslownesslong": "lingerpotslowness2", + "areapotionslownessextended": "lingerpotslowness2", + "areapotionslownessex": "lingerpotslowness2", + "areapotionslownesslevel2": "lingerpotslowness2", + "areapotionslow2": "lingerpotslowness2", + "areapotionslowlong": "lingerpotslowness2", + "areapotionslowextended": "lingerpotslowness2", + "areapotionslowex": "lingerpotslowness2", + "areapotionslowlevel2": "lingerpotslowness2", + "slownessareapotion2": "lingerpotslowness2", + "slownessareapotionlong": "lingerpotslowness2", + "slownessareapotionextended": "lingerpotslowness2", + "slownessareapotionex": "lingerpotslowness2", + "slownessareapotionlevel2": "lingerpotslowness2", + "slowareapotion2": "lingerpotslowness2", + "slowareapotionlong": "lingerpotslowness2", + "slowareapotionextended": "lingerpotslowness2", + "slowareapotionex": "lingerpotslowness2", + "slowareapotionlevel2": "lingerpotslowness2", + "areapotslowness2": "lingerpotslowness2", + "areapotslownesslong": "lingerpotslowness2", + "areapotslownessextended": "lingerpotslowness2", + "areapotslownessex": "lingerpotslowness2", + "areapotslownesslevel2": "lingerpotslowness2", + "areapotslow2": "lingerpotslowness2", + "areapotslowlong": "lingerpotslowness2", + "areapotslowextended": "lingerpotslowness2", + "areapotslowex": "lingerpotslowness2", + "areapotslowlevel2": "lingerpotslowness2", + "slownessareapot2": "lingerpotslowness2", + "slownessareapotlong": "lingerpotslowness2", + "slownessareapotextended": "lingerpotslowness2", + "slownessareapotex": "lingerpotslowness2", + "slownessareapotlevel2": "lingerpotslowness2", + "slowareapot2": "lingerpotslowness2", + "slowareapotlong": "lingerpotslowness2", + "slowareapotextended": "lingerpotslowness2", + "slowareapotex": "lingerpotslowness2", + "slowareapotlevel2": "lingerpotslowness2", + "cloudpotionslowness2": "lingerpotslowness2", + "cloudpotionslownesslong": "lingerpotslowness2", + "cloudpotionslownessextended": "lingerpotslowness2", + "cloudpotionslownessex": "lingerpotslowness2", + "cloudpotionslownesslevel2": "lingerpotslowness2", + "cloudpotionslow2": "lingerpotslowness2", + "cloudpotionslowlong": "lingerpotslowness2", + "cloudpotionslowextended": "lingerpotslowness2", + "cloudpotionslowex": "lingerpotslowness2", + "cloudpotionslowlevel2": "lingerpotslowness2", + "slownesscloudpotion2": "lingerpotslowness2", + "slownesscloudpotionlong": "lingerpotslowness2", + "slownesscloudpotionextended": "lingerpotslowness2", + "slownesscloudpotionex": "lingerpotslowness2", + "slownesscloudpotionlevel2": "lingerpotslowness2", + "slowcloudpotion2": "lingerpotslowness2", + "slowcloudpotionlong": "lingerpotslowness2", + "slowcloudpotionextended": "lingerpotslowness2", + "slowcloudpotionex": "lingerpotslowness2", + "slowcloudpotionlevel2": "lingerpotslowness2", + "cloudpotslowness2": "lingerpotslowness2", + "cloudpotslownesslong": "lingerpotslowness2", + "cloudpotslownessextended": "lingerpotslowness2", + "cloudpotslownessex": "lingerpotslowness2", + "cloudpotslownesslevel2": "lingerpotslowness2", + "cloudpotslow2": "lingerpotslowness2", + "cloudpotslowlong": "lingerpotslowness2", + "cloudpotslowextended": "lingerpotslowness2", + "cloudpotslowex": "lingerpotslowness2", + "cloudpotslowlevel2": "lingerpotslowness2", + "slownesscloudpot2": "lingerpotslowness2", + "slownesscloudpotlong": "lingerpotslowness2", + "slownesscloudpotextended": "lingerpotslowness2", + "slownesscloudpotex": "lingerpotslowness2", + "slownesscloudpotlevel2": "lingerpotslowness2", + "slowcloudpot2": "lingerpotslowness2", + "slowcloudpotlong": "lingerpotslowness2", + "slowcloudpotextended": "lingerpotslowness2", + "slowcloudpotex": "lingerpotslowness2", + "slowcloudpotlevel2": "lingerpotslowness2", + "arrowslowness2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_slowness", + "type": "SLOWNESS", + "upgraded": false, + "extended": true + } + }, + "arrowslownesslong": "arrowslowness2", + "arrowslownessextended": "arrowslowness2", + "arrowslownessex": "arrowslowness2", + "arrowslownesslevel2": "arrowslowness2", + "arrowslow2": "arrowslowness2", + "arrowslowlong": "arrowslowness2", + "arrowslowextended": "arrowslowness2", + "arrowslowex": "arrowslowness2", + "arrowslowlevel2": "arrowslowness2", + "slownessarrow2": "arrowslowness2", + "slownessarrowlong": "arrowslowness2", + "slownessarrowextended": "arrowslowness2", + "slownessarrowex": "arrowslowness2", + "slownessarrowlevel2": "arrowslowness2", + "slowarrow2": "arrowslowness2", + "slowarrowlong": "arrowslowness2", + "slowarrowextended": "arrowslowness2", + "slowarrowex": "arrowslowness2", + "slowarrowlevel2": "arrowslowness2", + "waterbreathingpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": false + } + }, + "wbpotion": "waterbreathingpotion", + "waterbreathpotion": "waterbreathingpotion", + "breathingpotion": "waterbreathingpotion", + "breathpotion": "waterbreathingpotion", + "waterbreathingpot": "waterbreathingpotion", + "wbpot": "waterbreathingpotion", + "waterbreathpot": "waterbreathingpotion", + "breathingpot": "waterbreathingpotion", + "breathpot": "waterbreathingpotion", + "potionofwaterbreathing": "waterbreathingpotion", + "potionofwb": "waterbreathingpotion", + "potionofwaterbreath": "waterbreathingpotion", + "potionofbreathing": "waterbreathingpotion", + "potionofbreath": "waterbreathingpotion", + "potofwaterbreathing": "waterbreathingpotion", + "potofwb": "waterbreathingpotion", + "potofwaterbreath": "waterbreathingpotion", + "potofbreathing": "waterbreathingpotion", + "potofbreath": "waterbreathingpotion", + "splashwaterbreathingpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": false + } + }, + "splashwbpotion": "splashwaterbreathingpotion", + "splashwaterbreathpotion": "splashwaterbreathingpotion", + "splashbreathingpotion": "splashwaterbreathingpotion", + "splashbreathpotion": "splashwaterbreathingpotion", + "splwaterbreathingpotion": "splashwaterbreathingpotion", + "splwbpotion": "splashwaterbreathingpotion", + "splwaterbreathpotion": "splashwaterbreathingpotion", + "splbreathingpotion": "splashwaterbreathingpotion", + "splbreathpotion": "splashwaterbreathingpotion", + "waterbreathingsplashpotion": "splashwaterbreathingpotion", + "wbsplashpotion": "splashwaterbreathingpotion", + "waterbreathsplashpotion": "splashwaterbreathingpotion", + "breathingsplashpotion": "splashwaterbreathingpotion", + "breathsplashpotion": "splashwaterbreathingpotion", + "splashwaterbreathingpot": "splashwaterbreathingpotion", + "splashwbpot": "splashwaterbreathingpotion", + "splashwaterbreathpot": "splashwaterbreathingpotion", + "splashbreathingpot": "splashwaterbreathingpotion", + "splashbreathpot": "splashwaterbreathingpotion", + "splwaterbreathingpot": "splashwaterbreathingpotion", + "splwbpot": "splashwaterbreathingpotion", + "splwaterbreathpot": "splashwaterbreathingpotion", + "splbreathingpot": "splashwaterbreathingpotion", + "splbreathpot": "splashwaterbreathingpotion", + "waterbreathingsplashpot": "splashwaterbreathingpotion", + "wbsplashpot": "splashwaterbreathingpotion", + "waterbreathsplashpot": "splashwaterbreathingpotion", + "breathingsplashpot": "splashwaterbreathingpotion", + "breathsplashpot": "splashwaterbreathingpotion", + "lingerpotwaterbreathing": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": false + } + }, + "lingerpotwb": "lingerpotwaterbreathing", + "lingerpotwaterbreath": "lingerpotwaterbreathing", + "lingerpotbreathing": "lingerpotwaterbreathing", + "lingerpotbreath": "lingerpotwaterbreathing", + "waterbreathinglingerpot": "lingerpotwaterbreathing", + "wblingerpot": "lingerpotwaterbreathing", + "waterbreathlingerpot": "lingerpotwaterbreathing", + "breathinglingerpot": "lingerpotwaterbreathing", + "breathlingerpot": "lingerpotwaterbreathing", + "aoepotionwaterbreathing": "lingerpotwaterbreathing", + "aoepotionwb": "lingerpotwaterbreathing", + "aoepotionwaterbreath": "lingerpotwaterbreathing", + "aoepotionbreathing": "lingerpotwaterbreathing", + "aoepotionbreath": "lingerpotwaterbreathing", + "waterbreathingaoepoiont": "lingerpotwaterbreathing", + "wbaoepoiont": "lingerpotwaterbreathing", + "waterbreathaoepoiont": "lingerpotwaterbreathing", + "breathingaoepoiont": "lingerpotwaterbreathing", + "breathaoepoiont": "lingerpotwaterbreathing", + "aoepotwaterbreathing": "lingerpotwaterbreathing", + "aoepotwb": "lingerpotwaterbreathing", + "aoepotwaterbreath": "lingerpotwaterbreathing", + "aoepotbreathing": "lingerpotwaterbreathing", + "aoepotbreath": "lingerpotwaterbreathing", + "waterbreathingaoepot": "lingerpotwaterbreathing", + "wbaoepot": "lingerpotwaterbreathing", + "waterbreathaoepot": "lingerpotwaterbreathing", + "breathingaoepot": "lingerpotwaterbreathing", + "breathaoepot": "lingerpotwaterbreathing", + "areapotionwaterbreathing": "lingerpotwaterbreathing", + "areapotionwb": "lingerpotwaterbreathing", + "areapotionwaterbreath": "lingerpotwaterbreathing", + "areapotionbreathing": "lingerpotwaterbreathing", + "areapotionbreath": "lingerpotwaterbreathing", + "waterbreathingareapotion": "lingerpotwaterbreathing", + "wbareapotion": "lingerpotwaterbreathing", + "waterbreathareapotion": "lingerpotwaterbreathing", + "breathingareapotion": "lingerpotwaterbreathing", + "breathareapotion": "lingerpotwaterbreathing", + "areapotwaterbreathing": "lingerpotwaterbreathing", + "areapotwb": "lingerpotwaterbreathing", + "areapotwaterbreath": "lingerpotwaterbreathing", + "areapotbreathing": "lingerpotwaterbreathing", + "areapotbreath": "lingerpotwaterbreathing", + "waterbreathingareapot": "lingerpotwaterbreathing", + "wbareapot": "lingerpotwaterbreathing", + "waterbreathareapot": "lingerpotwaterbreathing", + "breathingareapot": "lingerpotwaterbreathing", + "breathareapot": "lingerpotwaterbreathing", + "cloudpotionwaterbreathing": "lingerpotwaterbreathing", + "cloudpotionwb": "lingerpotwaterbreathing", + "cloudpotionwaterbreath": "lingerpotwaterbreathing", + "cloudpotionbreathing": "lingerpotwaterbreathing", + "cloudpotionbreath": "lingerpotwaterbreathing", + "waterbreathingcloudpotion": "lingerpotwaterbreathing", + "wbcloudpotion": "lingerpotwaterbreathing", + "waterbreathcloudpotion": "lingerpotwaterbreathing", + "breathingcloudpotion": "lingerpotwaterbreathing", + "breathcloudpotion": "lingerpotwaterbreathing", + "cloudpotwaterbreathing": "lingerpotwaterbreathing", + "cloudpotwb": "lingerpotwaterbreathing", + "cloudpotwaterbreath": "lingerpotwaterbreathing", + "cloudpotbreathing": "lingerpotwaterbreathing", + "cloudpotbreath": "lingerpotwaterbreathing", + "waterbreathingcloudpot": "lingerpotwaterbreathing", + "wbcloudpot": "lingerpotwaterbreathing", + "waterbreathcloudpot": "lingerpotwaterbreathing", + "breathingcloudpot": "lingerpotwaterbreathing", + "breathcloudpot": "lingerpotwaterbreathing", + "arrowwaterbreathing": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": false + } + }, + "arrowwb": "arrowwaterbreathing", + "arrowwaterbreath": "arrowwaterbreathing", + "arrowbreathing": "arrowwaterbreathing", + "arrowbreath": "arrowwaterbreathing", + "waterbreathingarrow": "arrowwaterbreathing", + "wbarrow": "arrowwaterbreathing", + "waterbreatharrow": "arrowwaterbreathing", + "breathingarrow": "arrowwaterbreathing", + "breatharrow": "arrowwaterbreathing", + "waterbreathing2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": true + } + }, + "waterbreathinglongpotion": "waterbreathing2potion", + "waterbreathingextendedpotion": "waterbreathing2potion", + "waterbreathingexpotion": "waterbreathing2potion", + "waterbreathinglevel2potion": "waterbreathing2potion", + "wb2potion": "waterbreathing2potion", + "wblongpotion": "waterbreathing2potion", + "wbextendedpotion": "waterbreathing2potion", + "wbexpotion": "waterbreathing2potion", + "wblevel2potion": "waterbreathing2potion", + "waterbreath2potion": "waterbreathing2potion", + "waterbreathlongpotion": "waterbreathing2potion", + "waterbreathextendedpotion": "waterbreathing2potion", + "waterbreathexpotion": "waterbreathing2potion", + "waterbreathlevel2potion": "waterbreathing2potion", + "breathing2potion": "waterbreathing2potion", + "breathinglongpotion": "waterbreathing2potion", + "breathingextendedpotion": "waterbreathing2potion", + "breathingexpotion": "waterbreathing2potion", + "breathinglevel2potion": "waterbreathing2potion", + "breath2potion": "waterbreathing2potion", + "breathlongpotion": "waterbreathing2potion", + "breathextendedpotion": "waterbreathing2potion", + "breathexpotion": "waterbreathing2potion", + "breathlevel2potion": "waterbreathing2potion", + "waterbreathing2pot": "waterbreathing2potion", + "waterbreathinglongpot": "waterbreathing2potion", + "waterbreathingextendedpot": "waterbreathing2potion", + "waterbreathingexpot": "waterbreathing2potion", + "waterbreathinglevel2pot": "waterbreathing2potion", + "wb2pot": "waterbreathing2potion", + "wblongpot": "waterbreathing2potion", + "wbextendedpot": "waterbreathing2potion", + "wbexpot": "waterbreathing2potion", + "wblevel2pot": "waterbreathing2potion", + "waterbreath2pot": "waterbreathing2potion", + "waterbreathlongpot": "waterbreathing2potion", + "waterbreathextendedpot": "waterbreathing2potion", + "waterbreathexpot": "waterbreathing2potion", + "waterbreathlevel2pot": "waterbreathing2potion", + "breathing2pot": "waterbreathing2potion", + "breathinglongpot": "waterbreathing2potion", + "breathingextendedpot": "waterbreathing2potion", + "breathingexpot": "waterbreathing2potion", + "breathinglevel2pot": "waterbreathing2potion", + "breath2pot": "waterbreathing2potion", + "breathlongpot": "waterbreathing2potion", + "breathextendedpot": "waterbreathing2potion", + "breathexpot": "waterbreathing2potion", + "breathlevel2pot": "waterbreathing2potion", + "potionofwaterbreathing2": "waterbreathing2potion", + "potionofwaterbreathinglong": "waterbreathing2potion", + "potionofwaterbreathingextended": "waterbreathing2potion", + "potionofwaterbreathingex": "waterbreathing2potion", + "potionofwaterbreathinglevel2": "waterbreathing2potion", + "potionofwb2": "waterbreathing2potion", + "potionofwblong": "waterbreathing2potion", + "potionofwbextended": "waterbreathing2potion", + "potionofwbex": "waterbreathing2potion", + "potionofwblevel2": "waterbreathing2potion", + "potionofwaterbreath2": "waterbreathing2potion", + "potionofwaterbreathlong": "waterbreathing2potion", + "potionofwaterbreathextended": "waterbreathing2potion", + "potionofwaterbreathex": "waterbreathing2potion", + "potionofwaterbreathlevel2": "waterbreathing2potion", + "potionofbreathing2": "waterbreathing2potion", + "potionofbreathinglong": "waterbreathing2potion", + "potionofbreathingextended": "waterbreathing2potion", + "potionofbreathingex": "waterbreathing2potion", + "potionofbreathinglevel2": "waterbreathing2potion", + "potionofbreath2": "waterbreathing2potion", + "potionofbreathlong": "waterbreathing2potion", + "potionofbreathextended": "waterbreathing2potion", + "potionofbreathex": "waterbreathing2potion", + "potionofbreathlevel2": "waterbreathing2potion", + "potofwaterbreathing2": "waterbreathing2potion", + "potofwaterbreathinglong": "waterbreathing2potion", + "potofwaterbreathingextended": "waterbreathing2potion", + "potofwaterbreathingex": "waterbreathing2potion", + "potofwaterbreathinglevel2": "waterbreathing2potion", + "potofwb2": "waterbreathing2potion", + "potofwblong": "waterbreathing2potion", + "potofwbextended": "waterbreathing2potion", + "potofwbex": "waterbreathing2potion", + "potofwblevel2": "waterbreathing2potion", + "potofwaterbreath2": "waterbreathing2potion", + "potofwaterbreathlong": "waterbreathing2potion", + "potofwaterbreathextended": "waterbreathing2potion", + "potofwaterbreathex": "waterbreathing2potion", + "potofwaterbreathlevel2": "waterbreathing2potion", + "potofbreathing2": "waterbreathing2potion", + "potofbreathinglong": "waterbreathing2potion", + "potofbreathingextended": "waterbreathing2potion", + "potofbreathingex": "waterbreathing2potion", + "potofbreathinglevel2": "waterbreathing2potion", + "potofbreath2": "waterbreathing2potion", + "potofbreathlong": "waterbreathing2potion", + "potofbreathextended": "waterbreathing2potion", + "potofbreathex": "waterbreathing2potion", + "potofbreathlevel2": "waterbreathing2potion", + "splashwaterbreathing2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": true + } + }, + "splashwaterbreathinglongpotion": "splashwaterbreathing2potion", + "splashwaterbreathingextendedpotion": "splashwaterbreathing2potion", + "splashwaterbreathingexpotion": "splashwaterbreathing2potion", + "splashwaterbreathinglevel2potion": "splashwaterbreathing2potion", + "splashwb2potion": "splashwaterbreathing2potion", + "splashwblongpotion": "splashwaterbreathing2potion", + "splashwbextendedpotion": "splashwaterbreathing2potion", + "splashwbexpotion": "splashwaterbreathing2potion", + "splashwblevel2potion": "splashwaterbreathing2potion", + "splashwaterbreath2potion": "splashwaterbreathing2potion", + "splashwaterbreathlongpotion": "splashwaterbreathing2potion", + "splashwaterbreathextendedpotion": "splashwaterbreathing2potion", + "splashwaterbreathexpotion": "splashwaterbreathing2potion", + "splashwaterbreathlevel2potion": "splashwaterbreathing2potion", + "splashbreathing2potion": "splashwaterbreathing2potion", + "splashbreathinglongpotion": "splashwaterbreathing2potion", + "splashbreathingextendedpotion": "splashwaterbreathing2potion", + "splashbreathingexpotion": "splashwaterbreathing2potion", + "splashbreathinglevel2potion": "splashwaterbreathing2potion", + "splashbreath2potion": "splashwaterbreathing2potion", + "splashbreathlongpotion": "splashwaterbreathing2potion", + "splashbreathextendedpotion": "splashwaterbreathing2potion", + "splashbreathexpotion": "splashwaterbreathing2potion", + "splashbreathlevel2potion": "splashwaterbreathing2potion", + "splwaterbreathing2potion": "splashwaterbreathing2potion", + "splwaterbreathinglongpotion": "splashwaterbreathing2potion", + "splwaterbreathingextendedpotion": "splashwaterbreathing2potion", + "splwaterbreathingexpotion": "splashwaterbreathing2potion", + "splwaterbreathinglevel2potion": "splashwaterbreathing2potion", + "splwb2potion": "splashwaterbreathing2potion", + "splwblongpotion": "splashwaterbreathing2potion", + "splwbextendedpotion": "splashwaterbreathing2potion", + "splwbexpotion": "splashwaterbreathing2potion", + "splwblevel2potion": "splashwaterbreathing2potion", + "splwaterbreath2potion": "splashwaterbreathing2potion", + "splwaterbreathlongpotion": "splashwaterbreathing2potion", + "splwaterbreathextendedpotion": "splashwaterbreathing2potion", + "splwaterbreathexpotion": "splashwaterbreathing2potion", + "splwaterbreathlevel2potion": "splashwaterbreathing2potion", + "splbreathing2potion": "splashwaterbreathing2potion", + "splbreathinglongpotion": "splashwaterbreathing2potion", + "splbreathingextendedpotion": "splashwaterbreathing2potion", + "splbreathingexpotion": "splashwaterbreathing2potion", + "splbreathinglevel2potion": "splashwaterbreathing2potion", + "splbreath2potion": "splashwaterbreathing2potion", + "splbreathlongpotion": "splashwaterbreathing2potion", + "splbreathextendedpotion": "splashwaterbreathing2potion", + "splbreathexpotion": "splashwaterbreathing2potion", + "splbreathlevel2potion": "splashwaterbreathing2potion", + "waterbreathing2splashpotion": "splashwaterbreathing2potion", + "waterbreathinglongsplashpotion": "splashwaterbreathing2potion", + "waterbreathingextendedsplashpotion": "splashwaterbreathing2potion", + "waterbreathingexsplashpotion": "splashwaterbreathing2potion", + "waterbreathinglevel2splashpotion": "splashwaterbreathing2potion", + "wb2splashpotion": "splashwaterbreathing2potion", + "wblongsplashpotion": "splashwaterbreathing2potion", + "wbextendedsplashpotion": "splashwaterbreathing2potion", + "wbexsplashpotion": "splashwaterbreathing2potion", + "wblevel2splashpotion": "splashwaterbreathing2potion", + "waterbreath2splashpotion": "splashwaterbreathing2potion", + "waterbreathlongsplashpotion": "splashwaterbreathing2potion", + "waterbreathextendedsplashpotion": "splashwaterbreathing2potion", + "waterbreathexsplashpotion": "splashwaterbreathing2potion", + "waterbreathlevel2splashpotion": "splashwaterbreathing2potion", + "breathing2splashpotion": "splashwaterbreathing2potion", + "breathinglongsplashpotion": "splashwaterbreathing2potion", + "breathingextendedsplashpotion": "splashwaterbreathing2potion", + "breathingexsplashpotion": "splashwaterbreathing2potion", + "breathinglevel2splashpotion": "splashwaterbreathing2potion", + "breath2splashpotion": "splashwaterbreathing2potion", + "breathlongsplashpotion": "splashwaterbreathing2potion", + "breathextendedsplashpotion": "splashwaterbreathing2potion", + "breathexsplashpotion": "splashwaterbreathing2potion", + "breathlevel2splashpotion": "splashwaterbreathing2potion", + "splashwaterbreathing2pot": "splashwaterbreathing2potion", + "splashwaterbreathinglongpot": "splashwaterbreathing2potion", + "splashwaterbreathingextendedpot": "splashwaterbreathing2potion", + "splashwaterbreathingexpot": "splashwaterbreathing2potion", + "splashwaterbreathinglevel2pot": "splashwaterbreathing2potion", + "splashwb2pot": "splashwaterbreathing2potion", + "splashwblongpot": "splashwaterbreathing2potion", + "splashwbextendedpot": "splashwaterbreathing2potion", + "splashwbexpot": "splashwaterbreathing2potion", + "splashwblevel2pot": "splashwaterbreathing2potion", + "splashwaterbreath2pot": "splashwaterbreathing2potion", + "splashwaterbreathlongpot": "splashwaterbreathing2potion", + "splashwaterbreathextendedpot": "splashwaterbreathing2potion", + "splashwaterbreathexpot": "splashwaterbreathing2potion", + "splashwaterbreathlevel2pot": "splashwaterbreathing2potion", + "splashbreathing2pot": "splashwaterbreathing2potion", + "splashbreathinglongpot": "splashwaterbreathing2potion", + "splashbreathingextendedpot": "splashwaterbreathing2potion", + "splashbreathingexpot": "splashwaterbreathing2potion", + "splashbreathinglevel2pot": "splashwaterbreathing2potion", + "splashbreath2pot": "splashwaterbreathing2potion", + "splashbreathlongpot": "splashwaterbreathing2potion", + "splashbreathextendedpot": "splashwaterbreathing2potion", + "splashbreathexpot": "splashwaterbreathing2potion", + "splashbreathlevel2pot": "splashwaterbreathing2potion", + "splwaterbreathing2pot": "splashwaterbreathing2potion", + "splwaterbreathinglongpot": "splashwaterbreathing2potion", + "splwaterbreathingextendedpot": "splashwaterbreathing2potion", + "splwaterbreathingexpot": "splashwaterbreathing2potion", + "splwaterbreathinglevel2pot": "splashwaterbreathing2potion", + "splwb2pot": "splashwaterbreathing2potion", + "splwblongpot": "splashwaterbreathing2potion", + "splwbextendedpot": "splashwaterbreathing2potion", + "splwbexpot": "splashwaterbreathing2potion", + "splwblevel2pot": "splashwaterbreathing2potion", + "splwaterbreath2pot": "splashwaterbreathing2potion", + "splwaterbreathlongpot": "splashwaterbreathing2potion", + "splwaterbreathextendedpot": "splashwaterbreathing2potion", + "splwaterbreathexpot": "splashwaterbreathing2potion", + "splwaterbreathlevel2pot": "splashwaterbreathing2potion", + "splbreathing2pot": "splashwaterbreathing2potion", + "splbreathinglongpot": "splashwaterbreathing2potion", + "splbreathingextendedpot": "splashwaterbreathing2potion", + "splbreathingexpot": "splashwaterbreathing2potion", + "splbreathinglevel2pot": "splashwaterbreathing2potion", + "splbreath2pot": "splashwaterbreathing2potion", + "splbreathlongpot": "splashwaterbreathing2potion", + "splbreathextendedpot": "splashwaterbreathing2potion", + "splbreathexpot": "splashwaterbreathing2potion", + "splbreathlevel2pot": "splashwaterbreathing2potion", + "waterbreathing2splashpot": "splashwaterbreathing2potion", + "waterbreathinglongsplashpot": "splashwaterbreathing2potion", + "waterbreathingextendedsplashpot": "splashwaterbreathing2potion", + "waterbreathingexsplashpot": "splashwaterbreathing2potion", + "waterbreathinglevel2splashpot": "splashwaterbreathing2potion", + "wb2splashpot": "splashwaterbreathing2potion", + "wblongsplashpot": "splashwaterbreathing2potion", + "wbextendedsplashpot": "splashwaterbreathing2potion", + "wbexsplashpot": "splashwaterbreathing2potion", + "wblevel2splashpot": "splashwaterbreathing2potion", + "waterbreath2splashpot": "splashwaterbreathing2potion", + "waterbreathlongsplashpot": "splashwaterbreathing2potion", + "waterbreathextendedsplashpot": "splashwaterbreathing2potion", + "waterbreathexsplashpot": "splashwaterbreathing2potion", + "waterbreathlevel2splashpot": "splashwaterbreathing2potion", + "breathing2splashpot": "splashwaterbreathing2potion", + "breathinglongsplashpot": "splashwaterbreathing2potion", + "breathingextendedsplashpot": "splashwaterbreathing2potion", + "breathingexsplashpot": "splashwaterbreathing2potion", + "breathinglevel2splashpot": "splashwaterbreathing2potion", + "breath2splashpot": "splashwaterbreathing2potion", + "breathlongsplashpot": "splashwaterbreathing2potion", + "breathextendedsplashpot": "splashwaterbreathing2potion", + "breathexsplashpot": "splashwaterbreathing2potion", + "breathlevel2splashpot": "splashwaterbreathing2potion", + "lingerpotwaterbreathing2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": true + } + }, + "lingerpotwaterbreathinglong": "lingerpotwaterbreathing2", + "lingerpotwaterbreathingextended": "lingerpotwaterbreathing2", + "lingerpotwaterbreathingex": "lingerpotwaterbreathing2", + "lingerpotwaterbreathinglevel2": "lingerpotwaterbreathing2", + "lingerpotwb2": "lingerpotwaterbreathing2", + "lingerpotwblong": "lingerpotwaterbreathing2", + "lingerpotwbextended": "lingerpotwaterbreathing2", + "lingerpotwbex": "lingerpotwaterbreathing2", + "lingerpotwblevel2": "lingerpotwaterbreathing2", + "lingerpotwaterbreath2": "lingerpotwaterbreathing2", + "lingerpotwaterbreathlong": "lingerpotwaterbreathing2", + "lingerpotwaterbreathextended": "lingerpotwaterbreathing2", + "lingerpotwaterbreathex": "lingerpotwaterbreathing2", + "lingerpotwaterbreathlevel2": "lingerpotwaterbreathing2", + "lingerpotbreathing2": "lingerpotwaterbreathing2", + "lingerpotbreathinglong": "lingerpotwaterbreathing2", + "lingerpotbreathingextended": "lingerpotwaterbreathing2", + "lingerpotbreathingex": "lingerpotwaterbreathing2", + "lingerpotbreathinglevel2": "lingerpotwaterbreathing2", + "lingerpotbreath2": "lingerpotwaterbreathing2", + "lingerpotbreathlong": "lingerpotwaterbreathing2", + "lingerpotbreathextended": "lingerpotwaterbreathing2", + "lingerpotbreathex": "lingerpotwaterbreathing2", + "lingerpotbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathinglingerpot2": "lingerpotwaterbreathing2", + "waterbreathinglingerpotlong": "lingerpotwaterbreathing2", + "waterbreathinglingerpotextended": "lingerpotwaterbreathing2", + "waterbreathinglingerpotex": "lingerpotwaterbreathing2", + "waterbreathinglingerpotlevel2": "lingerpotwaterbreathing2", + "wblingerpot2": "lingerpotwaterbreathing2", + "wblingerpotlong": "lingerpotwaterbreathing2", + "wblingerpotextended": "lingerpotwaterbreathing2", + "wblingerpotex": "lingerpotwaterbreathing2", + "wblingerpotlevel2": "lingerpotwaterbreathing2", + "waterbreathlingerpot2": "lingerpotwaterbreathing2", + "waterbreathlingerpotlong": "lingerpotwaterbreathing2", + "waterbreathlingerpotextended": "lingerpotwaterbreathing2", + "waterbreathlingerpotex": "lingerpotwaterbreathing2", + "waterbreathlingerpotlevel2": "lingerpotwaterbreathing2", + "breathinglingerpot2": "lingerpotwaterbreathing2", + "breathinglingerpotlong": "lingerpotwaterbreathing2", + "breathinglingerpotextended": "lingerpotwaterbreathing2", + "breathinglingerpotex": "lingerpotwaterbreathing2", + "breathinglingerpotlevel2": "lingerpotwaterbreathing2", + "breathlingerpot2": "lingerpotwaterbreathing2", + "breathlingerpotlong": "lingerpotwaterbreathing2", + "breathlingerpotextended": "lingerpotwaterbreathing2", + "breathlingerpotex": "lingerpotwaterbreathing2", + "breathlingerpotlevel2": "lingerpotwaterbreathing2", + "aoepotionwaterbreathing2": "lingerpotwaterbreathing2", + "aoepotionwaterbreathinglong": "lingerpotwaterbreathing2", + "aoepotionwaterbreathingextended": "lingerpotwaterbreathing2", + "aoepotionwaterbreathingex": "lingerpotwaterbreathing2", + "aoepotionwaterbreathinglevel2": "lingerpotwaterbreathing2", + "aoepotionwb2": "lingerpotwaterbreathing2", + "aoepotionwblong": "lingerpotwaterbreathing2", + "aoepotionwbextended": "lingerpotwaterbreathing2", + "aoepotionwbex": "lingerpotwaterbreathing2", + "aoepotionwblevel2": "lingerpotwaterbreathing2", + "aoepotionwaterbreath2": "lingerpotwaterbreathing2", + "aoepotionwaterbreathlong": "lingerpotwaterbreathing2", + "aoepotionwaterbreathextended": "lingerpotwaterbreathing2", + "aoepotionwaterbreathex": "lingerpotwaterbreathing2", + "aoepotionwaterbreathlevel2": "lingerpotwaterbreathing2", + "aoepotionbreathing2": "lingerpotwaterbreathing2", + "aoepotionbreathinglong": "lingerpotwaterbreathing2", + "aoepotionbreathingextended": "lingerpotwaterbreathing2", + "aoepotionbreathingex": "lingerpotwaterbreathing2", + "aoepotionbreathinglevel2": "lingerpotwaterbreathing2", + "aoepotionbreath2": "lingerpotwaterbreathing2", + "aoepotionbreathlong": "lingerpotwaterbreathing2", + "aoepotionbreathextended": "lingerpotwaterbreathing2", + "aoepotionbreathex": "lingerpotwaterbreathing2", + "aoepotionbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathingaoepoiont2": "lingerpotwaterbreathing2", + "waterbreathingaoepoiontlong": "lingerpotwaterbreathing2", + "waterbreathingaoepoiontextended": "lingerpotwaterbreathing2", + "waterbreathingaoepoiontex": "lingerpotwaterbreathing2", + "waterbreathingaoepoiontlevel2": "lingerpotwaterbreathing2", + "wbaoepoiont2": "lingerpotwaterbreathing2", + "wbaoepoiontlong": "lingerpotwaterbreathing2", + "wbaoepoiontextended": "lingerpotwaterbreathing2", + "wbaoepoiontex": "lingerpotwaterbreathing2", + "wbaoepoiontlevel2": "lingerpotwaterbreathing2", + "waterbreathaoepoiont2": "lingerpotwaterbreathing2", + "waterbreathaoepoiontlong": "lingerpotwaterbreathing2", + "waterbreathaoepoiontextended": "lingerpotwaterbreathing2", + "waterbreathaoepoiontex": "lingerpotwaterbreathing2", + "waterbreathaoepoiontlevel2": "lingerpotwaterbreathing2", + "breathingaoepoiont2": "lingerpotwaterbreathing2", + "breathingaoepoiontlong": "lingerpotwaterbreathing2", + "breathingaoepoiontextended": "lingerpotwaterbreathing2", + "breathingaoepoiontex": "lingerpotwaterbreathing2", + "breathingaoepoiontlevel2": "lingerpotwaterbreathing2", + "breathaoepoiont2": "lingerpotwaterbreathing2", + "breathaoepoiontlong": "lingerpotwaterbreathing2", + "breathaoepoiontextended": "lingerpotwaterbreathing2", + "breathaoepoiontex": "lingerpotwaterbreathing2", + "breathaoepoiontlevel2": "lingerpotwaterbreathing2", + "aoepotwaterbreathing2": "lingerpotwaterbreathing2", + "aoepotwaterbreathinglong": "lingerpotwaterbreathing2", + "aoepotwaterbreathingextended": "lingerpotwaterbreathing2", + "aoepotwaterbreathingex": "lingerpotwaterbreathing2", + "aoepotwaterbreathinglevel2": "lingerpotwaterbreathing2", + "aoepotwb2": "lingerpotwaterbreathing2", + "aoepotwblong": "lingerpotwaterbreathing2", + "aoepotwbextended": "lingerpotwaterbreathing2", + "aoepotwbex": "lingerpotwaterbreathing2", + "aoepotwblevel2": "lingerpotwaterbreathing2", + "aoepotwaterbreath2": "lingerpotwaterbreathing2", + "aoepotwaterbreathlong": "lingerpotwaterbreathing2", + "aoepotwaterbreathextended": "lingerpotwaterbreathing2", + "aoepotwaterbreathex": "lingerpotwaterbreathing2", + "aoepotwaterbreathlevel2": "lingerpotwaterbreathing2", + "aoepotbreathing2": "lingerpotwaterbreathing2", + "aoepotbreathinglong": "lingerpotwaterbreathing2", + "aoepotbreathingextended": "lingerpotwaterbreathing2", + "aoepotbreathingex": "lingerpotwaterbreathing2", + "aoepotbreathinglevel2": "lingerpotwaterbreathing2", + "aoepotbreath2": "lingerpotwaterbreathing2", + "aoepotbreathlong": "lingerpotwaterbreathing2", + "aoepotbreathextended": "lingerpotwaterbreathing2", + "aoepotbreathex": "lingerpotwaterbreathing2", + "aoepotbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathingaoepot2": "lingerpotwaterbreathing2", + "waterbreathingaoepotlong": "lingerpotwaterbreathing2", + "waterbreathingaoepotextended": "lingerpotwaterbreathing2", + "waterbreathingaoepotex": "lingerpotwaterbreathing2", + "waterbreathingaoepotlevel2": "lingerpotwaterbreathing2", + "wbaoepot2": "lingerpotwaterbreathing2", + "wbaoepotlong": "lingerpotwaterbreathing2", + "wbaoepotextended": "lingerpotwaterbreathing2", + "wbaoepotex": "lingerpotwaterbreathing2", + "wbaoepotlevel2": "lingerpotwaterbreathing2", + "waterbreathaoepot2": "lingerpotwaterbreathing2", + "waterbreathaoepotlong": "lingerpotwaterbreathing2", + "waterbreathaoepotextended": "lingerpotwaterbreathing2", + "waterbreathaoepotex": "lingerpotwaterbreathing2", + "waterbreathaoepotlevel2": "lingerpotwaterbreathing2", + "breathingaoepot2": "lingerpotwaterbreathing2", + "breathingaoepotlong": "lingerpotwaterbreathing2", + "breathingaoepotextended": "lingerpotwaterbreathing2", + "breathingaoepotex": "lingerpotwaterbreathing2", + "breathingaoepotlevel2": "lingerpotwaterbreathing2", + "breathaoepot2": "lingerpotwaterbreathing2", + "breathaoepotlong": "lingerpotwaterbreathing2", + "breathaoepotextended": "lingerpotwaterbreathing2", + "breathaoepotex": "lingerpotwaterbreathing2", + "breathaoepotlevel2": "lingerpotwaterbreathing2", + "areapotionwaterbreathing2": "lingerpotwaterbreathing2", + "areapotionwaterbreathinglong": "lingerpotwaterbreathing2", + "areapotionwaterbreathingextended": "lingerpotwaterbreathing2", + "areapotionwaterbreathingex": "lingerpotwaterbreathing2", + "areapotionwaterbreathinglevel2": "lingerpotwaterbreathing2", + "areapotionwb2": "lingerpotwaterbreathing2", + "areapotionwblong": "lingerpotwaterbreathing2", + "areapotionwbextended": "lingerpotwaterbreathing2", + "areapotionwbex": "lingerpotwaterbreathing2", + "areapotionwblevel2": "lingerpotwaterbreathing2", + "areapotionwaterbreath2": "lingerpotwaterbreathing2", + "areapotionwaterbreathlong": "lingerpotwaterbreathing2", + "areapotionwaterbreathextended": "lingerpotwaterbreathing2", + "areapotionwaterbreathex": "lingerpotwaterbreathing2", + "areapotionwaterbreathlevel2": "lingerpotwaterbreathing2", + "areapotionbreathing2": "lingerpotwaterbreathing2", + "areapotionbreathinglong": "lingerpotwaterbreathing2", + "areapotionbreathingextended": "lingerpotwaterbreathing2", + "areapotionbreathingex": "lingerpotwaterbreathing2", + "areapotionbreathinglevel2": "lingerpotwaterbreathing2", + "areapotionbreath2": "lingerpotwaterbreathing2", + "areapotionbreathlong": "lingerpotwaterbreathing2", + "areapotionbreathextended": "lingerpotwaterbreathing2", + "areapotionbreathex": "lingerpotwaterbreathing2", + "areapotionbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathingareapotion2": "lingerpotwaterbreathing2", + "waterbreathingareapotionlong": "lingerpotwaterbreathing2", + "waterbreathingareapotionextended": "lingerpotwaterbreathing2", + "waterbreathingareapotionex": "lingerpotwaterbreathing2", + "waterbreathingareapotionlevel2": "lingerpotwaterbreathing2", + "wbareapotion2": "lingerpotwaterbreathing2", + "wbareapotionlong": "lingerpotwaterbreathing2", + "wbareapotionextended": "lingerpotwaterbreathing2", + "wbareapotionex": "lingerpotwaterbreathing2", + "wbareapotionlevel2": "lingerpotwaterbreathing2", + "waterbreathareapotion2": "lingerpotwaterbreathing2", + "waterbreathareapotionlong": "lingerpotwaterbreathing2", + "waterbreathareapotionextended": "lingerpotwaterbreathing2", + "waterbreathareapotionex": "lingerpotwaterbreathing2", + "waterbreathareapotionlevel2": "lingerpotwaterbreathing2", + "breathingareapotion2": "lingerpotwaterbreathing2", + "breathingareapotionlong": "lingerpotwaterbreathing2", + "breathingareapotionextended": "lingerpotwaterbreathing2", + "breathingareapotionex": "lingerpotwaterbreathing2", + "breathingareapotionlevel2": "lingerpotwaterbreathing2", + "breathareapotion2": "lingerpotwaterbreathing2", + "breathareapotionlong": "lingerpotwaterbreathing2", + "breathareapotionextended": "lingerpotwaterbreathing2", + "breathareapotionex": "lingerpotwaterbreathing2", + "breathareapotionlevel2": "lingerpotwaterbreathing2", + "areapotwaterbreathing2": "lingerpotwaterbreathing2", + "areapotwaterbreathinglong": "lingerpotwaterbreathing2", + "areapotwaterbreathingextended": "lingerpotwaterbreathing2", + "areapotwaterbreathingex": "lingerpotwaterbreathing2", + "areapotwaterbreathinglevel2": "lingerpotwaterbreathing2", + "areapotwb2": "lingerpotwaterbreathing2", + "areapotwblong": "lingerpotwaterbreathing2", + "areapotwbextended": "lingerpotwaterbreathing2", + "areapotwbex": "lingerpotwaterbreathing2", + "areapotwblevel2": "lingerpotwaterbreathing2", + "areapotwaterbreath2": "lingerpotwaterbreathing2", + "areapotwaterbreathlong": "lingerpotwaterbreathing2", + "areapotwaterbreathextended": "lingerpotwaterbreathing2", + "areapotwaterbreathex": "lingerpotwaterbreathing2", + "areapotwaterbreathlevel2": "lingerpotwaterbreathing2", + "areapotbreathing2": "lingerpotwaterbreathing2", + "areapotbreathinglong": "lingerpotwaterbreathing2", + "areapotbreathingextended": "lingerpotwaterbreathing2", + "areapotbreathingex": "lingerpotwaterbreathing2", + "areapotbreathinglevel2": "lingerpotwaterbreathing2", + "areapotbreath2": "lingerpotwaterbreathing2", + "areapotbreathlong": "lingerpotwaterbreathing2", + "areapotbreathextended": "lingerpotwaterbreathing2", + "areapotbreathex": "lingerpotwaterbreathing2", + "areapotbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathingareapot2": "lingerpotwaterbreathing2", + "waterbreathingareapotlong": "lingerpotwaterbreathing2", + "waterbreathingareapotextended": "lingerpotwaterbreathing2", + "waterbreathingareapotex": "lingerpotwaterbreathing2", + "waterbreathingareapotlevel2": "lingerpotwaterbreathing2", + "wbareapot2": "lingerpotwaterbreathing2", + "wbareapotlong": "lingerpotwaterbreathing2", + "wbareapotextended": "lingerpotwaterbreathing2", + "wbareapotex": "lingerpotwaterbreathing2", + "wbareapotlevel2": "lingerpotwaterbreathing2", + "waterbreathareapot2": "lingerpotwaterbreathing2", + "waterbreathareapotlong": "lingerpotwaterbreathing2", + "waterbreathareapotextended": "lingerpotwaterbreathing2", + "waterbreathareapotex": "lingerpotwaterbreathing2", + "waterbreathareapotlevel2": "lingerpotwaterbreathing2", + "breathingareapot2": "lingerpotwaterbreathing2", + "breathingareapotlong": "lingerpotwaterbreathing2", + "breathingareapotextended": "lingerpotwaterbreathing2", + "breathingareapotex": "lingerpotwaterbreathing2", + "breathingareapotlevel2": "lingerpotwaterbreathing2", + "breathareapot2": "lingerpotwaterbreathing2", + "breathareapotlong": "lingerpotwaterbreathing2", + "breathareapotextended": "lingerpotwaterbreathing2", + "breathareapotex": "lingerpotwaterbreathing2", + "breathareapotlevel2": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathing2": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathinglong": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathingextended": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathingex": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathinglevel2": "lingerpotwaterbreathing2", + "cloudpotionwb2": "lingerpotwaterbreathing2", + "cloudpotionwblong": "lingerpotwaterbreathing2", + "cloudpotionwbextended": "lingerpotwaterbreathing2", + "cloudpotionwbex": "lingerpotwaterbreathing2", + "cloudpotionwblevel2": "lingerpotwaterbreathing2", + "cloudpotionwaterbreath2": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathlong": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathextended": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathex": "lingerpotwaterbreathing2", + "cloudpotionwaterbreathlevel2": "lingerpotwaterbreathing2", + "cloudpotionbreathing2": "lingerpotwaterbreathing2", + "cloudpotionbreathinglong": "lingerpotwaterbreathing2", + "cloudpotionbreathingextended": "lingerpotwaterbreathing2", + "cloudpotionbreathingex": "lingerpotwaterbreathing2", + "cloudpotionbreathinglevel2": "lingerpotwaterbreathing2", + "cloudpotionbreath2": "lingerpotwaterbreathing2", + "cloudpotionbreathlong": "lingerpotwaterbreathing2", + "cloudpotionbreathextended": "lingerpotwaterbreathing2", + "cloudpotionbreathex": "lingerpotwaterbreathing2", + "cloudpotionbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathingcloudpotion2": "lingerpotwaterbreathing2", + "waterbreathingcloudpotionlong": "lingerpotwaterbreathing2", + "waterbreathingcloudpotionextended": "lingerpotwaterbreathing2", + "waterbreathingcloudpotionex": "lingerpotwaterbreathing2", + "waterbreathingcloudpotionlevel2": "lingerpotwaterbreathing2", + "wbcloudpotion2": "lingerpotwaterbreathing2", + "wbcloudpotionlong": "lingerpotwaterbreathing2", + "wbcloudpotionextended": "lingerpotwaterbreathing2", + "wbcloudpotionex": "lingerpotwaterbreathing2", + "wbcloudpotionlevel2": "lingerpotwaterbreathing2", + "waterbreathcloudpotion2": "lingerpotwaterbreathing2", + "waterbreathcloudpotionlong": "lingerpotwaterbreathing2", + "waterbreathcloudpotionextended": "lingerpotwaterbreathing2", + "waterbreathcloudpotionex": "lingerpotwaterbreathing2", + "waterbreathcloudpotionlevel2": "lingerpotwaterbreathing2", + "breathingcloudpotion2": "lingerpotwaterbreathing2", + "breathingcloudpotionlong": "lingerpotwaterbreathing2", + "breathingcloudpotionextended": "lingerpotwaterbreathing2", + "breathingcloudpotionex": "lingerpotwaterbreathing2", + "breathingcloudpotionlevel2": "lingerpotwaterbreathing2", + "breathcloudpotion2": "lingerpotwaterbreathing2", + "breathcloudpotionlong": "lingerpotwaterbreathing2", + "breathcloudpotionextended": "lingerpotwaterbreathing2", + "breathcloudpotionex": "lingerpotwaterbreathing2", + "breathcloudpotionlevel2": "lingerpotwaterbreathing2", + "cloudpotwaterbreathing2": "lingerpotwaterbreathing2", + "cloudpotwaterbreathinglong": "lingerpotwaterbreathing2", + "cloudpotwaterbreathingextended": "lingerpotwaterbreathing2", + "cloudpotwaterbreathingex": "lingerpotwaterbreathing2", + "cloudpotwaterbreathinglevel2": "lingerpotwaterbreathing2", + "cloudpotwb2": "lingerpotwaterbreathing2", + "cloudpotwblong": "lingerpotwaterbreathing2", + "cloudpotwbextended": "lingerpotwaterbreathing2", + "cloudpotwbex": "lingerpotwaterbreathing2", + "cloudpotwblevel2": "lingerpotwaterbreathing2", + "cloudpotwaterbreath2": "lingerpotwaterbreathing2", + "cloudpotwaterbreathlong": "lingerpotwaterbreathing2", + "cloudpotwaterbreathextended": "lingerpotwaterbreathing2", + "cloudpotwaterbreathex": "lingerpotwaterbreathing2", + "cloudpotwaterbreathlevel2": "lingerpotwaterbreathing2", + "cloudpotbreathing2": "lingerpotwaterbreathing2", + "cloudpotbreathinglong": "lingerpotwaterbreathing2", + "cloudpotbreathingextended": "lingerpotwaterbreathing2", + "cloudpotbreathingex": "lingerpotwaterbreathing2", + "cloudpotbreathinglevel2": "lingerpotwaterbreathing2", + "cloudpotbreath2": "lingerpotwaterbreathing2", + "cloudpotbreathlong": "lingerpotwaterbreathing2", + "cloudpotbreathextended": "lingerpotwaterbreathing2", + "cloudpotbreathex": "lingerpotwaterbreathing2", + "cloudpotbreathlevel2": "lingerpotwaterbreathing2", + "waterbreathingcloudpot2": "lingerpotwaterbreathing2", + "waterbreathingcloudpotlong": "lingerpotwaterbreathing2", + "waterbreathingcloudpotextended": "lingerpotwaterbreathing2", + "waterbreathingcloudpotex": "lingerpotwaterbreathing2", + "waterbreathingcloudpotlevel2": "lingerpotwaterbreathing2", + "wbcloudpot2": "lingerpotwaterbreathing2", + "wbcloudpotlong": "lingerpotwaterbreathing2", + "wbcloudpotextended": "lingerpotwaterbreathing2", + "wbcloudpotex": "lingerpotwaterbreathing2", + "wbcloudpotlevel2": "lingerpotwaterbreathing2", + "waterbreathcloudpot2": "lingerpotwaterbreathing2", + "waterbreathcloudpotlong": "lingerpotwaterbreathing2", + "waterbreathcloudpotextended": "lingerpotwaterbreathing2", + "waterbreathcloudpotex": "lingerpotwaterbreathing2", + "waterbreathcloudpotlevel2": "lingerpotwaterbreathing2", + "breathingcloudpot2": "lingerpotwaterbreathing2", + "breathingcloudpotlong": "lingerpotwaterbreathing2", + "breathingcloudpotextended": "lingerpotwaterbreathing2", + "breathingcloudpotex": "lingerpotwaterbreathing2", + "breathingcloudpotlevel2": "lingerpotwaterbreathing2", + "breathcloudpot2": "lingerpotwaterbreathing2", + "breathcloudpotlong": "lingerpotwaterbreathing2", + "breathcloudpotextended": "lingerpotwaterbreathing2", + "breathcloudpotex": "lingerpotwaterbreathing2", + "breathcloudpotlevel2": "lingerpotwaterbreathing2", + "arrowwaterbreathing2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_water_breathing", + "type": "WATER_BREATHING", + "upgraded": false, + "extended": true + } + }, + "arrowwaterbreathinglong": "arrowwaterbreathing2", + "arrowwaterbreathingextended": "arrowwaterbreathing2", + "arrowwaterbreathingex": "arrowwaterbreathing2", + "arrowwaterbreathinglevel2": "arrowwaterbreathing2", + "arrowwb2": "arrowwaterbreathing2", + "arrowwblong": "arrowwaterbreathing2", + "arrowwbextended": "arrowwaterbreathing2", + "arrowwbex": "arrowwaterbreathing2", + "arrowwblevel2": "arrowwaterbreathing2", + "arrowwaterbreath2": "arrowwaterbreathing2", + "arrowwaterbreathlong": "arrowwaterbreathing2", + "arrowwaterbreathextended": "arrowwaterbreathing2", + "arrowwaterbreathex": "arrowwaterbreathing2", + "arrowwaterbreathlevel2": "arrowwaterbreathing2", + "arrowbreathing2": "arrowwaterbreathing2", + "arrowbreathinglong": "arrowwaterbreathing2", + "arrowbreathingextended": "arrowwaterbreathing2", + "arrowbreathingex": "arrowwaterbreathing2", + "arrowbreathinglevel2": "arrowwaterbreathing2", + "arrowbreath2": "arrowwaterbreathing2", + "arrowbreathlong": "arrowwaterbreathing2", + "arrowbreathextended": "arrowwaterbreathing2", + "arrowbreathex": "arrowwaterbreathing2", + "arrowbreathlevel2": "arrowwaterbreathing2", + "waterbreathingarrow2": "arrowwaterbreathing2", + "waterbreathingarrowlong": "arrowwaterbreathing2", + "waterbreathingarrowextended": "arrowwaterbreathing2", + "waterbreathingarrowex": "arrowwaterbreathing2", + "waterbreathingarrowlevel2": "arrowwaterbreathing2", + "wbarrow2": "arrowwaterbreathing2", + "wbarrowlong": "arrowwaterbreathing2", + "wbarrowextended": "arrowwaterbreathing2", + "wbarrowex": "arrowwaterbreathing2", + "wbarrowlevel2": "arrowwaterbreathing2", + "waterbreatharrow2": "arrowwaterbreathing2", + "waterbreatharrowlong": "arrowwaterbreathing2", + "waterbreatharrowextended": "arrowwaterbreathing2", + "waterbreatharrowex": "arrowwaterbreathing2", + "waterbreatharrowlevel2": "arrowwaterbreathing2", + "breathingarrow2": "arrowwaterbreathing2", + "breathingarrowlong": "arrowwaterbreathing2", + "breathingarrowextended": "arrowwaterbreathing2", + "breathingarrowex": "arrowwaterbreathing2", + "breathingarrowlevel2": "arrowwaterbreathing2", + "breatharrow2": "arrowwaterbreathing2", + "breatharrowlong": "arrowwaterbreathing2", + "breatharrowextended": "arrowwaterbreathing2", + "breatharrowex": "arrowwaterbreathing2", + "breatharrowlevel2": "arrowwaterbreathing2", + "healingpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "healing", + "type": "INSTANT_HEAL", + "upgraded": false, + "extended": false + } + }, + "healpotion": "healingpotion", + "lifepotion": "healingpotion", + "hpotion": "healingpotion", + "healingpot": "healingpotion", + "healpot": "healingpotion", + "lifepot": "healingpotion", + "hpot": "healingpotion", + "potionofhealing": "healingpotion", + "potionofheal": "healingpotion", + "potionoflife": "healingpotion", + "potionofh": "healingpotion", + "potofhealing": "healingpotion", + "potofheal": "healingpotion", + "potoflife": "healingpotion", + "potofh": "healingpotion", + "splashhealingpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "healing", + "type": "INSTANT_HEAL", + "upgraded": false, + "extended": false + } + }, + "splashhealpotion": "splashhealingpotion", + "splashlifepotion": "splashhealingpotion", + "splashhpotion": "splashhealingpotion", + "splhealingpotion": "splashhealingpotion", + "splhealpotion": "splashhealingpotion", + "spllifepotion": "splashhealingpotion", + "splhpotion": "splashhealingpotion", + "healingsplashpotion": "splashhealingpotion", + "healsplashpotion": "splashhealingpotion", + "lifesplashpotion": "splashhealingpotion", + "hsplashpotion": "splashhealingpotion", + "splashhealingpot": "splashhealingpotion", + "splashhealpot": "splashhealingpotion", + "splashlifepot": "splashhealingpotion", + "splashhpot": "splashhealingpotion", + "splhealingpot": "splashhealingpotion", + "splhealpot": "splashhealingpotion", + "spllifepot": "splashhealingpotion", + "splhpot": "splashhealingpotion", + "healingsplashpot": "splashhealingpotion", + "healsplashpot": "splashhealingpotion", + "lifesplashpot": "splashhealingpotion", + "hsplashpot": "splashhealingpotion", + "lingerpothealing": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "healing", + "type": "INSTANT_HEAL", + "upgraded": false, + "extended": false + } + }, + "lingerpotheal": "lingerpothealing", + "lingerpotlife": "lingerpothealing", + "lingerpoth": "lingerpothealing", + "healinglingerpot": "lingerpothealing", + "heallingerpot": "lingerpothealing", + "lifelingerpot": "lingerpothealing", + "hlingerpot": "lingerpothealing", + "aoepotionhealing": "lingerpothealing", + "aoepotionheal": "lingerpothealing", + "aoepotionlife": "lingerpothealing", + "aoepotionh": "lingerpothealing", + "healingaoepoiont": "lingerpothealing", + "healaoepoiont": "lingerpothealing", + "lifeaoepoiont": "lingerpothealing", + "haoepoiont": "lingerpothealing", + "aoepothealing": "lingerpothealing", + "aoepotheal": "lingerpothealing", + "aoepotlife": "lingerpothealing", + "aoepoth": "lingerpothealing", + "healingaoepot": "lingerpothealing", + "healaoepot": "lingerpothealing", + "lifeaoepot": "lingerpothealing", + "haoepot": "lingerpothealing", + "areapotionhealing": "lingerpothealing", + "areapotionheal": "lingerpothealing", + "areapotionlife": "lingerpothealing", + "areapotionh": "lingerpothealing", + "healingareapotion": "lingerpothealing", + "healareapotion": "lingerpothealing", + "lifeareapotion": "lingerpothealing", + "hareapotion": "lingerpothealing", + "areapothealing": "lingerpothealing", + "areapotheal": "lingerpothealing", + "areapotlife": "lingerpothealing", + "areapoth": "lingerpothealing", + "healingareapot": "lingerpothealing", + "healareapot": "lingerpothealing", + "lifeareapot": "lingerpothealing", + "hareapot": "lingerpothealing", + "cloudpotionhealing": "lingerpothealing", + "cloudpotionheal": "lingerpothealing", + "cloudpotionlife": "lingerpothealing", + "cloudpotionh": "lingerpothealing", + "healingcloudpotion": "lingerpothealing", + "healcloudpotion": "lingerpothealing", + "lifecloudpotion": "lingerpothealing", + "hcloudpotion": "lingerpothealing", + "cloudpothealing": "lingerpothealing", + "cloudpotheal": "lingerpothealing", + "cloudpotlife": "lingerpothealing", + "cloudpoth": "lingerpothealing", + "healingcloudpot": "lingerpothealing", + "healcloudpot": "lingerpothealing", + "lifecloudpot": "lingerpothealing", + "hcloudpot": "lingerpothealing", + "arrowhealing": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "healing", + "type": "INSTANT_HEAL", + "upgraded": false, + "extended": false + } + }, + "arrowheal": "arrowhealing", + "arrowlife": "arrowhealing", + "arrowh": "arrowhealing", + "healingarrow": "arrowhealing", + "healarrow": "arrowhealing", + "lifearrow": "arrowhealing", + "harrow": "arrowhealing", + "healingiipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_healing", + "type": "INSTANT_HEAL", + "upgraded": true, + "extended": false + } + }, + "healingstrongpotion": "healingiipotion", + "healingleveliipotion": "healingiipotion", + "healiipotion": "healingiipotion", + "healstrongpotion": "healingiipotion", + "healleveliipotion": "healingiipotion", + "lifeiipotion": "healingiipotion", + "lifestrongpotion": "healingiipotion", + "lifeleveliipotion": "healingiipotion", + "hiipotion": "healingiipotion", + "hstrongpotion": "healingiipotion", + "hleveliipotion": "healingiipotion", + "healingiipot": "healingiipotion", + "healingstrongpot": "healingiipotion", + "healingleveliipot": "healingiipotion", + "healiipot": "healingiipotion", + "healstrongpot": "healingiipotion", + "healleveliipot": "healingiipotion", + "lifeiipot": "healingiipotion", + "lifestrongpot": "healingiipotion", + "lifeleveliipot": "healingiipotion", + "hiipot": "healingiipotion", + "hstrongpot": "healingiipotion", + "hleveliipot": "healingiipotion", + "potionofhealingii": "healingiipotion", + "potionofhealingstrong": "healingiipotion", + "potionofhealinglevelii": "healingiipotion", + "potionofhealii": "healingiipotion", + "potionofhealstrong": "healingiipotion", + "potionofheallevelii": "healingiipotion", + "potionoflifeii": "healingiipotion", + "potionoflifestrong": "healingiipotion", + "potionoflifelevelii": "healingiipotion", + "potionofhii": "healingiipotion", + "potionofhstrong": "healingiipotion", + "potionofhlevelii": "healingiipotion", + "potofhealingii": "healingiipotion", + "potofhealingstrong": "healingiipotion", + "potofhealinglevelii": "healingiipotion", + "potofhealii": "healingiipotion", + "potofhealstrong": "healingiipotion", + "potofheallevelii": "healingiipotion", + "potoflifeii": "healingiipotion", + "potoflifestrong": "healingiipotion", + "potoflifelevelii": "healingiipotion", + "potofhii": "healingiipotion", + "potofhstrong": "healingiipotion", + "potofhlevelii": "healingiipotion", + "splashhealingiipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_healing", + "type": "INSTANT_HEAL", + "upgraded": true, + "extended": false + } + }, + "splashhealingstrongpotion": "splashhealingiipotion", + "splashhealingleveliipotion": "splashhealingiipotion", + "splashhealiipotion": "splashhealingiipotion", + "splashhealstrongpotion": "splashhealingiipotion", + "splashhealleveliipotion": "splashhealingiipotion", + "splashlifeiipotion": "splashhealingiipotion", + "splashlifestrongpotion": "splashhealingiipotion", + "splashlifeleveliipotion": "splashhealingiipotion", + "splashhiipotion": "splashhealingiipotion", + "splashhstrongpotion": "splashhealingiipotion", + "splashhleveliipotion": "splashhealingiipotion", + "splhealingiipotion": "splashhealingiipotion", + "splhealingstrongpotion": "splashhealingiipotion", + "splhealingleveliipotion": "splashhealingiipotion", + "splhealiipotion": "splashhealingiipotion", + "splhealstrongpotion": "splashhealingiipotion", + "splhealleveliipotion": "splashhealingiipotion", + "spllifeiipotion": "splashhealingiipotion", + "spllifestrongpotion": "splashhealingiipotion", + "spllifeleveliipotion": "splashhealingiipotion", + "splhiipotion": "splashhealingiipotion", + "splhstrongpotion": "splashhealingiipotion", + "splhleveliipotion": "splashhealingiipotion", + "healingiisplashpotion": "splashhealingiipotion", + "healingstrongsplashpotion": "splashhealingiipotion", + "healingleveliisplashpotion": "splashhealingiipotion", + "healiisplashpotion": "splashhealingiipotion", + "healstrongsplashpotion": "splashhealingiipotion", + "healleveliisplashpotion": "splashhealingiipotion", + "lifeiisplashpotion": "splashhealingiipotion", + "lifestrongsplashpotion": "splashhealingiipotion", + "lifeleveliisplashpotion": "splashhealingiipotion", + "hiisplashpotion": "splashhealingiipotion", + "hstrongsplashpotion": "splashhealingiipotion", + "hleveliisplashpotion": "splashhealingiipotion", + "splashhealingiipot": "splashhealingiipotion", + "splashhealingstrongpot": "splashhealingiipotion", + "splashhealingleveliipot": "splashhealingiipotion", + "splashhealiipot": "splashhealingiipotion", + "splashhealstrongpot": "splashhealingiipotion", + "splashhealleveliipot": "splashhealingiipotion", + "splashlifeiipot": "splashhealingiipotion", + "splashlifestrongpot": "splashhealingiipotion", + "splashlifeleveliipot": "splashhealingiipotion", + "splashhiipot": "splashhealingiipotion", + "splashhstrongpot": "splashhealingiipotion", + "splashhleveliipot": "splashhealingiipotion", + "splhealingiipot": "splashhealingiipotion", + "splhealingstrongpot": "splashhealingiipotion", + "splhealingleveliipot": "splashhealingiipotion", + "splhealiipot": "splashhealingiipotion", + "splhealstrongpot": "splashhealingiipotion", + "splhealleveliipot": "splashhealingiipotion", + "spllifeiipot": "splashhealingiipotion", + "spllifestrongpot": "splashhealingiipotion", + "spllifeleveliipot": "splashhealingiipotion", + "splhiipot": "splashhealingiipotion", + "splhstrongpot": "splashhealingiipotion", + "splhleveliipot": "splashhealingiipotion", + "healingiisplashpot": "splashhealingiipotion", + "healingstrongsplashpot": "splashhealingiipotion", + "healingleveliisplashpot": "splashhealingiipotion", + "healiisplashpot": "splashhealingiipotion", + "healstrongsplashpot": "splashhealingiipotion", + "healleveliisplashpot": "splashhealingiipotion", + "lifeiisplashpot": "splashhealingiipotion", + "lifestrongsplashpot": "splashhealingiipotion", + "lifeleveliisplashpot": "splashhealingiipotion", + "hiisplashpot": "splashhealingiipotion", + "hstrongsplashpot": "splashhealingiipotion", + "hleveliisplashpot": "splashhealingiipotion", + "lingerpothealingii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_healing", + "type": "INSTANT_HEAL", + "upgraded": true, + "extended": false + } + }, + "lingerpothealingstrong": "lingerpothealingii", + "lingerpothealinglevelii": "lingerpothealingii", + "lingerpothealii": "lingerpothealingii", + "lingerpothealstrong": "lingerpothealingii", + "lingerpotheallevelii": "lingerpothealingii", + "lingerpotlifeii": "lingerpothealingii", + "lingerpotlifestrong": "lingerpothealingii", + "lingerpotlifelevelii": "lingerpothealingii", + "lingerpothii": "lingerpothealingii", + "lingerpothstrong": "lingerpothealingii", + "lingerpothlevelii": "lingerpothealingii", + "healinglingerpotii": "lingerpothealingii", + "healinglingerpotstrong": "lingerpothealingii", + "healinglingerpotlevelii": "lingerpothealingii", + "heallingerpotii": "lingerpothealingii", + "heallingerpotstrong": "lingerpothealingii", + "heallingerpotlevelii": "lingerpothealingii", + "lifelingerpotii": "lingerpothealingii", + "lifelingerpotstrong": "lingerpothealingii", + "lifelingerpotlevelii": "lingerpothealingii", + "hlingerpotii": "lingerpothealingii", + "hlingerpotstrong": "lingerpothealingii", + "hlingerpotlevelii": "lingerpothealingii", + "aoepotionhealingii": "lingerpothealingii", + "aoepotionhealingstrong": "lingerpothealingii", + "aoepotionhealinglevelii": "lingerpothealingii", + "aoepotionhealii": "lingerpothealingii", + "aoepotionhealstrong": "lingerpothealingii", + "aoepotionheallevelii": "lingerpothealingii", + "aoepotionlifeii": "lingerpothealingii", + "aoepotionlifestrong": "lingerpothealingii", + "aoepotionlifelevelii": "lingerpothealingii", + "aoepotionhii": "lingerpothealingii", + "aoepotionhstrong": "lingerpothealingii", + "aoepotionhlevelii": "lingerpothealingii", + "healingaoepoiontii": "lingerpothealingii", + "healingaoepoiontstrong": "lingerpothealingii", + "healingaoepoiontlevelii": "lingerpothealingii", + "healaoepoiontii": "lingerpothealingii", + "healaoepoiontstrong": "lingerpothealingii", + "healaoepoiontlevelii": "lingerpothealingii", + "lifeaoepoiontii": "lingerpothealingii", + "lifeaoepoiontstrong": "lingerpothealingii", + "lifeaoepoiontlevelii": "lingerpothealingii", + "haoepoiontii": "lingerpothealingii", + "haoepoiontstrong": "lingerpothealingii", + "haoepoiontlevelii": "lingerpothealingii", + "aoepothealingii": "lingerpothealingii", + "aoepothealingstrong": "lingerpothealingii", + "aoepothealinglevelii": "lingerpothealingii", + "aoepothealii": "lingerpothealingii", + "aoepothealstrong": "lingerpothealingii", + "aoepotheallevelii": "lingerpothealingii", + "aoepotlifeii": "lingerpothealingii", + "aoepotlifestrong": "lingerpothealingii", + "aoepotlifelevelii": "lingerpothealingii", + "aoepothii": "lingerpothealingii", + "aoepothstrong": "lingerpothealingii", + "aoepothlevelii": "lingerpothealingii", + "healingaoepotii": "lingerpothealingii", + "healingaoepotstrong": "lingerpothealingii", + "healingaoepotlevelii": "lingerpothealingii", + "healaoepotii": "lingerpothealingii", + "healaoepotstrong": "lingerpothealingii", + "healaoepotlevelii": "lingerpothealingii", + "lifeaoepotii": "lingerpothealingii", + "lifeaoepotstrong": "lingerpothealingii", + "lifeaoepotlevelii": "lingerpothealingii", + "haoepotii": "lingerpothealingii", + "haoepotstrong": "lingerpothealingii", + "haoepotlevelii": "lingerpothealingii", + "areapotionhealingii": "lingerpothealingii", + "areapotionhealingstrong": "lingerpothealingii", + "areapotionhealinglevelii": "lingerpothealingii", + "areapotionhealii": "lingerpothealingii", + "areapotionhealstrong": "lingerpothealingii", + "areapotionheallevelii": "lingerpothealingii", + "areapotionlifeii": "lingerpothealingii", + "areapotionlifestrong": "lingerpothealingii", + "areapotionlifelevelii": "lingerpothealingii", + "areapotionhii": "lingerpothealingii", + "areapotionhstrong": "lingerpothealingii", + "areapotionhlevelii": "lingerpothealingii", + "healingareapotionii": "lingerpothealingii", + "healingareapotionstrong": "lingerpothealingii", + "healingareapotionlevelii": "lingerpothealingii", + "healareapotionii": "lingerpothealingii", + "healareapotionstrong": "lingerpothealingii", + "healareapotionlevelii": "lingerpothealingii", + "lifeareapotionii": "lingerpothealingii", + "lifeareapotionstrong": "lingerpothealingii", + "lifeareapotionlevelii": "lingerpothealingii", + "hareapotionii": "lingerpothealingii", + "hareapotionstrong": "lingerpothealingii", + "hareapotionlevelii": "lingerpothealingii", + "areapothealingii": "lingerpothealingii", + "areapothealingstrong": "lingerpothealingii", + "areapothealinglevelii": "lingerpothealingii", + "areapothealii": "lingerpothealingii", + "areapothealstrong": "lingerpothealingii", + "areapotheallevelii": "lingerpothealingii", + "areapotlifeii": "lingerpothealingii", + "areapotlifestrong": "lingerpothealingii", + "areapotlifelevelii": "lingerpothealingii", + "areapothii": "lingerpothealingii", + "areapothstrong": "lingerpothealingii", + "areapothlevelii": "lingerpothealingii", + "healingareapotii": "lingerpothealingii", + "healingareapotstrong": "lingerpothealingii", + "healingareapotlevelii": "lingerpothealingii", + "healareapotii": "lingerpothealingii", + "healareapotstrong": "lingerpothealingii", + "healareapotlevelii": "lingerpothealingii", + "lifeareapotii": "lingerpothealingii", + "lifeareapotstrong": "lingerpothealingii", + "lifeareapotlevelii": "lingerpothealingii", + "hareapotii": "lingerpothealingii", + "hareapotstrong": "lingerpothealingii", + "hareapotlevelii": "lingerpothealingii", + "cloudpotionhealingii": "lingerpothealingii", + "cloudpotionhealingstrong": "lingerpothealingii", + "cloudpotionhealinglevelii": "lingerpothealingii", + "cloudpotionhealii": "lingerpothealingii", + "cloudpotionhealstrong": "lingerpothealingii", + "cloudpotionheallevelii": "lingerpothealingii", + "cloudpotionlifeii": "lingerpothealingii", + "cloudpotionlifestrong": "lingerpothealingii", + "cloudpotionlifelevelii": "lingerpothealingii", + "cloudpotionhii": "lingerpothealingii", + "cloudpotionhstrong": "lingerpothealingii", + "cloudpotionhlevelii": "lingerpothealingii", + "healingcloudpotionii": "lingerpothealingii", + "healingcloudpotionstrong": "lingerpothealingii", + "healingcloudpotionlevelii": "lingerpothealingii", + "healcloudpotionii": "lingerpothealingii", + "healcloudpotionstrong": "lingerpothealingii", + "healcloudpotionlevelii": "lingerpothealingii", + "lifecloudpotionii": "lingerpothealingii", + "lifecloudpotionstrong": "lingerpothealingii", + "lifecloudpotionlevelii": "lingerpothealingii", + "hcloudpotionii": "lingerpothealingii", + "hcloudpotionstrong": "lingerpothealingii", + "hcloudpotionlevelii": "lingerpothealingii", + "cloudpothealingii": "lingerpothealingii", + "cloudpothealingstrong": "lingerpothealingii", + "cloudpothealinglevelii": "lingerpothealingii", + "cloudpothealii": "lingerpothealingii", + "cloudpothealstrong": "lingerpothealingii", + "cloudpotheallevelii": "lingerpothealingii", + "cloudpotlifeii": "lingerpothealingii", + "cloudpotlifestrong": "lingerpothealingii", + "cloudpotlifelevelii": "lingerpothealingii", + "cloudpothii": "lingerpothealingii", + "cloudpothstrong": "lingerpothealingii", + "cloudpothlevelii": "lingerpothealingii", + "healingcloudpotii": "lingerpothealingii", + "healingcloudpotstrong": "lingerpothealingii", + "healingcloudpotlevelii": "lingerpothealingii", + "healcloudpotii": "lingerpothealingii", + "healcloudpotstrong": "lingerpothealingii", + "healcloudpotlevelii": "lingerpothealingii", + "lifecloudpotii": "lingerpothealingii", + "lifecloudpotstrong": "lingerpothealingii", + "lifecloudpotlevelii": "lingerpothealingii", + "hcloudpotii": "lingerpothealingii", + "hcloudpotstrong": "lingerpothealingii", + "hcloudpotlevelii": "lingerpothealingii", + "arrowhealingii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_healing", + "type": "INSTANT_HEAL", + "upgraded": true, + "extended": false + } + }, + "arrowhealingstrong": "arrowhealingii", + "arrowhealinglevelii": "arrowhealingii", + "arrowhealii": "arrowhealingii", + "arrowhealstrong": "arrowhealingii", + "arrowheallevelii": "arrowhealingii", + "arrowlifeii": "arrowhealingii", + "arrowlifestrong": "arrowhealingii", + "arrowlifelevelii": "arrowhealingii", + "arrowhii": "arrowhealingii", + "arrowhstrong": "arrowhealingii", + "arrowhlevelii": "arrowhealingii", + "healingarrowii": "arrowhealingii", + "healingarrowstrong": "arrowhealingii", + "healingarrowlevelii": "arrowhealingii", + "healarrowii": "arrowhealingii", + "healarrowstrong": "arrowhealingii", + "healarrowlevelii": "arrowhealingii", + "lifearrowii": "arrowhealingii", + "lifearrowstrong": "arrowhealingii", + "lifearrowlevelii": "arrowhealingii", + "harrowii": "arrowhealingii", + "harrowstrong": "arrowhealingii", + "harrowlevelii": "arrowhealingii", + "harmingpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "harming", + "type": "INSTANT_DAMAGE", + "upgraded": false, + "extended": false + } + }, + "damagepotion": "harmingpotion", + "dmgpotion": "harmingpotion", + "dpotion": "harmingpotion", + "harmingpot": "harmingpotion", + "damagepot": "harmingpotion", + "dmgpot": "harmingpotion", + "dpot": "harmingpotion", + "potionofharming": "harmingpotion", + "potionofdamage": "harmingpotion", + "potionofdmg": "harmingpotion", + "potionofd": "harmingpotion", + "potofharming": "harmingpotion", + "potofdamage": "harmingpotion", + "potofdmg": "harmingpotion", + "potofd": "harmingpotion", + "splashharmingpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "harming", + "type": "INSTANT_DAMAGE", + "upgraded": false, + "extended": false + } + }, + "splashdamagepotion": "splashharmingpotion", + "splashdmgpotion": "splashharmingpotion", + "splashdpotion": "splashharmingpotion", + "splharmingpotion": "splashharmingpotion", + "spldamagepotion": "splashharmingpotion", + "spldmgpotion": "splashharmingpotion", + "spldpotion": "splashharmingpotion", + "harmingsplashpotion": "splashharmingpotion", + "damagesplashpotion": "splashharmingpotion", + "dmgsplashpotion": "splashharmingpotion", + "dsplashpotion": "splashharmingpotion", + "splashharmingpot": "splashharmingpotion", + "splashdamagepot": "splashharmingpotion", + "splashdmgpot": "splashharmingpotion", + "splashdpot": "splashharmingpotion", + "splharmingpot": "splashharmingpotion", + "spldamagepot": "splashharmingpotion", + "spldmgpot": "splashharmingpotion", + "spldpot": "splashharmingpotion", + "harmingsplashpot": "splashharmingpotion", + "damagesplashpot": "splashharmingpotion", + "dmgsplashpot": "splashharmingpotion", + "dsplashpot": "splashharmingpotion", + "lingerpotharming": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "harming", + "type": "INSTANT_DAMAGE", + "upgraded": false, + "extended": false + } + }, + "lingerpotdamage": "lingerpotharming", + "lingerpotdmg": "lingerpotharming", + "lingerpotd": "lingerpotharming", + "harminglingerpot": "lingerpotharming", + "damagelingerpot": "lingerpotharming", + "dmglingerpot": "lingerpotharming", + "dlingerpot": "lingerpotharming", + "aoepotionharming": "lingerpotharming", + "aoepotiondamage": "lingerpotharming", + "aoepotiondmg": "lingerpotharming", + "aoepotiond": "lingerpotharming", + "harmingaoepoiont": "lingerpotharming", + "damageaoepoiont": "lingerpotharming", + "dmgaoepoiont": "lingerpotharming", + "daoepoiont": "lingerpotharming", + "aoepotharming": "lingerpotharming", + "aoepotdamage": "lingerpotharming", + "aoepotdmg": "lingerpotharming", + "aoepotd": "lingerpotharming", + "harmingaoepot": "lingerpotharming", + "damageaoepot": "lingerpotharming", + "dmgaoepot": "lingerpotharming", + "daoepot": "lingerpotharming", + "areapotionharming": "lingerpotharming", + "areapotiondamage": "lingerpotharming", + "areapotiondmg": "lingerpotharming", + "areapotiond": "lingerpotharming", + "harmingareapotion": "lingerpotharming", + "damageareapotion": "lingerpotharming", + "dmgareapotion": "lingerpotharming", + "dareapotion": "lingerpotharming", + "areapotharming": "lingerpotharming", + "areapotdamage": "lingerpotharming", + "areapotdmg": "lingerpotharming", + "areapotd": "lingerpotharming", + "harmingareapot": "lingerpotharming", + "damageareapot": "lingerpotharming", + "dmgareapot": "lingerpotharming", + "dareapot": "lingerpotharming", + "cloudpotionharming": "lingerpotharming", + "cloudpotiondamage": "lingerpotharming", + "cloudpotiondmg": "lingerpotharming", + "cloudpotiond": "lingerpotharming", + "harmingcloudpotion": "lingerpotharming", + "damagecloudpotion": "lingerpotharming", + "dmgcloudpotion": "lingerpotharming", + "dcloudpotion": "lingerpotharming", + "cloudpotharming": "lingerpotharming", + "cloudpotdamage": "lingerpotharming", + "cloudpotdmg": "lingerpotharming", + "cloudpotd": "lingerpotharming", + "harmingcloudpot": "lingerpotharming", + "damagecloudpot": "lingerpotharming", + "dmgcloudpot": "lingerpotharming", + "dcloudpot": "lingerpotharming", + "arrowharming": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "harming", + "type": "INSTANT_DAMAGE", + "upgraded": false, + "extended": false + } + }, + "arrowdamage": "arrowharming", + "arrowdmg": "arrowharming", + "arrowd": "arrowharming", + "harmingarrow": "arrowharming", + "damagearrow": "arrowharming", + "dmgarrow": "arrowharming", + "darrow": "arrowharming", + "harmingiipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_harming", + "type": "INSTANT_DAMAGE", + "upgraded": true, + "extended": false + } + }, + "harmingstrongpotion": "harmingiipotion", + "harmingleveliipotion": "harmingiipotion", + "damageiipotion": "harmingiipotion", + "damagestrongpotion": "harmingiipotion", + "damageleveliipotion": "harmingiipotion", + "dmgiipotion": "harmingiipotion", + "dmgstrongpotion": "harmingiipotion", + "dmgleveliipotion": "harmingiipotion", + "diipotion": "harmingiipotion", + "dstrongpotion": "harmingiipotion", + "dleveliipotion": "harmingiipotion", + "harmingiipot": "harmingiipotion", + "harmingstrongpot": "harmingiipotion", + "harmingleveliipot": "harmingiipotion", + "damageiipot": "harmingiipotion", + "damagestrongpot": "harmingiipotion", + "damageleveliipot": "harmingiipotion", + "dmgiipot": "harmingiipotion", + "dmgstrongpot": "harmingiipotion", + "dmgleveliipot": "harmingiipotion", + "diipot": "harmingiipotion", + "dstrongpot": "harmingiipotion", + "dleveliipot": "harmingiipotion", + "potionofharmingii": "harmingiipotion", + "potionofharmingstrong": "harmingiipotion", + "potionofharminglevelii": "harmingiipotion", + "potionofdamageii": "harmingiipotion", + "potionofdamagestrong": "harmingiipotion", + "potionofdamagelevelii": "harmingiipotion", + "potionofdmgii": "harmingiipotion", + "potionofdmgstrong": "harmingiipotion", + "potionofdmglevelii": "harmingiipotion", + "potionofdii": "harmingiipotion", + "potionofdstrong": "harmingiipotion", + "potionofdlevelii": "harmingiipotion", + "potofharmingii": "harmingiipotion", + "potofharmingstrong": "harmingiipotion", + "potofharminglevelii": "harmingiipotion", + "potofdamageii": "harmingiipotion", + "potofdamagestrong": "harmingiipotion", + "potofdamagelevelii": "harmingiipotion", + "potofdmgii": "harmingiipotion", + "potofdmgstrong": "harmingiipotion", + "potofdmglevelii": "harmingiipotion", + "potofdii": "harmingiipotion", + "potofdstrong": "harmingiipotion", + "potofdlevelii": "harmingiipotion", + "splashharmingiipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_harming", + "type": "INSTANT_DAMAGE", + "upgraded": true, + "extended": false + } + }, + "splashharmingstrongpotion": "splashharmingiipotion", + "splashharmingleveliipotion": "splashharmingiipotion", + "splashdamageiipotion": "splashharmingiipotion", + "splashdamagestrongpotion": "splashharmingiipotion", + "splashdamageleveliipotion": "splashharmingiipotion", + "splashdmgiipotion": "splashharmingiipotion", + "splashdmgstrongpotion": "splashharmingiipotion", + "splashdmgleveliipotion": "splashharmingiipotion", + "splashdiipotion": "splashharmingiipotion", + "splashdstrongpotion": "splashharmingiipotion", + "splashdleveliipotion": "splashharmingiipotion", + "splharmingiipotion": "splashharmingiipotion", + "splharmingstrongpotion": "splashharmingiipotion", + "splharmingleveliipotion": "splashharmingiipotion", + "spldamageiipotion": "splashharmingiipotion", + "spldamagestrongpotion": "splashharmingiipotion", + "spldamageleveliipotion": "splashharmingiipotion", + "spldmgiipotion": "splashharmingiipotion", + "spldmgstrongpotion": "splashharmingiipotion", + "spldmgleveliipotion": "splashharmingiipotion", + "spldiipotion": "splashharmingiipotion", + "spldstrongpotion": "splashharmingiipotion", + "spldleveliipotion": "splashharmingiipotion", + "harmingiisplashpotion": "splashharmingiipotion", + "harmingstrongsplashpotion": "splashharmingiipotion", + "harmingleveliisplashpotion": "splashharmingiipotion", + "damageiisplashpotion": "splashharmingiipotion", + "damagestrongsplashpotion": "splashharmingiipotion", + "damageleveliisplashpotion": "splashharmingiipotion", + "dmgiisplashpotion": "splashharmingiipotion", + "dmgstrongsplashpotion": "splashharmingiipotion", + "dmgleveliisplashpotion": "splashharmingiipotion", + "diisplashpotion": "splashharmingiipotion", + "dstrongsplashpotion": "splashharmingiipotion", + "dleveliisplashpotion": "splashharmingiipotion", + "splashharmingiipot": "splashharmingiipotion", + "splashharmingstrongpot": "splashharmingiipotion", + "splashharmingleveliipot": "splashharmingiipotion", + "splashdamageiipot": "splashharmingiipotion", + "splashdamagestrongpot": "splashharmingiipotion", + "splashdamageleveliipot": "splashharmingiipotion", + "splashdmgiipot": "splashharmingiipotion", + "splashdmgstrongpot": "splashharmingiipotion", + "splashdmgleveliipot": "splashharmingiipotion", + "splashdiipot": "splashharmingiipotion", + "splashdstrongpot": "splashharmingiipotion", + "splashdleveliipot": "splashharmingiipotion", + "splharmingiipot": "splashharmingiipotion", + "splharmingstrongpot": "splashharmingiipotion", + "splharmingleveliipot": "splashharmingiipotion", + "spldamageiipot": "splashharmingiipotion", + "spldamagestrongpot": "splashharmingiipotion", + "spldamageleveliipot": "splashharmingiipotion", + "spldmgiipot": "splashharmingiipotion", + "spldmgstrongpot": "splashharmingiipotion", + "spldmgleveliipot": "splashharmingiipotion", + "spldiipot": "splashharmingiipotion", + "spldstrongpot": "splashharmingiipotion", + "spldleveliipot": "splashharmingiipotion", + "harmingiisplashpot": "splashharmingiipotion", + "harmingstrongsplashpot": "splashharmingiipotion", + "harmingleveliisplashpot": "splashharmingiipotion", + "damageiisplashpot": "splashharmingiipotion", + "damagestrongsplashpot": "splashharmingiipotion", + "damageleveliisplashpot": "splashharmingiipotion", + "dmgiisplashpot": "splashharmingiipotion", + "dmgstrongsplashpot": "splashharmingiipotion", + "dmgleveliisplashpot": "splashharmingiipotion", + "diisplashpot": "splashharmingiipotion", + "dstrongsplashpot": "splashharmingiipotion", + "dleveliisplashpot": "splashharmingiipotion", + "lingerpotharmingii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_harming", + "type": "INSTANT_DAMAGE", + "upgraded": true, + "extended": false + } + }, + "lingerpotharmingstrong": "lingerpotharmingii", + "lingerpotharminglevelii": "lingerpotharmingii", + "lingerpotdamageii": "lingerpotharmingii", + "lingerpotdamagestrong": "lingerpotharmingii", + "lingerpotdamagelevelii": "lingerpotharmingii", + "lingerpotdmgii": "lingerpotharmingii", + "lingerpotdmgstrong": "lingerpotharmingii", + "lingerpotdmglevelii": "lingerpotharmingii", + "lingerpotdii": "lingerpotharmingii", + "lingerpotdstrong": "lingerpotharmingii", + "lingerpotdlevelii": "lingerpotharmingii", + "harminglingerpotii": "lingerpotharmingii", + "harminglingerpotstrong": "lingerpotharmingii", + "harminglingerpotlevelii": "lingerpotharmingii", + "damagelingerpotii": "lingerpotharmingii", + "damagelingerpotstrong": "lingerpotharmingii", + "damagelingerpotlevelii": "lingerpotharmingii", + "dmglingerpotii": "lingerpotharmingii", + "dmglingerpotstrong": "lingerpotharmingii", + "dmglingerpotlevelii": "lingerpotharmingii", + "dlingerpotii": "lingerpotharmingii", + "dlingerpotstrong": "lingerpotharmingii", + "dlingerpotlevelii": "lingerpotharmingii", + "aoepotionharmingii": "lingerpotharmingii", + "aoepotionharmingstrong": "lingerpotharmingii", + "aoepotionharminglevelii": "lingerpotharmingii", + "aoepotiondamageii": "lingerpotharmingii", + "aoepotiondamagestrong": "lingerpotharmingii", + "aoepotiondamagelevelii": "lingerpotharmingii", + "aoepotiondmgii": "lingerpotharmingii", + "aoepotiondmgstrong": "lingerpotharmingii", + "aoepotiondmglevelii": "lingerpotharmingii", + "aoepotiondii": "lingerpotharmingii", + "aoepotiondstrong": "lingerpotharmingii", + "aoepotiondlevelii": "lingerpotharmingii", + "harmingaoepoiontii": "lingerpotharmingii", + "harmingaoepoiontstrong": "lingerpotharmingii", + "harmingaoepoiontlevelii": "lingerpotharmingii", + "damageaoepoiontii": "lingerpotharmingii", + "damageaoepoiontstrong": "lingerpotharmingii", + "damageaoepoiontlevelii": "lingerpotharmingii", + "dmgaoepoiontii": "lingerpotharmingii", + "dmgaoepoiontstrong": "lingerpotharmingii", + "dmgaoepoiontlevelii": "lingerpotharmingii", + "daoepoiontii": "lingerpotharmingii", + "daoepoiontstrong": "lingerpotharmingii", + "daoepoiontlevelii": "lingerpotharmingii", + "aoepotharmingii": "lingerpotharmingii", + "aoepotharmingstrong": "lingerpotharmingii", + "aoepotharminglevelii": "lingerpotharmingii", + "aoepotdamageii": "lingerpotharmingii", + "aoepotdamagestrong": "lingerpotharmingii", + "aoepotdamagelevelii": "lingerpotharmingii", + "aoepotdmgii": "lingerpotharmingii", + "aoepotdmgstrong": "lingerpotharmingii", + "aoepotdmglevelii": "lingerpotharmingii", + "aoepotdii": "lingerpotharmingii", + "aoepotdstrong": "lingerpotharmingii", + "aoepotdlevelii": "lingerpotharmingii", + "harmingaoepotii": "lingerpotharmingii", + "harmingaoepotstrong": "lingerpotharmingii", + "harmingaoepotlevelii": "lingerpotharmingii", + "damageaoepotii": "lingerpotharmingii", + "damageaoepotstrong": "lingerpotharmingii", + "damageaoepotlevelii": "lingerpotharmingii", + "dmgaoepotii": "lingerpotharmingii", + "dmgaoepotstrong": "lingerpotharmingii", + "dmgaoepotlevelii": "lingerpotharmingii", + "daoepotii": "lingerpotharmingii", + "daoepotstrong": "lingerpotharmingii", + "daoepotlevelii": "lingerpotharmingii", + "areapotionharmingii": "lingerpotharmingii", + "areapotionharmingstrong": "lingerpotharmingii", + "areapotionharminglevelii": "lingerpotharmingii", + "areapotiondamageii": "lingerpotharmingii", + "areapotiondamagestrong": "lingerpotharmingii", + "areapotiondamagelevelii": "lingerpotharmingii", + "areapotiondmgii": "lingerpotharmingii", + "areapotiondmgstrong": "lingerpotharmingii", + "areapotiondmglevelii": "lingerpotharmingii", + "areapotiondii": "lingerpotharmingii", + "areapotiondstrong": "lingerpotharmingii", + "areapotiondlevelii": "lingerpotharmingii", + "harmingareapotionii": "lingerpotharmingii", + "harmingareapotionstrong": "lingerpotharmingii", + "harmingareapotionlevelii": "lingerpotharmingii", + "damageareapotionii": "lingerpotharmingii", + "damageareapotionstrong": "lingerpotharmingii", + "damageareapotionlevelii": "lingerpotharmingii", + "dmgareapotionii": "lingerpotharmingii", + "dmgareapotionstrong": "lingerpotharmingii", + "dmgareapotionlevelii": "lingerpotharmingii", + "dareapotionii": "lingerpotharmingii", + "dareapotionstrong": "lingerpotharmingii", + "dareapotionlevelii": "lingerpotharmingii", + "areapotharmingii": "lingerpotharmingii", + "areapotharmingstrong": "lingerpotharmingii", + "areapotharminglevelii": "lingerpotharmingii", + "areapotdamageii": "lingerpotharmingii", + "areapotdamagestrong": "lingerpotharmingii", + "areapotdamagelevelii": "lingerpotharmingii", + "areapotdmgii": "lingerpotharmingii", + "areapotdmgstrong": "lingerpotharmingii", + "areapotdmglevelii": "lingerpotharmingii", + "areapotdii": "lingerpotharmingii", + "areapotdstrong": "lingerpotharmingii", + "areapotdlevelii": "lingerpotharmingii", + "harmingareapotii": "lingerpotharmingii", + "harmingareapotstrong": "lingerpotharmingii", + "harmingareapotlevelii": "lingerpotharmingii", + "damageareapotii": "lingerpotharmingii", + "damageareapotstrong": "lingerpotharmingii", + "damageareapotlevelii": "lingerpotharmingii", + "dmgareapotii": "lingerpotharmingii", + "dmgareapotstrong": "lingerpotharmingii", + "dmgareapotlevelii": "lingerpotharmingii", + "dareapotii": "lingerpotharmingii", + "dareapotstrong": "lingerpotharmingii", + "dareapotlevelii": "lingerpotharmingii", + "cloudpotionharmingii": "lingerpotharmingii", + "cloudpotionharmingstrong": "lingerpotharmingii", + "cloudpotionharminglevelii": "lingerpotharmingii", + "cloudpotiondamageii": "lingerpotharmingii", + "cloudpotiondamagestrong": "lingerpotharmingii", + "cloudpotiondamagelevelii": "lingerpotharmingii", + "cloudpotiondmgii": "lingerpotharmingii", + "cloudpotiondmgstrong": "lingerpotharmingii", + "cloudpotiondmglevelii": "lingerpotharmingii", + "cloudpotiondii": "lingerpotharmingii", + "cloudpotiondstrong": "lingerpotharmingii", + "cloudpotiondlevelii": "lingerpotharmingii", + "harmingcloudpotionii": "lingerpotharmingii", + "harmingcloudpotionstrong": "lingerpotharmingii", + "harmingcloudpotionlevelii": "lingerpotharmingii", + "damagecloudpotionii": "lingerpotharmingii", + "damagecloudpotionstrong": "lingerpotharmingii", + "damagecloudpotionlevelii": "lingerpotharmingii", + "dmgcloudpotionii": "lingerpotharmingii", + "dmgcloudpotionstrong": "lingerpotharmingii", + "dmgcloudpotionlevelii": "lingerpotharmingii", + "dcloudpotionii": "lingerpotharmingii", + "dcloudpotionstrong": "lingerpotharmingii", + "dcloudpotionlevelii": "lingerpotharmingii", + "cloudpotharmingii": "lingerpotharmingii", + "cloudpotharmingstrong": "lingerpotharmingii", + "cloudpotharminglevelii": "lingerpotharmingii", + "cloudpotdamageii": "lingerpotharmingii", + "cloudpotdamagestrong": "lingerpotharmingii", + "cloudpotdamagelevelii": "lingerpotharmingii", + "cloudpotdmgii": "lingerpotharmingii", + "cloudpotdmgstrong": "lingerpotharmingii", + "cloudpotdmglevelii": "lingerpotharmingii", + "cloudpotdii": "lingerpotharmingii", + "cloudpotdstrong": "lingerpotharmingii", + "cloudpotdlevelii": "lingerpotharmingii", + "harmingcloudpotii": "lingerpotharmingii", + "harmingcloudpotstrong": "lingerpotharmingii", + "harmingcloudpotlevelii": "lingerpotharmingii", + "damagecloudpotii": "lingerpotharmingii", + "damagecloudpotstrong": "lingerpotharmingii", + "damagecloudpotlevelii": "lingerpotharmingii", + "dmgcloudpotii": "lingerpotharmingii", + "dmgcloudpotstrong": "lingerpotharmingii", + "dmgcloudpotlevelii": "lingerpotharmingii", + "dcloudpotii": "lingerpotharmingii", + "dcloudpotstrong": "lingerpotharmingii", + "dcloudpotlevelii": "lingerpotharmingii", + "arrowharmingii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_harming", + "type": "INSTANT_DAMAGE", + "upgraded": true, + "extended": false + } + }, + "arrowharmingstrong": "arrowharmingii", + "arrowharminglevelii": "arrowharmingii", + "arrowdamageii": "arrowharmingii", + "arrowdamagestrong": "arrowharmingii", + "arrowdamagelevelii": "arrowharmingii", + "arrowdmgii": "arrowharmingii", + "arrowdmgstrong": "arrowharmingii", + "arrowdmglevelii": "arrowharmingii", + "arrowdii": "arrowharmingii", + "arrowdstrong": "arrowharmingii", + "arrowdlevelii": "arrowharmingii", + "harmingarrowii": "arrowharmingii", + "harmingarrowstrong": "arrowharmingii", + "harmingarrowlevelii": "arrowharmingii", + "damagearrowii": "arrowharmingii", + "damagearrowstrong": "arrowharmingii", + "damagearrowlevelii": "arrowharmingii", + "dmgarrowii": "arrowharmingii", + "dmgarrowstrong": "arrowharmingii", + "dmgarrowlevelii": "arrowharmingii", + "darrowii": "arrowharmingii", + "darrowstrong": "arrowharmingii", + "darrowlevelii": "arrowharmingii", + "poisonpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "poison", + "type": "POISON", + "upgraded": false, + "extended": false + } + }, + "acidpotion": "poisonpotion", + "ppotion": "poisonpotion", + "poisonpot": "poisonpotion", + "acidpot": "poisonpotion", + "ppot": "poisonpotion", + "potionofpoison": "poisonpotion", + "potionofacid": "poisonpotion", + "potionofp": "poisonpotion", + "potofpoison": "poisonpotion", + "potofacid": "poisonpotion", + "potofp": "poisonpotion", + "splashpoisonpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "poison", + "type": "POISON", + "upgraded": false, + "extended": false + } + }, + "splashacidpotion": "splashpoisonpotion", + "splashppotion": "splashpoisonpotion", + "splpoisonpotion": "splashpoisonpotion", + "splacidpotion": "splashpoisonpotion", + "splppotion": "splashpoisonpotion", + "poisonsplashpotion": "splashpoisonpotion", + "acidsplashpotion": "splashpoisonpotion", + "psplashpotion": "splashpoisonpotion", + "splashpoisonpot": "splashpoisonpotion", + "splashacidpot": "splashpoisonpotion", + "splashppot": "splashpoisonpotion", + "splpoisonpot": "splashpoisonpotion", + "splacidpot": "splashpoisonpotion", + "splppot": "splashpoisonpotion", + "poisonsplashpot": "splashpoisonpotion", + "acidsplashpot": "splashpoisonpotion", + "psplashpot": "splashpoisonpotion", + "lingerpotpoison": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "poison", + "type": "POISON", + "upgraded": false, + "extended": false + } + }, + "lingerpotacid": "lingerpotpoison", + "lingerpotp": "lingerpotpoison", + "poisonlingerpot": "lingerpotpoison", + "acidlingerpot": "lingerpotpoison", + "plingerpot": "lingerpotpoison", + "aoepotionpoison": "lingerpotpoison", + "aoepotionacid": "lingerpotpoison", + "aoepotionp": "lingerpotpoison", + "poisonaoepoiont": "lingerpotpoison", + "acidaoepoiont": "lingerpotpoison", + "paoepoiont": "lingerpotpoison", + "aoepotpoison": "lingerpotpoison", + "aoepotacid": "lingerpotpoison", + "aoepotp": "lingerpotpoison", + "poisonaoepot": "lingerpotpoison", + "acidaoepot": "lingerpotpoison", + "paoepot": "lingerpotpoison", + "areapotionpoison": "lingerpotpoison", + "areapotionacid": "lingerpotpoison", + "areapotionp": "lingerpotpoison", + "poisonareapotion": "lingerpotpoison", + "acidareapotion": "lingerpotpoison", + "pareapotion": "lingerpotpoison", + "areapotpoison": "lingerpotpoison", + "areapotacid": "lingerpotpoison", + "areapotp": "lingerpotpoison", + "poisonareapot": "lingerpotpoison", + "acidareapot": "lingerpotpoison", + "pareapot": "lingerpotpoison", + "cloudpotionpoison": "lingerpotpoison", + "cloudpotionacid": "lingerpotpoison", + "cloudpotionp": "lingerpotpoison", + "poisoncloudpotion": "lingerpotpoison", + "acidcloudpotion": "lingerpotpoison", + "pcloudpotion": "lingerpotpoison", + "cloudpotpoison": "lingerpotpoison", + "cloudpotacid": "lingerpotpoison", + "cloudpotp": "lingerpotpoison", + "poisoncloudpot": "lingerpotpoison", + "acidcloudpot": "lingerpotpoison", + "pcloudpot": "lingerpotpoison", + "arrowpoison": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "poison", + "type": "POISON", + "upgraded": false, + "extended": false + } + }, + "arrowacid": "arrowpoison", + "arrowp": "arrowpoison", + "poisonarrow": "arrowpoison", + "acidarrow": "arrowpoison", + "parrow": "arrowpoison", + "poisoniipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_poison", + "type": "POISON", + "upgraded": true, + "extended": false + } + }, + "poisonstrongpotion": "poisoniipotion", + "poisonleveliipotion": "poisoniipotion", + "acidiipotion": "poisoniipotion", + "acidstrongpotion": "poisoniipotion", + "acidleveliipotion": "poisoniipotion", + "piipotion": "poisoniipotion", + "pstrongpotion": "poisoniipotion", + "pleveliipotion": "poisoniipotion", + "poisoniipot": "poisoniipotion", + "poisonstrongpot": "poisoniipotion", + "poisonleveliipot": "poisoniipotion", + "acidiipot": "poisoniipotion", + "acidstrongpot": "poisoniipotion", + "acidleveliipot": "poisoniipotion", + "piipot": "poisoniipotion", + "pstrongpot": "poisoniipotion", + "pleveliipot": "poisoniipotion", + "potionofpoisonii": "poisoniipotion", + "potionofpoisonstrong": "poisoniipotion", + "potionofpoisonlevelii": "poisoniipotion", + "potionofacidii": "poisoniipotion", + "potionofacidstrong": "poisoniipotion", + "potionofacidlevelii": "poisoniipotion", + "potionofpii": "poisoniipotion", + "potionofpstrong": "poisoniipotion", + "potionofplevelii": "poisoniipotion", + "potofpoisonii": "poisoniipotion", + "potofpoisonstrong": "poisoniipotion", + "potofpoisonlevelii": "poisoniipotion", + "potofacidii": "poisoniipotion", + "potofacidstrong": "poisoniipotion", + "potofacidlevelii": "poisoniipotion", + "potofpii": "poisoniipotion", + "potofpstrong": "poisoniipotion", + "potofplevelii": "poisoniipotion", + "splashpoisoniipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_poison", + "type": "POISON", + "upgraded": true, + "extended": false + } + }, + "splashpoisonstrongpotion": "splashpoisoniipotion", + "splashpoisonleveliipotion": "splashpoisoniipotion", + "splashacidiipotion": "splashpoisoniipotion", + "splashacidstrongpotion": "splashpoisoniipotion", + "splashacidleveliipotion": "splashpoisoniipotion", + "splashpiipotion": "splashpoisoniipotion", + "splashpstrongpotion": "splashpoisoniipotion", + "splashpleveliipotion": "splashpoisoniipotion", + "splpoisoniipotion": "splashpoisoniipotion", + "splpoisonstrongpotion": "splashpoisoniipotion", + "splpoisonleveliipotion": "splashpoisoniipotion", + "splacidiipotion": "splashpoisoniipotion", + "splacidstrongpotion": "splashpoisoniipotion", + "splacidleveliipotion": "splashpoisoniipotion", + "splpiipotion": "splashpoisoniipotion", + "splpstrongpotion": "splashpoisoniipotion", + "splpleveliipotion": "splashpoisoniipotion", + "poisoniisplashpotion": "splashpoisoniipotion", + "poisonstrongsplashpotion": "splashpoisoniipotion", + "poisonleveliisplashpotion": "splashpoisoniipotion", + "acidiisplashpotion": "splashpoisoniipotion", + "acidstrongsplashpotion": "splashpoisoniipotion", + "acidleveliisplashpotion": "splashpoisoniipotion", + "piisplashpotion": "splashpoisoniipotion", + "pstrongsplashpotion": "splashpoisoniipotion", + "pleveliisplashpotion": "splashpoisoniipotion", + "splashpoisoniipot": "splashpoisoniipotion", + "splashpoisonstrongpot": "splashpoisoniipotion", + "splashpoisonleveliipot": "splashpoisoniipotion", + "splashacidiipot": "splashpoisoniipotion", + "splashacidstrongpot": "splashpoisoniipotion", + "splashacidleveliipot": "splashpoisoniipotion", + "splashpiipot": "splashpoisoniipotion", + "splashpstrongpot": "splashpoisoniipotion", + "splashpleveliipot": "splashpoisoniipotion", + "splpoisoniipot": "splashpoisoniipotion", + "splpoisonstrongpot": "splashpoisoniipotion", + "splpoisonleveliipot": "splashpoisoniipotion", + "splacidiipot": "splashpoisoniipotion", + "splacidstrongpot": "splashpoisoniipotion", + "splacidleveliipot": "splashpoisoniipotion", + "splpiipot": "splashpoisoniipotion", + "splpstrongpot": "splashpoisoniipotion", + "splpleveliipot": "splashpoisoniipotion", + "poisoniisplashpot": "splashpoisoniipotion", + "poisonstrongsplashpot": "splashpoisoniipotion", + "poisonleveliisplashpot": "splashpoisoniipotion", + "acidiisplashpot": "splashpoisoniipotion", + "acidstrongsplashpot": "splashpoisoniipotion", + "acidleveliisplashpot": "splashpoisoniipotion", + "piisplashpot": "splashpoisoniipotion", + "pstrongsplashpot": "splashpoisoniipotion", + "pleveliisplashpot": "splashpoisoniipotion", + "lingerpotpoisonii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_poison", + "type": "POISON", + "upgraded": true, + "extended": false + } + }, + "lingerpotpoisonstrong": "lingerpotpoisonii", + "lingerpotpoisonlevelii": "lingerpotpoisonii", + "lingerpotacidii": "lingerpotpoisonii", + "lingerpotacidstrong": "lingerpotpoisonii", + "lingerpotacidlevelii": "lingerpotpoisonii", + "lingerpotpii": "lingerpotpoisonii", + "lingerpotpstrong": "lingerpotpoisonii", + "lingerpotplevelii": "lingerpotpoisonii", + "poisonlingerpotii": "lingerpotpoisonii", + "poisonlingerpotstrong": "lingerpotpoisonii", + "poisonlingerpotlevelii": "lingerpotpoisonii", + "acidlingerpotii": "lingerpotpoisonii", + "acidlingerpotstrong": "lingerpotpoisonii", + "acidlingerpotlevelii": "lingerpotpoisonii", + "plingerpotii": "lingerpotpoisonii", + "plingerpotstrong": "lingerpotpoisonii", + "plingerpotlevelii": "lingerpotpoisonii", + "aoepotionpoisonii": "lingerpotpoisonii", + "aoepotionpoisonstrong": "lingerpotpoisonii", + "aoepotionpoisonlevelii": "lingerpotpoisonii", + "aoepotionacidii": "lingerpotpoisonii", + "aoepotionacidstrong": "lingerpotpoisonii", + "aoepotionacidlevelii": "lingerpotpoisonii", + "aoepotionpii": "lingerpotpoisonii", + "aoepotionpstrong": "lingerpotpoisonii", + "aoepotionplevelii": "lingerpotpoisonii", + "poisonaoepoiontii": "lingerpotpoisonii", + "poisonaoepoiontstrong": "lingerpotpoisonii", + "poisonaoepoiontlevelii": "lingerpotpoisonii", + "acidaoepoiontii": "lingerpotpoisonii", + "acidaoepoiontstrong": "lingerpotpoisonii", + "acidaoepoiontlevelii": "lingerpotpoisonii", + "paoepoiontii": "lingerpotpoisonii", + "paoepoiontstrong": "lingerpotpoisonii", + "paoepoiontlevelii": "lingerpotpoisonii", + "aoepotpoisonii": "lingerpotpoisonii", + "aoepotpoisonstrong": "lingerpotpoisonii", + "aoepotpoisonlevelii": "lingerpotpoisonii", + "aoepotacidii": "lingerpotpoisonii", + "aoepotacidstrong": "lingerpotpoisonii", + "aoepotacidlevelii": "lingerpotpoisonii", + "aoepotpii": "lingerpotpoisonii", + "aoepotpstrong": "lingerpotpoisonii", + "aoepotplevelii": "lingerpotpoisonii", + "poisonaoepotii": "lingerpotpoisonii", + "poisonaoepotstrong": "lingerpotpoisonii", + "poisonaoepotlevelii": "lingerpotpoisonii", + "acidaoepotii": "lingerpotpoisonii", + "acidaoepotstrong": "lingerpotpoisonii", + "acidaoepotlevelii": "lingerpotpoisonii", + "paoepotii": "lingerpotpoisonii", + "paoepotstrong": "lingerpotpoisonii", + "paoepotlevelii": "lingerpotpoisonii", + "areapotionpoisonii": "lingerpotpoisonii", + "areapotionpoisonstrong": "lingerpotpoisonii", + "areapotionpoisonlevelii": "lingerpotpoisonii", + "areapotionacidii": "lingerpotpoisonii", + "areapotionacidstrong": "lingerpotpoisonii", + "areapotionacidlevelii": "lingerpotpoisonii", + "areapotionpii": "lingerpotpoisonii", + "areapotionpstrong": "lingerpotpoisonii", + "areapotionplevelii": "lingerpotpoisonii", + "poisonareapotionii": "lingerpotpoisonii", + "poisonareapotionstrong": "lingerpotpoisonii", + "poisonareapotionlevelii": "lingerpotpoisonii", + "acidareapotionii": "lingerpotpoisonii", + "acidareapotionstrong": "lingerpotpoisonii", + "acidareapotionlevelii": "lingerpotpoisonii", + "pareapotionii": "lingerpotpoisonii", + "pareapotionstrong": "lingerpotpoisonii", + "pareapotionlevelii": "lingerpotpoisonii", + "areapotpoisonii": "lingerpotpoisonii", + "areapotpoisonstrong": "lingerpotpoisonii", + "areapotpoisonlevelii": "lingerpotpoisonii", + "areapotacidii": "lingerpotpoisonii", + "areapotacidstrong": "lingerpotpoisonii", + "areapotacidlevelii": "lingerpotpoisonii", + "areapotpii": "lingerpotpoisonii", + "areapotpstrong": "lingerpotpoisonii", + "areapotplevelii": "lingerpotpoisonii", + "poisonareapotii": "lingerpotpoisonii", + "poisonareapotstrong": "lingerpotpoisonii", + "poisonareapotlevelii": "lingerpotpoisonii", + "acidareapotii": "lingerpotpoisonii", + "acidareapotstrong": "lingerpotpoisonii", + "acidareapotlevelii": "lingerpotpoisonii", + "pareapotii": "lingerpotpoisonii", + "pareapotstrong": "lingerpotpoisonii", + "pareapotlevelii": "lingerpotpoisonii", + "cloudpotionpoisonii": "lingerpotpoisonii", + "cloudpotionpoisonstrong": "lingerpotpoisonii", + "cloudpotionpoisonlevelii": "lingerpotpoisonii", + "cloudpotionacidii": "lingerpotpoisonii", + "cloudpotionacidstrong": "lingerpotpoisonii", + "cloudpotionacidlevelii": "lingerpotpoisonii", + "cloudpotionpii": "lingerpotpoisonii", + "cloudpotionpstrong": "lingerpotpoisonii", + "cloudpotionplevelii": "lingerpotpoisonii", + "poisoncloudpotionii": "lingerpotpoisonii", + "poisoncloudpotionstrong": "lingerpotpoisonii", + "poisoncloudpotionlevelii": "lingerpotpoisonii", + "acidcloudpotionii": "lingerpotpoisonii", + "acidcloudpotionstrong": "lingerpotpoisonii", + "acidcloudpotionlevelii": "lingerpotpoisonii", + "pcloudpotionii": "lingerpotpoisonii", + "pcloudpotionstrong": "lingerpotpoisonii", + "pcloudpotionlevelii": "lingerpotpoisonii", + "cloudpotpoisonii": "lingerpotpoisonii", + "cloudpotpoisonstrong": "lingerpotpoisonii", + "cloudpotpoisonlevelii": "lingerpotpoisonii", + "cloudpotacidii": "lingerpotpoisonii", + "cloudpotacidstrong": "lingerpotpoisonii", + "cloudpotacidlevelii": "lingerpotpoisonii", + "cloudpotpii": "lingerpotpoisonii", + "cloudpotpstrong": "lingerpotpoisonii", + "cloudpotplevelii": "lingerpotpoisonii", + "poisoncloudpotii": "lingerpotpoisonii", + "poisoncloudpotstrong": "lingerpotpoisonii", + "poisoncloudpotlevelii": "lingerpotpoisonii", + "acidcloudpotii": "lingerpotpoisonii", + "acidcloudpotstrong": "lingerpotpoisonii", + "acidcloudpotlevelii": "lingerpotpoisonii", + "pcloudpotii": "lingerpotpoisonii", + "pcloudpotstrong": "lingerpotpoisonii", + "pcloudpotlevelii": "lingerpotpoisonii", + "arrowpoisonii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_poison", + "type": "POISON", + "upgraded": true, + "extended": false + } + }, + "arrowpoisonstrong": "arrowpoisonii", + "arrowpoisonlevelii": "arrowpoisonii", + "arrowacidii": "arrowpoisonii", + "arrowacidstrong": "arrowpoisonii", + "arrowacidlevelii": "arrowpoisonii", + "arrowpii": "arrowpoisonii", + "arrowpstrong": "arrowpoisonii", + "arrowplevelii": "arrowpoisonii", + "poisonarrowii": "arrowpoisonii", + "poisonarrowstrong": "arrowpoisonii", + "poisonarrowlevelii": "arrowpoisonii", + "acidarrowii": "arrowpoisonii", + "acidarrowstrong": "arrowpoisonii", + "acidarrowlevelii": "arrowpoisonii", + "parrowii": "arrowpoisonii", + "parrowstrong": "arrowpoisonii", + "parrowlevelii": "arrowpoisonii", + "poison2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_poison", + "type": "POISON", + "upgraded": false, + "extended": true + } + }, + "poisonlongpotion": "poison2potion", + "poisonextendedpotion": "poison2potion", + "poisonexpotion": "poison2potion", + "poisonlevel2potion": "poison2potion", + "acid2potion": "poison2potion", + "acidlongpotion": "poison2potion", + "acidextendedpotion": "poison2potion", + "acidexpotion": "poison2potion", + "acidlevel2potion": "poison2potion", + "p2potion": "poison2potion", + "plongpotion": "poison2potion", + "pextendedpotion": "poison2potion", + "pexpotion": "poison2potion", + "plevel2potion": "poison2potion", + "poison2pot": "poison2potion", + "poisonlongpot": "poison2potion", + "poisonextendedpot": "poison2potion", + "poisonexpot": "poison2potion", + "poisonlevel2pot": "poison2potion", + "acid2pot": "poison2potion", + "acidlongpot": "poison2potion", + "acidextendedpot": "poison2potion", + "acidexpot": "poison2potion", + "acidlevel2pot": "poison2potion", + "p2pot": "poison2potion", + "plongpot": "poison2potion", + "pextendedpot": "poison2potion", + "pexpot": "poison2potion", + "plevel2pot": "poison2potion", + "potionofpoison2": "poison2potion", + "potionofpoisonlong": "poison2potion", + "potionofpoisonextended": "poison2potion", + "potionofpoisonex": "poison2potion", + "potionofpoisonlevel2": "poison2potion", + "potionofacid2": "poison2potion", + "potionofacidlong": "poison2potion", + "potionofacidextended": "poison2potion", + "potionofacidex": "poison2potion", + "potionofacidlevel2": "poison2potion", + "potionofp2": "poison2potion", + "potionofplong": "poison2potion", + "potionofpextended": "poison2potion", + "potionofpex": "poison2potion", + "potionofplevel2": "poison2potion", + "potofpoison2": "poison2potion", + "potofpoisonlong": "poison2potion", + "potofpoisonextended": "poison2potion", + "potofpoisonex": "poison2potion", + "potofpoisonlevel2": "poison2potion", + "potofacid2": "poison2potion", + "potofacidlong": "poison2potion", + "potofacidextended": "poison2potion", + "potofacidex": "poison2potion", + "potofacidlevel2": "poison2potion", + "potofp2": "poison2potion", + "potofplong": "poison2potion", + "potofpextended": "poison2potion", + "potofpex": "poison2potion", + "potofplevel2": "poison2potion", + "splashpoison2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_poison", + "type": "POISON", + "upgraded": false, + "extended": true + } + }, + "splashpoisonlongpotion": "splashpoison2potion", + "splashpoisonextendedpotion": "splashpoison2potion", + "splashpoisonexpotion": "splashpoison2potion", + "splashpoisonlevel2potion": "splashpoison2potion", + "splashacid2potion": "splashpoison2potion", + "splashacidlongpotion": "splashpoison2potion", + "splashacidextendedpotion": "splashpoison2potion", + "splashacidexpotion": "splashpoison2potion", + "splashacidlevel2potion": "splashpoison2potion", + "splashp2potion": "splashpoison2potion", + "splashplongpotion": "splashpoison2potion", + "splashpextendedpotion": "splashpoison2potion", + "splashpexpotion": "splashpoison2potion", + "splashplevel2potion": "splashpoison2potion", + "splpoison2potion": "splashpoison2potion", + "splpoisonlongpotion": "splashpoison2potion", + "splpoisonextendedpotion": "splashpoison2potion", + "splpoisonexpotion": "splashpoison2potion", + "splpoisonlevel2potion": "splashpoison2potion", + "splacid2potion": "splashpoison2potion", + "splacidlongpotion": "splashpoison2potion", + "splacidextendedpotion": "splashpoison2potion", + "splacidexpotion": "splashpoison2potion", + "splacidlevel2potion": "splashpoison2potion", + "splp2potion": "splashpoison2potion", + "splplongpotion": "splashpoison2potion", + "splpextendedpotion": "splashpoison2potion", + "splpexpotion": "splashpoison2potion", + "splplevel2potion": "splashpoison2potion", + "poison2splashpotion": "splashpoison2potion", + "poisonlongsplashpotion": "splashpoison2potion", + "poisonextendedsplashpotion": "splashpoison2potion", + "poisonexsplashpotion": "splashpoison2potion", + "poisonlevel2splashpotion": "splashpoison2potion", + "acid2splashpotion": "splashpoison2potion", + "acidlongsplashpotion": "splashpoison2potion", + "acidextendedsplashpotion": "splashpoison2potion", + "acidexsplashpotion": "splashpoison2potion", + "acidlevel2splashpotion": "splashpoison2potion", + "p2splashpotion": "splashpoison2potion", + "plongsplashpotion": "splashpoison2potion", + "pextendedsplashpotion": "splashpoison2potion", + "pexsplashpotion": "splashpoison2potion", + "plevel2splashpotion": "splashpoison2potion", + "splashpoison2pot": "splashpoison2potion", + "splashpoisonlongpot": "splashpoison2potion", + "splashpoisonextendedpot": "splashpoison2potion", + "splashpoisonexpot": "splashpoison2potion", + "splashpoisonlevel2pot": "splashpoison2potion", + "splashacid2pot": "splashpoison2potion", + "splashacidlongpot": "splashpoison2potion", + "splashacidextendedpot": "splashpoison2potion", + "splashacidexpot": "splashpoison2potion", + "splashacidlevel2pot": "splashpoison2potion", + "splashp2pot": "splashpoison2potion", + "splashplongpot": "splashpoison2potion", + "splashpextendedpot": "splashpoison2potion", + "splashpexpot": "splashpoison2potion", + "splashplevel2pot": "splashpoison2potion", + "splpoison2pot": "splashpoison2potion", + "splpoisonlongpot": "splashpoison2potion", + "splpoisonextendedpot": "splashpoison2potion", + "splpoisonexpot": "splashpoison2potion", + "splpoisonlevel2pot": "splashpoison2potion", + "splacid2pot": "splashpoison2potion", + "splacidlongpot": "splashpoison2potion", + "splacidextendedpot": "splashpoison2potion", + "splacidexpot": "splashpoison2potion", + "splacidlevel2pot": "splashpoison2potion", + "splp2pot": "splashpoison2potion", + "splplongpot": "splashpoison2potion", + "splpextendedpot": "splashpoison2potion", + "splpexpot": "splashpoison2potion", + "splplevel2pot": "splashpoison2potion", + "poison2splashpot": "splashpoison2potion", + "poisonlongsplashpot": "splashpoison2potion", + "poisonextendedsplashpot": "splashpoison2potion", + "poisonexsplashpot": "splashpoison2potion", + "poisonlevel2splashpot": "splashpoison2potion", + "acid2splashpot": "splashpoison2potion", + "acidlongsplashpot": "splashpoison2potion", + "acidextendedsplashpot": "splashpoison2potion", + "acidexsplashpot": "splashpoison2potion", + "acidlevel2splashpot": "splashpoison2potion", + "p2splashpot": "splashpoison2potion", + "plongsplashpot": "splashpoison2potion", + "pextendedsplashpot": "splashpoison2potion", + "pexsplashpot": "splashpoison2potion", + "plevel2splashpot": "splashpoison2potion", + "lingerpotpoison2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_poison", + "type": "POISON", + "upgraded": false, + "extended": true + } + }, + "lingerpotpoisonlong": "lingerpotpoison2", + "lingerpotpoisonextended": "lingerpotpoison2", + "lingerpotpoisonex": "lingerpotpoison2", + "lingerpotpoisonlevel2": "lingerpotpoison2", + "lingerpotacid2": "lingerpotpoison2", + "lingerpotacidlong": "lingerpotpoison2", + "lingerpotacidextended": "lingerpotpoison2", + "lingerpotacidex": "lingerpotpoison2", + "lingerpotacidlevel2": "lingerpotpoison2", + "lingerpotp2": "lingerpotpoison2", + "lingerpotplong": "lingerpotpoison2", + "lingerpotpextended": "lingerpotpoison2", + "lingerpotpex": "lingerpotpoison2", + "lingerpotplevel2": "lingerpotpoison2", + "poisonlingerpot2": "lingerpotpoison2", + "poisonlingerpotlong": "lingerpotpoison2", + "poisonlingerpotextended": "lingerpotpoison2", + "poisonlingerpotex": "lingerpotpoison2", + "poisonlingerpotlevel2": "lingerpotpoison2", + "acidlingerpot2": "lingerpotpoison2", + "acidlingerpotlong": "lingerpotpoison2", + "acidlingerpotextended": "lingerpotpoison2", + "acidlingerpotex": "lingerpotpoison2", + "acidlingerpotlevel2": "lingerpotpoison2", + "plingerpot2": "lingerpotpoison2", + "plingerpotlong": "lingerpotpoison2", + "plingerpotextended": "lingerpotpoison2", + "plingerpotex": "lingerpotpoison2", + "plingerpotlevel2": "lingerpotpoison2", + "aoepotionpoison2": "lingerpotpoison2", + "aoepotionpoisonlong": "lingerpotpoison2", + "aoepotionpoisonextended": "lingerpotpoison2", + "aoepotionpoisonex": "lingerpotpoison2", + "aoepotionpoisonlevel2": "lingerpotpoison2", + "aoepotionacid2": "lingerpotpoison2", + "aoepotionacidlong": "lingerpotpoison2", + "aoepotionacidextended": "lingerpotpoison2", + "aoepotionacidex": "lingerpotpoison2", + "aoepotionacidlevel2": "lingerpotpoison2", + "aoepotionp2": "lingerpotpoison2", + "aoepotionplong": "lingerpotpoison2", + "aoepotionpextended": "lingerpotpoison2", + "aoepotionpex": "lingerpotpoison2", + "aoepotionplevel2": "lingerpotpoison2", + "poisonaoepoiont2": "lingerpotpoison2", + "poisonaoepoiontlong": "lingerpotpoison2", + "poisonaoepoiontextended": "lingerpotpoison2", + "poisonaoepoiontex": "lingerpotpoison2", + "poisonaoepoiontlevel2": "lingerpotpoison2", + "acidaoepoiont2": "lingerpotpoison2", + "acidaoepoiontlong": "lingerpotpoison2", + "acidaoepoiontextended": "lingerpotpoison2", + "acidaoepoiontex": "lingerpotpoison2", + "acidaoepoiontlevel2": "lingerpotpoison2", + "paoepoiont2": "lingerpotpoison2", + "paoepoiontlong": "lingerpotpoison2", + "paoepoiontextended": "lingerpotpoison2", + "paoepoiontex": "lingerpotpoison2", + "paoepoiontlevel2": "lingerpotpoison2", + "aoepotpoison2": "lingerpotpoison2", + "aoepotpoisonlong": "lingerpotpoison2", + "aoepotpoisonextended": "lingerpotpoison2", + "aoepotpoisonex": "lingerpotpoison2", + "aoepotpoisonlevel2": "lingerpotpoison2", + "aoepotacid2": "lingerpotpoison2", + "aoepotacidlong": "lingerpotpoison2", + "aoepotacidextended": "lingerpotpoison2", + "aoepotacidex": "lingerpotpoison2", + "aoepotacidlevel2": "lingerpotpoison2", + "aoepotp2": "lingerpotpoison2", + "aoepotplong": "lingerpotpoison2", + "aoepotpextended": "lingerpotpoison2", + "aoepotpex": "lingerpotpoison2", + "aoepotplevel2": "lingerpotpoison2", + "poisonaoepot2": "lingerpotpoison2", + "poisonaoepotlong": "lingerpotpoison2", + "poisonaoepotextended": "lingerpotpoison2", + "poisonaoepotex": "lingerpotpoison2", + "poisonaoepotlevel2": "lingerpotpoison2", + "acidaoepot2": "lingerpotpoison2", + "acidaoepotlong": "lingerpotpoison2", + "acidaoepotextended": "lingerpotpoison2", + "acidaoepotex": "lingerpotpoison2", + "acidaoepotlevel2": "lingerpotpoison2", + "paoepot2": "lingerpotpoison2", + "paoepotlong": "lingerpotpoison2", + "paoepotextended": "lingerpotpoison2", + "paoepotex": "lingerpotpoison2", + "paoepotlevel2": "lingerpotpoison2", + "areapotionpoison2": "lingerpotpoison2", + "areapotionpoisonlong": "lingerpotpoison2", + "areapotionpoisonextended": "lingerpotpoison2", + "areapotionpoisonex": "lingerpotpoison2", + "areapotionpoisonlevel2": "lingerpotpoison2", + "areapotionacid2": "lingerpotpoison2", + "areapotionacidlong": "lingerpotpoison2", + "areapotionacidextended": "lingerpotpoison2", + "areapotionacidex": "lingerpotpoison2", + "areapotionacidlevel2": "lingerpotpoison2", + "areapotionp2": "lingerpotpoison2", + "areapotionplong": "lingerpotpoison2", + "areapotionpextended": "lingerpotpoison2", + "areapotionpex": "lingerpotpoison2", + "areapotionplevel2": "lingerpotpoison2", + "poisonareapotion2": "lingerpotpoison2", + "poisonareapotionlong": "lingerpotpoison2", + "poisonareapotionextended": "lingerpotpoison2", + "poisonareapotionex": "lingerpotpoison2", + "poisonareapotionlevel2": "lingerpotpoison2", + "acidareapotion2": "lingerpotpoison2", + "acidareapotionlong": "lingerpotpoison2", + "acidareapotionextended": "lingerpotpoison2", + "acidareapotionex": "lingerpotpoison2", + "acidareapotionlevel2": "lingerpotpoison2", + "pareapotion2": "lingerpotpoison2", + "pareapotionlong": "lingerpotpoison2", + "pareapotionextended": "lingerpotpoison2", + "pareapotionex": "lingerpotpoison2", + "pareapotionlevel2": "lingerpotpoison2", + "areapotpoison2": "lingerpotpoison2", + "areapotpoisonlong": "lingerpotpoison2", + "areapotpoisonextended": "lingerpotpoison2", + "areapotpoisonex": "lingerpotpoison2", + "areapotpoisonlevel2": "lingerpotpoison2", + "areapotacid2": "lingerpotpoison2", + "areapotacidlong": "lingerpotpoison2", + "areapotacidextended": "lingerpotpoison2", + "areapotacidex": "lingerpotpoison2", + "areapotacidlevel2": "lingerpotpoison2", + "areapotp2": "lingerpotpoison2", + "areapotplong": "lingerpotpoison2", + "areapotpextended": "lingerpotpoison2", + "areapotpex": "lingerpotpoison2", + "areapotplevel2": "lingerpotpoison2", + "poisonareapot2": "lingerpotpoison2", + "poisonareapotlong": "lingerpotpoison2", + "poisonareapotextended": "lingerpotpoison2", + "poisonareapotex": "lingerpotpoison2", + "poisonareapotlevel2": "lingerpotpoison2", + "acidareapot2": "lingerpotpoison2", + "acidareapotlong": "lingerpotpoison2", + "acidareapotextended": "lingerpotpoison2", + "acidareapotex": "lingerpotpoison2", + "acidareapotlevel2": "lingerpotpoison2", + "pareapot2": "lingerpotpoison2", + "pareapotlong": "lingerpotpoison2", + "pareapotextended": "lingerpotpoison2", + "pareapotex": "lingerpotpoison2", + "pareapotlevel2": "lingerpotpoison2", + "cloudpotionpoison2": "lingerpotpoison2", + "cloudpotionpoisonlong": "lingerpotpoison2", + "cloudpotionpoisonextended": "lingerpotpoison2", + "cloudpotionpoisonex": "lingerpotpoison2", + "cloudpotionpoisonlevel2": "lingerpotpoison2", + "cloudpotionacid2": "lingerpotpoison2", + "cloudpotionacidlong": "lingerpotpoison2", + "cloudpotionacidextended": "lingerpotpoison2", + "cloudpotionacidex": "lingerpotpoison2", + "cloudpotionacidlevel2": "lingerpotpoison2", + "cloudpotionp2": "lingerpotpoison2", + "cloudpotionplong": "lingerpotpoison2", + "cloudpotionpextended": "lingerpotpoison2", + "cloudpotionpex": "lingerpotpoison2", + "cloudpotionplevel2": "lingerpotpoison2", + "poisoncloudpotion2": "lingerpotpoison2", + "poisoncloudpotionlong": "lingerpotpoison2", + "poisoncloudpotionextended": "lingerpotpoison2", + "poisoncloudpotionex": "lingerpotpoison2", + "poisoncloudpotionlevel2": "lingerpotpoison2", + "acidcloudpotion2": "lingerpotpoison2", + "acidcloudpotionlong": "lingerpotpoison2", + "acidcloudpotionextended": "lingerpotpoison2", + "acidcloudpotionex": "lingerpotpoison2", + "acidcloudpotionlevel2": "lingerpotpoison2", + "pcloudpotion2": "lingerpotpoison2", + "pcloudpotionlong": "lingerpotpoison2", + "pcloudpotionextended": "lingerpotpoison2", + "pcloudpotionex": "lingerpotpoison2", + "pcloudpotionlevel2": "lingerpotpoison2", + "cloudpotpoison2": "lingerpotpoison2", + "cloudpotpoisonlong": "lingerpotpoison2", + "cloudpotpoisonextended": "lingerpotpoison2", + "cloudpotpoisonex": "lingerpotpoison2", + "cloudpotpoisonlevel2": "lingerpotpoison2", + "cloudpotacid2": "lingerpotpoison2", + "cloudpotacidlong": "lingerpotpoison2", + "cloudpotacidextended": "lingerpotpoison2", + "cloudpotacidex": "lingerpotpoison2", + "cloudpotacidlevel2": "lingerpotpoison2", + "cloudpotp2": "lingerpotpoison2", + "cloudpotplong": "lingerpotpoison2", + "cloudpotpextended": "lingerpotpoison2", + "cloudpotpex": "lingerpotpoison2", + "cloudpotplevel2": "lingerpotpoison2", + "poisoncloudpot2": "lingerpotpoison2", + "poisoncloudpotlong": "lingerpotpoison2", + "poisoncloudpotextended": "lingerpotpoison2", + "poisoncloudpotex": "lingerpotpoison2", + "poisoncloudpotlevel2": "lingerpotpoison2", + "acidcloudpot2": "lingerpotpoison2", + "acidcloudpotlong": "lingerpotpoison2", + "acidcloudpotextended": "lingerpotpoison2", + "acidcloudpotex": "lingerpotpoison2", + "acidcloudpotlevel2": "lingerpotpoison2", + "pcloudpot2": "lingerpotpoison2", + "pcloudpotlong": "lingerpotpoison2", + "pcloudpotextended": "lingerpotpoison2", + "pcloudpotex": "lingerpotpoison2", + "pcloudpotlevel2": "lingerpotpoison2", + "arrowpoison2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_poison", + "type": "POISON", + "upgraded": false, + "extended": true + } + }, + "arrowpoisonlong": "arrowpoison2", + "arrowpoisonextended": "arrowpoison2", + "arrowpoisonex": "arrowpoison2", + "arrowpoisonlevel2": "arrowpoison2", + "arrowacid2": "arrowpoison2", + "arrowacidlong": "arrowpoison2", + "arrowacidextended": "arrowpoison2", + "arrowacidex": "arrowpoison2", + "arrowacidlevel2": "arrowpoison2", + "arrowp2": "arrowpoison2", + "arrowplong": "arrowpoison2", + "arrowpextended": "arrowpoison2", + "arrowpex": "arrowpoison2", + "arrowplevel2": "arrowpoison2", + "poisonarrow2": "arrowpoison2", + "poisonarrowlong": "arrowpoison2", + "poisonarrowextended": "arrowpoison2", + "poisonarrowex": "arrowpoison2", + "poisonarrowlevel2": "arrowpoison2", + "acidarrow2": "arrowpoison2", + "acidarrowlong": "arrowpoison2", + "acidarrowextended": "arrowpoison2", + "acidarrowex": "arrowpoison2", + "acidarrowlevel2": "arrowpoison2", + "parrow2": "arrowpoison2", + "parrowlong": "arrowpoison2", + "parrowextended": "arrowpoison2", + "parrowex": "arrowpoison2", + "parrowlevel2": "arrowpoison2", + "regenerationpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "regeneration", + "type": "REGEN", + "upgraded": false, + "extended": false + } + }, + "regeneratepotion": "regenerationpotion", + "regenpotion": "regenerationpotion", + "regenerationpot": "regenerationpotion", + "regeneratepot": "regenerationpotion", + "regenpot": "regenerationpotion", + "potionofregeneration": "regenerationpotion", + "potionofregenerate": "regenerationpotion", + "potionofregen": "regenerationpotion", + "potofregeneration": "regenerationpotion", + "potofregenerate": "regenerationpotion", + "potofregen": "regenerationpotion", + "splashregenerationpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "regeneration", + "type": "REGEN", + "upgraded": false, + "extended": false + } + }, + "splashregeneratepotion": "splashregenerationpotion", + "splashregenpotion": "splashregenerationpotion", + "splregenerationpotion": "splashregenerationpotion", + "splregeneratepotion": "splashregenerationpotion", + "splregenpotion": "splashregenerationpotion", + "regenerationsplashpotion": "splashregenerationpotion", + "regeneratesplashpotion": "splashregenerationpotion", + "regensplashpotion": "splashregenerationpotion", + "splashregenerationpot": "splashregenerationpotion", + "splashregeneratepot": "splashregenerationpotion", + "splashregenpot": "splashregenerationpotion", + "splregenerationpot": "splashregenerationpotion", + "splregeneratepot": "splashregenerationpotion", + "splregenpot": "splashregenerationpotion", + "regenerationsplashpot": "splashregenerationpotion", + "regeneratesplashpot": "splashregenerationpotion", + "regensplashpot": "splashregenerationpotion", + "lingerpotregeneration": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "regeneration", + "type": "REGEN", + "upgraded": false, + "extended": false + } + }, + "lingerpotregenerate": "lingerpotregeneration", + "lingerpotregen": "lingerpotregeneration", + "regenerationlingerpot": "lingerpotregeneration", + "regeneratelingerpot": "lingerpotregeneration", + "regenlingerpot": "lingerpotregeneration", + "aoepotionregeneration": "lingerpotregeneration", + "aoepotionregenerate": "lingerpotregeneration", + "aoepotionregen": "lingerpotregeneration", + "regenerationaoepoiont": "lingerpotregeneration", + "regenerateaoepoiont": "lingerpotregeneration", + "regenaoepoiont": "lingerpotregeneration", + "aoepotregeneration": "lingerpotregeneration", + "aoepotregenerate": "lingerpotregeneration", + "aoepotregen": "lingerpotregeneration", + "regenerationaoepot": "lingerpotregeneration", + "regenerateaoepot": "lingerpotregeneration", + "regenaoepot": "lingerpotregeneration", + "areapotionregeneration": "lingerpotregeneration", + "areapotionregenerate": "lingerpotregeneration", + "areapotionregen": "lingerpotregeneration", + "regenerationareapotion": "lingerpotregeneration", + "regenerateareapotion": "lingerpotregeneration", + "regenareapotion": "lingerpotregeneration", + "areapotregeneration": "lingerpotregeneration", + "areapotregenerate": "lingerpotregeneration", + "areapotregen": "lingerpotregeneration", + "regenerationareapot": "lingerpotregeneration", + "regenerateareapot": "lingerpotregeneration", + "regenareapot": "lingerpotregeneration", + "cloudpotionregeneration": "lingerpotregeneration", + "cloudpotionregenerate": "lingerpotregeneration", + "cloudpotionregen": "lingerpotregeneration", + "regenerationcloudpotion": "lingerpotregeneration", + "regeneratecloudpotion": "lingerpotregeneration", + "regencloudpotion": "lingerpotregeneration", + "cloudpotregeneration": "lingerpotregeneration", + "cloudpotregenerate": "lingerpotregeneration", + "cloudpotregen": "lingerpotregeneration", + "regenerationcloudpot": "lingerpotregeneration", + "regeneratecloudpot": "lingerpotregeneration", + "regencloudpot": "lingerpotregeneration", + "arrowregeneration": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "regeneration", + "type": "REGEN", + "upgraded": false, + "extended": false + } + }, + "arrowregenerate": "arrowregeneration", + "arrowregen": "arrowregeneration", + "regenerationarrow": "arrowregeneration", + "regeneratearrow": "arrowregeneration", + "regenarrow": "arrowregeneration", + "regenerationiipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_regeneration", + "type": "REGEN", + "upgraded": true, + "extended": false + } + }, + "regenerationstrongpotion": "regenerationiipotion", + "regenerationleveliipotion": "regenerationiipotion", + "regenerateiipotion": "regenerationiipotion", + "regeneratestrongpotion": "regenerationiipotion", + "regenerateleveliipotion": "regenerationiipotion", + "regeniipotion": "regenerationiipotion", + "regenstrongpotion": "regenerationiipotion", + "regenleveliipotion": "regenerationiipotion", + "regenerationiipot": "regenerationiipotion", + "regenerationstrongpot": "regenerationiipotion", + "regenerationleveliipot": "regenerationiipotion", + "regenerateiipot": "regenerationiipotion", + "regeneratestrongpot": "regenerationiipotion", + "regenerateleveliipot": "regenerationiipotion", + "regeniipot": "regenerationiipotion", + "regenstrongpot": "regenerationiipotion", + "regenleveliipot": "regenerationiipotion", + "potionofregenerationii": "regenerationiipotion", + "potionofregenerationstrong": "regenerationiipotion", + "potionofregenerationlevelii": "regenerationiipotion", + "potionofregenerateii": "regenerationiipotion", + "potionofregeneratestrong": "regenerationiipotion", + "potionofregeneratelevelii": "regenerationiipotion", + "potionofregenii": "regenerationiipotion", + "potionofregenstrong": "regenerationiipotion", + "potionofregenlevelii": "regenerationiipotion", + "potofregenerationii": "regenerationiipotion", + "potofregenerationstrong": "regenerationiipotion", + "potofregenerationlevelii": "regenerationiipotion", + "potofregenerateii": "regenerationiipotion", + "potofregeneratestrong": "regenerationiipotion", + "potofregeneratelevelii": "regenerationiipotion", + "potofregenii": "regenerationiipotion", + "potofregenstrong": "regenerationiipotion", + "potofregenlevelii": "regenerationiipotion", + "splashregenerationiipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_regeneration", + "type": "REGEN", + "upgraded": true, + "extended": false + } + }, + "splashregenerationstrongpotion": "splashregenerationiipotion", + "splashregenerationleveliipotion": "splashregenerationiipotion", + "splashregenerateiipotion": "splashregenerationiipotion", + "splashregeneratestrongpotion": "splashregenerationiipotion", + "splashregenerateleveliipotion": "splashregenerationiipotion", + "splashregeniipotion": "splashregenerationiipotion", + "splashregenstrongpotion": "splashregenerationiipotion", + "splashregenleveliipotion": "splashregenerationiipotion", + "splregenerationiipotion": "splashregenerationiipotion", + "splregenerationstrongpotion": "splashregenerationiipotion", + "splregenerationleveliipotion": "splashregenerationiipotion", + "splregenerateiipotion": "splashregenerationiipotion", + "splregeneratestrongpotion": "splashregenerationiipotion", + "splregenerateleveliipotion": "splashregenerationiipotion", + "splregeniipotion": "splashregenerationiipotion", + "splregenstrongpotion": "splashregenerationiipotion", + "splregenleveliipotion": "splashregenerationiipotion", + "regenerationiisplashpotion": "splashregenerationiipotion", + "regenerationstrongsplashpotion": "splashregenerationiipotion", + "regenerationleveliisplashpotion": "splashregenerationiipotion", + "regenerateiisplashpotion": "splashregenerationiipotion", + "regeneratestrongsplashpotion": "splashregenerationiipotion", + "regenerateleveliisplashpotion": "splashregenerationiipotion", + "regeniisplashpotion": "splashregenerationiipotion", + "regenstrongsplashpotion": "splashregenerationiipotion", + "regenleveliisplashpotion": "splashregenerationiipotion", + "splashregenerationiipot": "splashregenerationiipotion", + "splashregenerationstrongpot": "splashregenerationiipotion", + "splashregenerationleveliipot": "splashregenerationiipotion", + "splashregenerateiipot": "splashregenerationiipotion", + "splashregeneratestrongpot": "splashregenerationiipotion", + "splashregenerateleveliipot": "splashregenerationiipotion", + "splashregeniipot": "splashregenerationiipotion", + "splashregenstrongpot": "splashregenerationiipotion", + "splashregenleveliipot": "splashregenerationiipotion", + "splregenerationiipot": "splashregenerationiipotion", + "splregenerationstrongpot": "splashregenerationiipotion", + "splregenerationleveliipot": "splashregenerationiipotion", + "splregenerateiipot": "splashregenerationiipotion", + "splregeneratestrongpot": "splashregenerationiipotion", + "splregenerateleveliipot": "splashregenerationiipotion", + "splregeniipot": "splashregenerationiipotion", + "splregenstrongpot": "splashregenerationiipotion", + "splregenleveliipot": "splashregenerationiipotion", + "regenerationiisplashpot": "splashregenerationiipotion", + "regenerationstrongsplashpot": "splashregenerationiipotion", + "regenerationleveliisplashpot": "splashregenerationiipotion", + "regenerateiisplashpot": "splashregenerationiipotion", + "regeneratestrongsplashpot": "splashregenerationiipotion", + "regenerateleveliisplashpot": "splashregenerationiipotion", + "regeniisplashpot": "splashregenerationiipotion", + "regenstrongsplashpot": "splashregenerationiipotion", + "regenleveliisplashpot": "splashregenerationiipotion", + "lingerpotregenerationii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_regeneration", + "type": "REGEN", + "upgraded": true, + "extended": false + } + }, + "lingerpotregenerationstrong": "lingerpotregenerationii", + "lingerpotregenerationlevelii": "lingerpotregenerationii", + "lingerpotregenerateii": "lingerpotregenerationii", + "lingerpotregeneratestrong": "lingerpotregenerationii", + "lingerpotregeneratelevelii": "lingerpotregenerationii", + "lingerpotregenii": "lingerpotregenerationii", + "lingerpotregenstrong": "lingerpotregenerationii", + "lingerpotregenlevelii": "lingerpotregenerationii", + "regenerationlingerpotii": "lingerpotregenerationii", + "regenerationlingerpotstrong": "lingerpotregenerationii", + "regenerationlingerpotlevelii": "lingerpotregenerationii", + "regeneratelingerpotii": "lingerpotregenerationii", + "regeneratelingerpotstrong": "lingerpotregenerationii", + "regeneratelingerpotlevelii": "lingerpotregenerationii", + "regenlingerpotii": "lingerpotregenerationii", + "regenlingerpotstrong": "lingerpotregenerationii", + "regenlingerpotlevelii": "lingerpotregenerationii", + "aoepotionregenerationii": "lingerpotregenerationii", + "aoepotionregenerationstrong": "lingerpotregenerationii", + "aoepotionregenerationlevelii": "lingerpotregenerationii", + "aoepotionregenerateii": "lingerpotregenerationii", + "aoepotionregeneratestrong": "lingerpotregenerationii", + "aoepotionregeneratelevelii": "lingerpotregenerationii", + "aoepotionregenii": "lingerpotregenerationii", + "aoepotionregenstrong": "lingerpotregenerationii", + "aoepotionregenlevelii": "lingerpotregenerationii", + "regenerationaoepoiontii": "lingerpotregenerationii", + "regenerationaoepoiontstrong": "lingerpotregenerationii", + "regenerationaoepoiontlevelii": "lingerpotregenerationii", + "regenerateaoepoiontii": "lingerpotregenerationii", + "regenerateaoepoiontstrong": "lingerpotregenerationii", + "regenerateaoepoiontlevelii": "lingerpotregenerationii", + "regenaoepoiontii": "lingerpotregenerationii", + "regenaoepoiontstrong": "lingerpotregenerationii", + "regenaoepoiontlevelii": "lingerpotregenerationii", + "aoepotregenerationii": "lingerpotregenerationii", + "aoepotregenerationstrong": "lingerpotregenerationii", + "aoepotregenerationlevelii": "lingerpotregenerationii", + "aoepotregenerateii": "lingerpotregenerationii", + "aoepotregeneratestrong": "lingerpotregenerationii", + "aoepotregeneratelevelii": "lingerpotregenerationii", + "aoepotregenii": "lingerpotregenerationii", + "aoepotregenstrong": "lingerpotregenerationii", + "aoepotregenlevelii": "lingerpotregenerationii", + "regenerationaoepotii": "lingerpotregenerationii", + "regenerationaoepotstrong": "lingerpotregenerationii", + "regenerationaoepotlevelii": "lingerpotregenerationii", + "regenerateaoepotii": "lingerpotregenerationii", + "regenerateaoepotstrong": "lingerpotregenerationii", + "regenerateaoepotlevelii": "lingerpotregenerationii", + "regenaoepotii": "lingerpotregenerationii", + "regenaoepotstrong": "lingerpotregenerationii", + "regenaoepotlevelii": "lingerpotregenerationii", + "areapotionregenerationii": "lingerpotregenerationii", + "areapotionregenerationstrong": "lingerpotregenerationii", + "areapotionregenerationlevelii": "lingerpotregenerationii", + "areapotionregenerateii": "lingerpotregenerationii", + "areapotionregeneratestrong": "lingerpotregenerationii", + "areapotionregeneratelevelii": "lingerpotregenerationii", + "areapotionregenii": "lingerpotregenerationii", + "areapotionregenstrong": "lingerpotregenerationii", + "areapotionregenlevelii": "lingerpotregenerationii", + "regenerationareapotionii": "lingerpotregenerationii", + "regenerationareapotionstrong": "lingerpotregenerationii", + "regenerationareapotionlevelii": "lingerpotregenerationii", + "regenerateareapotionii": "lingerpotregenerationii", + "regenerateareapotionstrong": "lingerpotregenerationii", + "regenerateareapotionlevelii": "lingerpotregenerationii", + "regenareapotionii": "lingerpotregenerationii", + "regenareapotionstrong": "lingerpotregenerationii", + "regenareapotionlevelii": "lingerpotregenerationii", + "areapotregenerationii": "lingerpotregenerationii", + "areapotregenerationstrong": "lingerpotregenerationii", + "areapotregenerationlevelii": "lingerpotregenerationii", + "areapotregenerateii": "lingerpotregenerationii", + "areapotregeneratestrong": "lingerpotregenerationii", + "areapotregeneratelevelii": "lingerpotregenerationii", + "areapotregenii": "lingerpotregenerationii", + "areapotregenstrong": "lingerpotregenerationii", + "areapotregenlevelii": "lingerpotregenerationii", + "regenerationareapotii": "lingerpotregenerationii", + "regenerationareapotstrong": "lingerpotregenerationii", + "regenerationareapotlevelii": "lingerpotregenerationii", + "regenerateareapotii": "lingerpotregenerationii", + "regenerateareapotstrong": "lingerpotregenerationii", + "regenerateareapotlevelii": "lingerpotregenerationii", + "regenareapotii": "lingerpotregenerationii", + "regenareapotstrong": "lingerpotregenerationii", + "regenareapotlevelii": "lingerpotregenerationii", + "cloudpotionregenerationii": "lingerpotregenerationii", + "cloudpotionregenerationstrong": "lingerpotregenerationii", + "cloudpotionregenerationlevelii": "lingerpotregenerationii", + "cloudpotionregenerateii": "lingerpotregenerationii", + "cloudpotionregeneratestrong": "lingerpotregenerationii", + "cloudpotionregeneratelevelii": "lingerpotregenerationii", + "cloudpotionregenii": "lingerpotregenerationii", + "cloudpotionregenstrong": "lingerpotregenerationii", + "cloudpotionregenlevelii": "lingerpotregenerationii", + "regenerationcloudpotionii": "lingerpotregenerationii", + "regenerationcloudpotionstrong": "lingerpotregenerationii", + "regenerationcloudpotionlevelii": "lingerpotregenerationii", + "regeneratecloudpotionii": "lingerpotregenerationii", + "regeneratecloudpotionstrong": "lingerpotregenerationii", + "regeneratecloudpotionlevelii": "lingerpotregenerationii", + "regencloudpotionii": "lingerpotregenerationii", + "regencloudpotionstrong": "lingerpotregenerationii", + "regencloudpotionlevelii": "lingerpotregenerationii", + "cloudpotregenerationii": "lingerpotregenerationii", + "cloudpotregenerationstrong": "lingerpotregenerationii", + "cloudpotregenerationlevelii": "lingerpotregenerationii", + "cloudpotregenerateii": "lingerpotregenerationii", + "cloudpotregeneratestrong": "lingerpotregenerationii", + "cloudpotregeneratelevelii": "lingerpotregenerationii", + "cloudpotregenii": "lingerpotregenerationii", + "cloudpotregenstrong": "lingerpotregenerationii", + "cloudpotregenlevelii": "lingerpotregenerationii", + "regenerationcloudpotii": "lingerpotregenerationii", + "regenerationcloudpotstrong": "lingerpotregenerationii", + "regenerationcloudpotlevelii": "lingerpotregenerationii", + "regeneratecloudpotii": "lingerpotregenerationii", + "regeneratecloudpotstrong": "lingerpotregenerationii", + "regeneratecloudpotlevelii": "lingerpotregenerationii", + "regencloudpotii": "lingerpotregenerationii", + "regencloudpotstrong": "lingerpotregenerationii", + "regencloudpotlevelii": "lingerpotregenerationii", + "arrowregenerationii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_regeneration", + "type": "REGEN", + "upgraded": true, + "extended": false + } + }, + "arrowregenerationstrong": "arrowregenerationii", + "arrowregenerationlevelii": "arrowregenerationii", + "arrowregenerateii": "arrowregenerationii", + "arrowregeneratestrong": "arrowregenerationii", + "arrowregeneratelevelii": "arrowregenerationii", + "arrowregenii": "arrowregenerationii", + "arrowregenstrong": "arrowregenerationii", + "arrowregenlevelii": "arrowregenerationii", + "regenerationarrowii": "arrowregenerationii", + "regenerationarrowstrong": "arrowregenerationii", + "regenerationarrowlevelii": "arrowregenerationii", + "regeneratearrowii": "arrowregenerationii", + "regeneratearrowstrong": "arrowregenerationii", + "regeneratearrowlevelii": "arrowregenerationii", + "regenarrowii": "arrowregenerationii", + "regenarrowstrong": "arrowregenerationii", + "regenarrowlevelii": "arrowregenerationii", + "regeneration2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_regeneration", + "type": "REGEN", + "upgraded": false, + "extended": true + } + }, + "regenerationlongpotion": "regeneration2potion", + "regenerationextendedpotion": "regeneration2potion", + "regenerationexpotion": "regeneration2potion", + "regenerationlevel2potion": "regeneration2potion", + "regenerate2potion": "regeneration2potion", + "regeneratelongpotion": "regeneration2potion", + "regenerateextendedpotion": "regeneration2potion", + "regenerateexpotion": "regeneration2potion", + "regeneratelevel2potion": "regeneration2potion", + "regen2potion": "regeneration2potion", + "regenlongpotion": "regeneration2potion", + "regenextendedpotion": "regeneration2potion", + "regenexpotion": "regeneration2potion", + "regenlevel2potion": "regeneration2potion", + "regeneration2pot": "regeneration2potion", + "regenerationlongpot": "regeneration2potion", + "regenerationextendedpot": "regeneration2potion", + "regenerationexpot": "regeneration2potion", + "regenerationlevel2pot": "regeneration2potion", + "regenerate2pot": "regeneration2potion", + "regeneratelongpot": "regeneration2potion", + "regenerateextendedpot": "regeneration2potion", + "regenerateexpot": "regeneration2potion", + "regeneratelevel2pot": "regeneration2potion", + "regen2pot": "regeneration2potion", + "regenlongpot": "regeneration2potion", + "regenextendedpot": "regeneration2potion", + "regenexpot": "regeneration2potion", + "regenlevel2pot": "regeneration2potion", + "potionofregeneration2": "regeneration2potion", + "potionofregenerationlong": "regeneration2potion", + "potionofregenerationextended": "regeneration2potion", + "potionofregenerationex": "regeneration2potion", + "potionofregenerationlevel2": "regeneration2potion", + "potionofregenerate2": "regeneration2potion", + "potionofregeneratelong": "regeneration2potion", + "potionofregenerateextended": "regeneration2potion", + "potionofregenerateex": "regeneration2potion", + "potionofregeneratelevel2": "regeneration2potion", + "potionofregen2": "regeneration2potion", + "potionofregenlong": "regeneration2potion", + "potionofregenextended": "regeneration2potion", + "potionofregenex": "regeneration2potion", + "potionofregenlevel2": "regeneration2potion", + "potofregeneration2": "regeneration2potion", + "potofregenerationlong": "regeneration2potion", + "potofregenerationextended": "regeneration2potion", + "potofregenerationex": "regeneration2potion", + "potofregenerationlevel2": "regeneration2potion", + "potofregenerate2": "regeneration2potion", + "potofregeneratelong": "regeneration2potion", + "potofregenerateextended": "regeneration2potion", + "potofregenerateex": "regeneration2potion", + "potofregeneratelevel2": "regeneration2potion", + "potofregen2": "regeneration2potion", + "potofregenlong": "regeneration2potion", + "potofregenextended": "regeneration2potion", + "potofregenex": "regeneration2potion", + "potofregenlevel2": "regeneration2potion", + "splashregeneration2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_regeneration", + "type": "REGEN", + "upgraded": false, + "extended": true + } + }, + "splashregenerationlongpotion": "splashregeneration2potion", + "splashregenerationextendedpotion": "splashregeneration2potion", + "splashregenerationexpotion": "splashregeneration2potion", + "splashregenerationlevel2potion": "splashregeneration2potion", + "splashregenerate2potion": "splashregeneration2potion", + "splashregeneratelongpotion": "splashregeneration2potion", + "splashregenerateextendedpotion": "splashregeneration2potion", + "splashregenerateexpotion": "splashregeneration2potion", + "splashregeneratelevel2potion": "splashregeneration2potion", + "splashregen2potion": "splashregeneration2potion", + "splashregenlongpotion": "splashregeneration2potion", + "splashregenextendedpotion": "splashregeneration2potion", + "splashregenexpotion": "splashregeneration2potion", + "splashregenlevel2potion": "splashregeneration2potion", + "splregeneration2potion": "splashregeneration2potion", + "splregenerationlongpotion": "splashregeneration2potion", + "splregenerationextendedpotion": "splashregeneration2potion", + "splregenerationexpotion": "splashregeneration2potion", + "splregenerationlevel2potion": "splashregeneration2potion", + "splregenerate2potion": "splashregeneration2potion", + "splregeneratelongpotion": "splashregeneration2potion", + "splregenerateextendedpotion": "splashregeneration2potion", + "splregenerateexpotion": "splashregeneration2potion", + "splregeneratelevel2potion": "splashregeneration2potion", + "splregen2potion": "splashregeneration2potion", + "splregenlongpotion": "splashregeneration2potion", + "splregenextendedpotion": "splashregeneration2potion", + "splregenexpotion": "splashregeneration2potion", + "splregenlevel2potion": "splashregeneration2potion", + "regeneration2splashpotion": "splashregeneration2potion", + "regenerationlongsplashpotion": "splashregeneration2potion", + "regenerationextendedsplashpotion": "splashregeneration2potion", + "regenerationexsplashpotion": "splashregeneration2potion", + "regenerationlevel2splashpotion": "splashregeneration2potion", + "regenerate2splashpotion": "splashregeneration2potion", + "regeneratelongsplashpotion": "splashregeneration2potion", + "regenerateextendedsplashpotion": "splashregeneration2potion", + "regenerateexsplashpotion": "splashregeneration2potion", + "regeneratelevel2splashpotion": "splashregeneration2potion", + "regen2splashpotion": "splashregeneration2potion", + "regenlongsplashpotion": "splashregeneration2potion", + "regenextendedsplashpotion": "splashregeneration2potion", + "regenexsplashpotion": "splashregeneration2potion", + "regenlevel2splashpotion": "splashregeneration2potion", + "splashregeneration2pot": "splashregeneration2potion", + "splashregenerationlongpot": "splashregeneration2potion", + "splashregenerationextendedpot": "splashregeneration2potion", + "splashregenerationexpot": "splashregeneration2potion", + "splashregenerationlevel2pot": "splashregeneration2potion", + "splashregenerate2pot": "splashregeneration2potion", + "splashregeneratelongpot": "splashregeneration2potion", + "splashregenerateextendedpot": "splashregeneration2potion", + "splashregenerateexpot": "splashregeneration2potion", + "splashregeneratelevel2pot": "splashregeneration2potion", + "splashregen2pot": "splashregeneration2potion", + "splashregenlongpot": "splashregeneration2potion", + "splashregenextendedpot": "splashregeneration2potion", + "splashregenexpot": "splashregeneration2potion", + "splashregenlevel2pot": "splashregeneration2potion", + "splregeneration2pot": "splashregeneration2potion", + "splregenerationlongpot": "splashregeneration2potion", + "splregenerationextendedpot": "splashregeneration2potion", + "splregenerationexpot": "splashregeneration2potion", + "splregenerationlevel2pot": "splashregeneration2potion", + "splregenerate2pot": "splashregeneration2potion", + "splregeneratelongpot": "splashregeneration2potion", + "splregenerateextendedpot": "splashregeneration2potion", + "splregenerateexpot": "splashregeneration2potion", + "splregeneratelevel2pot": "splashregeneration2potion", + "splregen2pot": "splashregeneration2potion", + "splregenlongpot": "splashregeneration2potion", + "splregenextendedpot": "splashregeneration2potion", + "splregenexpot": "splashregeneration2potion", + "splregenlevel2pot": "splashregeneration2potion", + "regeneration2splashpot": "splashregeneration2potion", + "regenerationlongsplashpot": "splashregeneration2potion", + "regenerationextendedsplashpot": "splashregeneration2potion", + "regenerationexsplashpot": "splashregeneration2potion", + "regenerationlevel2splashpot": "splashregeneration2potion", + "regenerate2splashpot": "splashregeneration2potion", + "regeneratelongsplashpot": "splashregeneration2potion", + "regenerateextendedsplashpot": "splashregeneration2potion", + "regenerateexsplashpot": "splashregeneration2potion", + "regeneratelevel2splashpot": "splashregeneration2potion", + "regen2splashpot": "splashregeneration2potion", + "regenlongsplashpot": "splashregeneration2potion", + "regenextendedsplashpot": "splashregeneration2potion", + "regenexsplashpot": "splashregeneration2potion", + "regenlevel2splashpot": "splashregeneration2potion", + "lingerpotregeneration2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_regeneration", + "type": "REGEN", + "upgraded": false, + "extended": true + } + }, + "lingerpotregenerationlong": "lingerpotregeneration2", + "lingerpotregenerationextended": "lingerpotregeneration2", + "lingerpotregenerationex": "lingerpotregeneration2", + "lingerpotregenerationlevel2": "lingerpotregeneration2", + "lingerpotregenerate2": "lingerpotregeneration2", + "lingerpotregeneratelong": "lingerpotregeneration2", + "lingerpotregenerateextended": "lingerpotregeneration2", + "lingerpotregenerateex": "lingerpotregeneration2", + "lingerpotregeneratelevel2": "lingerpotregeneration2", + "lingerpotregen2": "lingerpotregeneration2", + "lingerpotregenlong": "lingerpotregeneration2", + "lingerpotregenextended": "lingerpotregeneration2", + "lingerpotregenex": "lingerpotregeneration2", + "lingerpotregenlevel2": "lingerpotregeneration2", + "regenerationlingerpot2": "lingerpotregeneration2", + "regenerationlingerpotlong": "lingerpotregeneration2", + "regenerationlingerpotextended": "lingerpotregeneration2", + "regenerationlingerpotex": "lingerpotregeneration2", + "regenerationlingerpotlevel2": "lingerpotregeneration2", + "regeneratelingerpot2": "lingerpotregeneration2", + "regeneratelingerpotlong": "lingerpotregeneration2", + "regeneratelingerpotextended": "lingerpotregeneration2", + "regeneratelingerpotex": "lingerpotregeneration2", + "regeneratelingerpotlevel2": "lingerpotregeneration2", + "regenlingerpot2": "lingerpotregeneration2", + "regenlingerpotlong": "lingerpotregeneration2", + "regenlingerpotextended": "lingerpotregeneration2", + "regenlingerpotex": "lingerpotregeneration2", + "regenlingerpotlevel2": "lingerpotregeneration2", + "aoepotionregeneration2": "lingerpotregeneration2", + "aoepotionregenerationlong": "lingerpotregeneration2", + "aoepotionregenerationextended": "lingerpotregeneration2", + "aoepotionregenerationex": "lingerpotregeneration2", + "aoepotionregenerationlevel2": "lingerpotregeneration2", + "aoepotionregenerate2": "lingerpotregeneration2", + "aoepotionregeneratelong": "lingerpotregeneration2", + "aoepotionregenerateextended": "lingerpotregeneration2", + "aoepotionregenerateex": "lingerpotregeneration2", + "aoepotionregeneratelevel2": "lingerpotregeneration2", + "aoepotionregen2": "lingerpotregeneration2", + "aoepotionregenlong": "lingerpotregeneration2", + "aoepotionregenextended": "lingerpotregeneration2", + "aoepotionregenex": "lingerpotregeneration2", + "aoepotionregenlevel2": "lingerpotregeneration2", + "regenerationaoepoiont2": "lingerpotregeneration2", + "regenerationaoepoiontlong": "lingerpotregeneration2", + "regenerationaoepoiontextended": "lingerpotregeneration2", + "regenerationaoepoiontex": "lingerpotregeneration2", + "regenerationaoepoiontlevel2": "lingerpotregeneration2", + "regenerateaoepoiont2": "lingerpotregeneration2", + "regenerateaoepoiontlong": "lingerpotregeneration2", + "regenerateaoepoiontextended": "lingerpotregeneration2", + "regenerateaoepoiontex": "lingerpotregeneration2", + "regenerateaoepoiontlevel2": "lingerpotregeneration2", + "regenaoepoiont2": "lingerpotregeneration2", + "regenaoepoiontlong": "lingerpotregeneration2", + "regenaoepoiontextended": "lingerpotregeneration2", + "regenaoepoiontex": "lingerpotregeneration2", + "regenaoepoiontlevel2": "lingerpotregeneration2", + "aoepotregeneration2": "lingerpotregeneration2", + "aoepotregenerationlong": "lingerpotregeneration2", + "aoepotregenerationextended": "lingerpotregeneration2", + "aoepotregenerationex": "lingerpotregeneration2", + "aoepotregenerationlevel2": "lingerpotregeneration2", + "aoepotregenerate2": "lingerpotregeneration2", + "aoepotregeneratelong": "lingerpotregeneration2", + "aoepotregenerateextended": "lingerpotregeneration2", + "aoepotregenerateex": "lingerpotregeneration2", + "aoepotregeneratelevel2": "lingerpotregeneration2", + "aoepotregen2": "lingerpotregeneration2", + "aoepotregenlong": "lingerpotregeneration2", + "aoepotregenextended": "lingerpotregeneration2", + "aoepotregenex": "lingerpotregeneration2", + "aoepotregenlevel2": "lingerpotregeneration2", + "regenerationaoepot2": "lingerpotregeneration2", + "regenerationaoepotlong": "lingerpotregeneration2", + "regenerationaoepotextended": "lingerpotregeneration2", + "regenerationaoepotex": "lingerpotregeneration2", + "regenerationaoepotlevel2": "lingerpotregeneration2", + "regenerateaoepot2": "lingerpotregeneration2", + "regenerateaoepotlong": "lingerpotregeneration2", + "regenerateaoepotextended": "lingerpotregeneration2", + "regenerateaoepotex": "lingerpotregeneration2", + "regenerateaoepotlevel2": "lingerpotregeneration2", + "regenaoepot2": "lingerpotregeneration2", + "regenaoepotlong": "lingerpotregeneration2", + "regenaoepotextended": "lingerpotregeneration2", + "regenaoepotex": "lingerpotregeneration2", + "regenaoepotlevel2": "lingerpotregeneration2", + "areapotionregeneration2": "lingerpotregeneration2", + "areapotionregenerationlong": "lingerpotregeneration2", + "areapotionregenerationextended": "lingerpotregeneration2", + "areapotionregenerationex": "lingerpotregeneration2", + "areapotionregenerationlevel2": "lingerpotregeneration2", + "areapotionregenerate2": "lingerpotregeneration2", + "areapotionregeneratelong": "lingerpotregeneration2", + "areapotionregenerateextended": "lingerpotregeneration2", + "areapotionregenerateex": "lingerpotregeneration2", + "areapotionregeneratelevel2": "lingerpotregeneration2", + "areapotionregen2": "lingerpotregeneration2", + "areapotionregenlong": "lingerpotregeneration2", + "areapotionregenextended": "lingerpotregeneration2", + "areapotionregenex": "lingerpotregeneration2", + "areapotionregenlevel2": "lingerpotregeneration2", + "regenerationareapotion2": "lingerpotregeneration2", + "regenerationareapotionlong": "lingerpotregeneration2", + "regenerationareapotionextended": "lingerpotregeneration2", + "regenerationareapotionex": "lingerpotregeneration2", + "regenerationareapotionlevel2": "lingerpotregeneration2", + "regenerateareapotion2": "lingerpotregeneration2", + "regenerateareapotionlong": "lingerpotregeneration2", + "regenerateareapotionextended": "lingerpotregeneration2", + "regenerateareapotionex": "lingerpotregeneration2", + "regenerateareapotionlevel2": "lingerpotregeneration2", + "regenareapotion2": "lingerpotregeneration2", + "regenareapotionlong": "lingerpotregeneration2", + "regenareapotionextended": "lingerpotregeneration2", + "regenareapotionex": "lingerpotregeneration2", + "regenareapotionlevel2": "lingerpotregeneration2", + "areapotregeneration2": "lingerpotregeneration2", + "areapotregenerationlong": "lingerpotregeneration2", + "areapotregenerationextended": "lingerpotregeneration2", + "areapotregenerationex": "lingerpotregeneration2", + "areapotregenerationlevel2": "lingerpotregeneration2", + "areapotregenerate2": "lingerpotregeneration2", + "areapotregeneratelong": "lingerpotregeneration2", + "areapotregenerateextended": "lingerpotregeneration2", + "areapotregenerateex": "lingerpotregeneration2", + "areapotregeneratelevel2": "lingerpotregeneration2", + "areapotregen2": "lingerpotregeneration2", + "areapotregenlong": "lingerpotregeneration2", + "areapotregenextended": "lingerpotregeneration2", + "areapotregenex": "lingerpotregeneration2", + "areapotregenlevel2": "lingerpotregeneration2", + "regenerationareapot2": "lingerpotregeneration2", + "regenerationareapotlong": "lingerpotregeneration2", + "regenerationareapotextended": "lingerpotregeneration2", + "regenerationareapotex": "lingerpotregeneration2", + "regenerationareapotlevel2": "lingerpotregeneration2", + "regenerateareapot2": "lingerpotregeneration2", + "regenerateareapotlong": "lingerpotregeneration2", + "regenerateareapotextended": "lingerpotregeneration2", + "regenerateareapotex": "lingerpotregeneration2", + "regenerateareapotlevel2": "lingerpotregeneration2", + "regenareapot2": "lingerpotregeneration2", + "regenareapotlong": "lingerpotregeneration2", + "regenareapotextended": "lingerpotregeneration2", + "regenareapotex": "lingerpotregeneration2", + "regenareapotlevel2": "lingerpotregeneration2", + "cloudpotionregeneration2": "lingerpotregeneration2", + "cloudpotionregenerationlong": "lingerpotregeneration2", + "cloudpotionregenerationextended": "lingerpotregeneration2", + "cloudpotionregenerationex": "lingerpotregeneration2", + "cloudpotionregenerationlevel2": "lingerpotregeneration2", + "cloudpotionregenerate2": "lingerpotregeneration2", + "cloudpotionregeneratelong": "lingerpotregeneration2", + "cloudpotionregenerateextended": "lingerpotregeneration2", + "cloudpotionregenerateex": "lingerpotregeneration2", + "cloudpotionregeneratelevel2": "lingerpotregeneration2", + "cloudpotionregen2": "lingerpotregeneration2", + "cloudpotionregenlong": "lingerpotregeneration2", + "cloudpotionregenextended": "lingerpotregeneration2", + "cloudpotionregenex": "lingerpotregeneration2", + "cloudpotionregenlevel2": "lingerpotregeneration2", + "regenerationcloudpotion2": "lingerpotregeneration2", + "regenerationcloudpotionlong": "lingerpotregeneration2", + "regenerationcloudpotionextended": "lingerpotregeneration2", + "regenerationcloudpotionex": "lingerpotregeneration2", + "regenerationcloudpotionlevel2": "lingerpotregeneration2", + "regeneratecloudpotion2": "lingerpotregeneration2", + "regeneratecloudpotionlong": "lingerpotregeneration2", + "regeneratecloudpotionextended": "lingerpotregeneration2", + "regeneratecloudpotionex": "lingerpotregeneration2", + "regeneratecloudpotionlevel2": "lingerpotregeneration2", + "regencloudpotion2": "lingerpotregeneration2", + "regencloudpotionlong": "lingerpotregeneration2", + "regencloudpotionextended": "lingerpotregeneration2", + "regencloudpotionex": "lingerpotregeneration2", + "regencloudpotionlevel2": "lingerpotregeneration2", + "cloudpotregeneration2": "lingerpotregeneration2", + "cloudpotregenerationlong": "lingerpotregeneration2", + "cloudpotregenerationextended": "lingerpotregeneration2", + "cloudpotregenerationex": "lingerpotregeneration2", + "cloudpotregenerationlevel2": "lingerpotregeneration2", + "cloudpotregenerate2": "lingerpotregeneration2", + "cloudpotregeneratelong": "lingerpotregeneration2", + "cloudpotregenerateextended": "lingerpotregeneration2", + "cloudpotregenerateex": "lingerpotregeneration2", + "cloudpotregeneratelevel2": "lingerpotregeneration2", + "cloudpotregen2": "lingerpotregeneration2", + "cloudpotregenlong": "lingerpotregeneration2", + "cloudpotregenextended": "lingerpotregeneration2", + "cloudpotregenex": "lingerpotregeneration2", + "cloudpotregenlevel2": "lingerpotregeneration2", + "regenerationcloudpot2": "lingerpotregeneration2", + "regenerationcloudpotlong": "lingerpotregeneration2", + "regenerationcloudpotextended": "lingerpotregeneration2", + "regenerationcloudpotex": "lingerpotregeneration2", + "regenerationcloudpotlevel2": "lingerpotregeneration2", + "regeneratecloudpot2": "lingerpotregeneration2", + "regeneratecloudpotlong": "lingerpotregeneration2", + "regeneratecloudpotextended": "lingerpotregeneration2", + "regeneratecloudpotex": "lingerpotregeneration2", + "regeneratecloudpotlevel2": "lingerpotregeneration2", + "regencloudpot2": "lingerpotregeneration2", + "regencloudpotlong": "lingerpotregeneration2", + "regencloudpotextended": "lingerpotregeneration2", + "regencloudpotex": "lingerpotregeneration2", + "regencloudpotlevel2": "lingerpotregeneration2", + "arrowregeneration2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_regeneration", + "type": "REGEN", + "upgraded": false, + "extended": true + } + }, + "arrowregenerationlong": "arrowregeneration2", + "arrowregenerationextended": "arrowregeneration2", + "arrowregenerationex": "arrowregeneration2", + "arrowregenerationlevel2": "arrowregeneration2", + "arrowregenerate2": "arrowregeneration2", + "arrowregeneratelong": "arrowregeneration2", + "arrowregenerateextended": "arrowregeneration2", + "arrowregenerateex": "arrowregeneration2", + "arrowregeneratelevel2": "arrowregeneration2", + "arrowregen2": "arrowregeneration2", + "arrowregenlong": "arrowregeneration2", + "arrowregenextended": "arrowregeneration2", + "arrowregenex": "arrowregeneration2", + "arrowregenlevel2": "arrowregeneration2", + "regenerationarrow2": "arrowregeneration2", + "regenerationarrowlong": "arrowregeneration2", + "regenerationarrowextended": "arrowregeneration2", + "regenerationarrowex": "arrowregeneration2", + "regenerationarrowlevel2": "arrowregeneration2", + "regeneratearrow2": "arrowregeneration2", + "regeneratearrowlong": "arrowregeneration2", + "regeneratearrowextended": "arrowregeneration2", + "regeneratearrowex": "arrowregeneration2", + "regeneratearrowlevel2": "arrowregeneration2", + "regenarrow2": "arrowregeneration2", + "regenarrowlong": "arrowregeneration2", + "regenarrowextended": "arrowregeneration2", + "regenarrowex": "arrowregeneration2", + "regenarrowlevel2": "arrowregeneration2", + "strengthpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strength", + "type": "STRENGTH", + "upgraded": false, + "extended": false + } + }, + "strongpotion": "strengthpotion", + "strpotion": "strengthpotion", + "strengthpot": "strengthpotion", + "strongpot": "strengthpotion", + "strpot": "strengthpotion", + "potionofstrength": "strengthpotion", + "potionofstrong": "strengthpotion", + "potionofstr": "strengthpotion", + "potofstrength": "strengthpotion", + "potofstrong": "strengthpotion", + "potofstr": "strengthpotion", + "splashstrengthpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strength", + "type": "STRENGTH", + "upgraded": false, + "extended": false + } + }, + "splashstrongpotion": "splashstrengthpotion", + "splashstrpotion": "splashstrengthpotion", + "splstrengthpotion": "splashstrengthpotion", + "splstrongpotion": "splashstrengthpotion", + "splstrpotion": "splashstrengthpotion", + "strengthsplashpotion": "splashstrengthpotion", + "strongsplashpotion": "splashstrengthpotion", + "strsplashpotion": "splashstrengthpotion", + "splashstrengthpot": "splashstrengthpotion", + "splashstrongpot": "splashstrengthpotion", + "splashstrpot": "splashstrengthpotion", + "splstrengthpot": "splashstrengthpotion", + "splstrongpot": "splashstrengthpotion", + "splstrpot": "splashstrengthpotion", + "strengthsplashpot": "splashstrengthpotion", + "strongsplashpot": "splashstrengthpotion", + "strsplashpot": "splashstrengthpotion", + "lingerpotstrength": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strength", + "type": "STRENGTH", + "upgraded": false, + "extended": false + } + }, + "lingerpotstrong": "lingerpotstrength", + "lingerpotstr": "lingerpotstrength", + "strengthlingerpot": "lingerpotstrength", + "stronglingerpot": "lingerpotstrength", + "strlingerpot": "lingerpotstrength", + "aoepotionstrength": "lingerpotstrength", + "aoepotionstrong": "lingerpotstrength", + "aoepotionstr": "lingerpotstrength", + "strengthaoepoiont": "lingerpotstrength", + "strongaoepoiont": "lingerpotstrength", + "straoepoiont": "lingerpotstrength", + "aoepotstrength": "lingerpotstrength", + "aoepotstrong": "lingerpotstrength", + "aoepotstr": "lingerpotstrength", + "strengthaoepot": "lingerpotstrength", + "strongaoepot": "lingerpotstrength", + "straoepot": "lingerpotstrength", + "areapotionstrength": "lingerpotstrength", + "areapotionstrong": "lingerpotstrength", + "areapotionstr": "lingerpotstrength", + "strengthareapotion": "lingerpotstrength", + "strongareapotion": "lingerpotstrength", + "strareapotion": "lingerpotstrength", + "areapotstrength": "lingerpotstrength", + "areapotstrong": "lingerpotstrength", + "areapotstr": "lingerpotstrength", + "strengthareapot": "lingerpotstrength", + "strongareapot": "lingerpotstrength", + "strareapot": "lingerpotstrength", + "cloudpotionstrength": "lingerpotstrength", + "cloudpotionstrong": "lingerpotstrength", + "cloudpotionstr": "lingerpotstrength", + "strengthcloudpotion": "lingerpotstrength", + "strongcloudpotion": "lingerpotstrength", + "strcloudpotion": "lingerpotstrength", + "cloudpotstrength": "lingerpotstrength", + "cloudpotstrong": "lingerpotstrength", + "cloudpotstr": "lingerpotstrength", + "strengthcloudpot": "lingerpotstrength", + "strongcloudpot": "lingerpotstrength", + "strcloudpot": "lingerpotstrength", + "arrowstrength": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strength", + "type": "STRENGTH", + "upgraded": false, + "extended": false + } + }, + "arrowstrong": "arrowstrength", + "arrowstr": "arrowstrength", + "strengtharrow": "arrowstrength", + "strongarrow": "arrowstrength", + "strarrow": "arrowstrength", + "strengthiipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_strength", + "type": "STRENGTH", + "upgraded": true, + "extended": false + } + }, + "strengthstrongpotion": "strengthiipotion", + "strengthleveliipotion": "strengthiipotion", + "strongiipotion": "strengthiipotion", + "strongstrongpotion": "strengthiipotion", + "strongleveliipotion": "strengthiipotion", + "striipotion": "strengthiipotion", + "strstrongpotion": "strengthiipotion", + "strleveliipotion": "strengthiipotion", + "strengthiipot": "strengthiipotion", + "strengthstrongpot": "strengthiipotion", + "strengthleveliipot": "strengthiipotion", + "strongiipot": "strengthiipotion", + "strongstrongpot": "strengthiipotion", + "strongleveliipot": "strengthiipotion", + "striipot": "strengthiipotion", + "strstrongpot": "strengthiipotion", + "strleveliipot": "strengthiipotion", + "potionofstrengthii": "strengthiipotion", + "potionofstrengthstrong": "strengthiipotion", + "potionofstrengthlevelii": "strengthiipotion", + "potionofstrongii": "strengthiipotion", + "potionofstrongstrong": "strengthiipotion", + "potionofstronglevelii": "strengthiipotion", + "potionofstrii": "strengthiipotion", + "potionofstrstrong": "strengthiipotion", + "potionofstrlevelii": "strengthiipotion", + "potofstrengthii": "strengthiipotion", + "potofstrengthstrong": "strengthiipotion", + "potofstrengthlevelii": "strengthiipotion", + "potofstrongii": "strengthiipotion", + "potofstrongstrong": "strengthiipotion", + "potofstronglevelii": "strengthiipotion", + "potofstrii": "strengthiipotion", + "potofstrstrong": "strengthiipotion", + "potofstrlevelii": "strengthiipotion", + "splashstrengthiipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_strength", + "type": "STRENGTH", + "upgraded": true, + "extended": false + } + }, + "splashstrengthstrongpotion": "splashstrengthiipotion", + "splashstrengthleveliipotion": "splashstrengthiipotion", + "splashstrongiipotion": "splashstrengthiipotion", + "splashstrongstrongpotion": "splashstrengthiipotion", + "splashstrongleveliipotion": "splashstrengthiipotion", + "splashstriipotion": "splashstrengthiipotion", + "splashstrstrongpotion": "splashstrengthiipotion", + "splashstrleveliipotion": "splashstrengthiipotion", + "splstrengthiipotion": "splashstrengthiipotion", + "splstrengthstrongpotion": "splashstrengthiipotion", + "splstrengthleveliipotion": "splashstrengthiipotion", + "splstrongiipotion": "splashstrengthiipotion", + "splstrongstrongpotion": "splashstrengthiipotion", + "splstrongleveliipotion": "splashstrengthiipotion", + "splstriipotion": "splashstrengthiipotion", + "splstrstrongpotion": "splashstrengthiipotion", + "splstrleveliipotion": "splashstrengthiipotion", + "strengthiisplashpotion": "splashstrengthiipotion", + "strengthstrongsplashpotion": "splashstrengthiipotion", + "strengthleveliisplashpotion": "splashstrengthiipotion", + "strongiisplashpotion": "splashstrengthiipotion", + "strongstrongsplashpotion": "splashstrengthiipotion", + "strongleveliisplashpotion": "splashstrengthiipotion", + "striisplashpotion": "splashstrengthiipotion", + "strstrongsplashpotion": "splashstrengthiipotion", + "strleveliisplashpotion": "splashstrengthiipotion", + "splashstrengthiipot": "splashstrengthiipotion", + "splashstrengthstrongpot": "splashstrengthiipotion", + "splashstrengthleveliipot": "splashstrengthiipotion", + "splashstrongiipot": "splashstrengthiipotion", + "splashstrongstrongpot": "splashstrengthiipotion", + "splashstrongleveliipot": "splashstrengthiipotion", + "splashstriipot": "splashstrengthiipotion", + "splashstrstrongpot": "splashstrengthiipotion", + "splashstrleveliipot": "splashstrengthiipotion", + "splstrengthiipot": "splashstrengthiipotion", + "splstrengthstrongpot": "splashstrengthiipotion", + "splstrengthleveliipot": "splashstrengthiipotion", + "splstrongiipot": "splashstrengthiipotion", + "splstrongstrongpot": "splashstrengthiipotion", + "splstrongleveliipot": "splashstrengthiipotion", + "splstriipot": "splashstrengthiipotion", + "splstrstrongpot": "splashstrengthiipotion", + "splstrleveliipot": "splashstrengthiipotion", + "strengthiisplashpot": "splashstrengthiipotion", + "strengthstrongsplashpot": "splashstrengthiipotion", + "strengthleveliisplashpot": "splashstrengthiipotion", + "strongiisplashpot": "splashstrengthiipotion", + "strongstrongsplashpot": "splashstrengthiipotion", + "strongleveliisplashpot": "splashstrengthiipotion", + "striisplashpot": "splashstrengthiipotion", + "strstrongsplashpot": "splashstrengthiipotion", + "strleveliisplashpot": "splashstrengthiipotion", + "lingerpotstrengthii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_strength", + "type": "STRENGTH", + "upgraded": true, + "extended": false + } + }, + "lingerpotstrengthstrong": "lingerpotstrengthii", + "lingerpotstrengthlevelii": "lingerpotstrengthii", + "lingerpotstrongii": "lingerpotstrengthii", + "lingerpotstrongstrong": "lingerpotstrengthii", + "lingerpotstronglevelii": "lingerpotstrengthii", + "lingerpotstrii": "lingerpotstrengthii", + "lingerpotstrstrong": "lingerpotstrengthii", + "lingerpotstrlevelii": "lingerpotstrengthii", + "strengthlingerpotii": "lingerpotstrengthii", + "strengthlingerpotstrong": "lingerpotstrengthii", + "strengthlingerpotlevelii": "lingerpotstrengthii", + "stronglingerpotii": "lingerpotstrengthii", + "stronglingerpotstrong": "lingerpotstrengthii", + "stronglingerpotlevelii": "lingerpotstrengthii", + "strlingerpotii": "lingerpotstrengthii", + "strlingerpotstrong": "lingerpotstrengthii", + "strlingerpotlevelii": "lingerpotstrengthii", + "aoepotionstrengthii": "lingerpotstrengthii", + "aoepotionstrengthstrong": "lingerpotstrengthii", + "aoepotionstrengthlevelii": "lingerpotstrengthii", + "aoepotionstrongii": "lingerpotstrengthii", + "aoepotionstrongstrong": "lingerpotstrengthii", + "aoepotionstronglevelii": "lingerpotstrengthii", + "aoepotionstrii": "lingerpotstrengthii", + "aoepotionstrstrong": "lingerpotstrengthii", + "aoepotionstrlevelii": "lingerpotstrengthii", + "strengthaoepoiontii": "lingerpotstrengthii", + "strengthaoepoiontstrong": "lingerpotstrengthii", + "strengthaoepoiontlevelii": "lingerpotstrengthii", + "strongaoepoiontii": "lingerpotstrengthii", + "strongaoepoiontstrong": "lingerpotstrengthii", + "strongaoepoiontlevelii": "lingerpotstrengthii", + "straoepoiontii": "lingerpotstrengthii", + "straoepoiontstrong": "lingerpotstrengthii", + "straoepoiontlevelii": "lingerpotstrengthii", + "aoepotstrengthii": "lingerpotstrengthii", + "aoepotstrengthstrong": "lingerpotstrengthii", + "aoepotstrengthlevelii": "lingerpotstrengthii", + "aoepotstrongii": "lingerpotstrengthii", + "aoepotstrongstrong": "lingerpotstrengthii", + "aoepotstronglevelii": "lingerpotstrengthii", + "aoepotstrii": "lingerpotstrengthii", + "aoepotstrstrong": "lingerpotstrengthii", + "aoepotstrlevelii": "lingerpotstrengthii", + "strengthaoepotii": "lingerpotstrengthii", + "strengthaoepotstrong": "lingerpotstrengthii", + "strengthaoepotlevelii": "lingerpotstrengthii", + "strongaoepotii": "lingerpotstrengthii", + "strongaoepotstrong": "lingerpotstrengthii", + "strongaoepotlevelii": "lingerpotstrengthii", + "straoepotii": "lingerpotstrengthii", + "straoepotstrong": "lingerpotstrengthii", + "straoepotlevelii": "lingerpotstrengthii", + "areapotionstrengthii": "lingerpotstrengthii", + "areapotionstrengthstrong": "lingerpotstrengthii", + "areapotionstrengthlevelii": "lingerpotstrengthii", + "areapotionstrongii": "lingerpotstrengthii", + "areapotionstrongstrong": "lingerpotstrengthii", + "areapotionstronglevelii": "lingerpotstrengthii", + "areapotionstrii": "lingerpotstrengthii", + "areapotionstrstrong": "lingerpotstrengthii", + "areapotionstrlevelii": "lingerpotstrengthii", + "strengthareapotionii": "lingerpotstrengthii", + "strengthareapotionstrong": "lingerpotstrengthii", + "strengthareapotionlevelii": "lingerpotstrengthii", + "strongareapotionii": "lingerpotstrengthii", + "strongareapotionstrong": "lingerpotstrengthii", + "strongareapotionlevelii": "lingerpotstrengthii", + "strareapotionii": "lingerpotstrengthii", + "strareapotionstrong": "lingerpotstrengthii", + "strareapotionlevelii": "lingerpotstrengthii", + "areapotstrengthii": "lingerpotstrengthii", + "areapotstrengthstrong": "lingerpotstrengthii", + "areapotstrengthlevelii": "lingerpotstrengthii", + "areapotstrongii": "lingerpotstrengthii", + "areapotstrongstrong": "lingerpotstrengthii", + "areapotstronglevelii": "lingerpotstrengthii", + "areapotstrii": "lingerpotstrengthii", + "areapotstrstrong": "lingerpotstrengthii", + "areapotstrlevelii": "lingerpotstrengthii", + "strengthareapotii": "lingerpotstrengthii", + "strengthareapotstrong": "lingerpotstrengthii", + "strengthareapotlevelii": "lingerpotstrengthii", + "strongareapotii": "lingerpotstrengthii", + "strongareapotstrong": "lingerpotstrengthii", + "strongareapotlevelii": "lingerpotstrengthii", + "strareapotii": "lingerpotstrengthii", + "strareapotstrong": "lingerpotstrengthii", + "strareapotlevelii": "lingerpotstrengthii", + "cloudpotionstrengthii": "lingerpotstrengthii", + "cloudpotionstrengthstrong": "lingerpotstrengthii", + "cloudpotionstrengthlevelii": "lingerpotstrengthii", + "cloudpotionstrongii": "lingerpotstrengthii", + "cloudpotionstrongstrong": "lingerpotstrengthii", + "cloudpotionstronglevelii": "lingerpotstrengthii", + "cloudpotionstrii": "lingerpotstrengthii", + "cloudpotionstrstrong": "lingerpotstrengthii", + "cloudpotionstrlevelii": "lingerpotstrengthii", + "strengthcloudpotionii": "lingerpotstrengthii", + "strengthcloudpotionstrong": "lingerpotstrengthii", + "strengthcloudpotionlevelii": "lingerpotstrengthii", + "strongcloudpotionii": "lingerpotstrengthii", + "strongcloudpotionstrong": "lingerpotstrengthii", + "strongcloudpotionlevelii": "lingerpotstrengthii", + "strcloudpotionii": "lingerpotstrengthii", + "strcloudpotionstrong": "lingerpotstrengthii", + "strcloudpotionlevelii": "lingerpotstrengthii", + "cloudpotstrengthii": "lingerpotstrengthii", + "cloudpotstrengthstrong": "lingerpotstrengthii", + "cloudpotstrengthlevelii": "lingerpotstrengthii", + "cloudpotstrongii": "lingerpotstrengthii", + "cloudpotstrongstrong": "lingerpotstrengthii", + "cloudpotstronglevelii": "lingerpotstrengthii", + "cloudpotstrii": "lingerpotstrengthii", + "cloudpotstrstrong": "lingerpotstrengthii", + "cloudpotstrlevelii": "lingerpotstrengthii", + "strengthcloudpotii": "lingerpotstrengthii", + "strengthcloudpotstrong": "lingerpotstrengthii", + "strengthcloudpotlevelii": "lingerpotstrengthii", + "strongcloudpotii": "lingerpotstrengthii", + "strongcloudpotstrong": "lingerpotstrengthii", + "strongcloudpotlevelii": "lingerpotstrengthii", + "strcloudpotii": "lingerpotstrengthii", + "strcloudpotstrong": "lingerpotstrengthii", + "strcloudpotlevelii": "lingerpotstrengthii", + "arrowstrengthii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_strength", + "type": "STRENGTH", + "upgraded": true, + "extended": false + } + }, + "arrowstrengthstrong": "arrowstrengthii", + "arrowstrengthlevelii": "arrowstrengthii", + "arrowstrongii": "arrowstrengthii", + "arrowstrongstrong": "arrowstrengthii", + "arrowstronglevelii": "arrowstrengthii", + "arrowstrii": "arrowstrengthii", + "arrowstrstrong": "arrowstrengthii", + "arrowstrlevelii": "arrowstrengthii", + "strengtharrowii": "arrowstrengthii", + "strengtharrowstrong": "arrowstrengthii", + "strengtharrowlevelii": "arrowstrengthii", + "strongarrowii": "arrowstrengthii", + "strongarrowstrong": "arrowstrengthii", + "strongarrowlevelii": "arrowstrengthii", + "strarrowii": "arrowstrengthii", + "strarrowstrong": "arrowstrengthii", + "strarrowlevelii": "arrowstrengthii", + "strength2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_strength", + "type": "STRENGTH", + "upgraded": false, + "extended": true + } + }, + "strengthlongpotion": "strength2potion", + "strengthextendedpotion": "strength2potion", + "strengthexpotion": "strength2potion", + "strengthlevel2potion": "strength2potion", + "strong2potion": "strength2potion", + "stronglongpotion": "strength2potion", + "strongextendedpotion": "strength2potion", + "strongexpotion": "strength2potion", + "stronglevel2potion": "strength2potion", + "str2potion": "strength2potion", + "strlongpotion": "strength2potion", + "strextendedpotion": "strength2potion", + "strexpotion": "strength2potion", + "strlevel2potion": "strength2potion", + "strength2pot": "strength2potion", + "strengthlongpot": "strength2potion", + "strengthextendedpot": "strength2potion", + "strengthexpot": "strength2potion", + "strengthlevel2pot": "strength2potion", + "strong2pot": "strength2potion", + "stronglongpot": "strength2potion", + "strongextendedpot": "strength2potion", + "strongexpot": "strength2potion", + "stronglevel2pot": "strength2potion", + "str2pot": "strength2potion", + "strlongpot": "strength2potion", + "strextendedpot": "strength2potion", + "strexpot": "strength2potion", + "strlevel2pot": "strength2potion", + "potionofstrength2": "strength2potion", + "potionofstrengthlong": "strength2potion", + "potionofstrengthextended": "strength2potion", + "potionofstrengthex": "strength2potion", + "potionofstrengthlevel2": "strength2potion", + "potionofstrong2": "strength2potion", + "potionofstronglong": "strength2potion", + "potionofstrongextended": "strength2potion", + "potionofstrongex": "strength2potion", + "potionofstronglevel2": "strength2potion", + "potionofstr2": "strength2potion", + "potionofstrlong": "strength2potion", + "potionofstrextended": "strength2potion", + "potionofstrex": "strength2potion", + "potionofstrlevel2": "strength2potion", + "potofstrength2": "strength2potion", + "potofstrengthlong": "strength2potion", + "potofstrengthextended": "strength2potion", + "potofstrengthex": "strength2potion", + "potofstrengthlevel2": "strength2potion", + "potofstrong2": "strength2potion", + "potofstronglong": "strength2potion", + "potofstrongextended": "strength2potion", + "potofstrongex": "strength2potion", + "potofstronglevel2": "strength2potion", + "potofstr2": "strength2potion", + "potofstrlong": "strength2potion", + "potofstrextended": "strength2potion", + "potofstrex": "strength2potion", + "potofstrlevel2": "strength2potion", + "splashstrength2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_strength", + "type": "STRENGTH", + "upgraded": false, + "extended": true + } + }, + "splashstrengthlongpotion": "splashstrength2potion", + "splashstrengthextendedpotion": "splashstrength2potion", + "splashstrengthexpotion": "splashstrength2potion", + "splashstrengthlevel2potion": "splashstrength2potion", + "splashstrong2potion": "splashstrength2potion", + "splashstronglongpotion": "splashstrength2potion", + "splashstrongextendedpotion": "splashstrength2potion", + "splashstrongexpotion": "splashstrength2potion", + "splashstronglevel2potion": "splashstrength2potion", + "splashstr2potion": "splashstrength2potion", + "splashstrlongpotion": "splashstrength2potion", + "splashstrextendedpotion": "splashstrength2potion", + "splashstrexpotion": "splashstrength2potion", + "splashstrlevel2potion": "splashstrength2potion", + "splstrength2potion": "splashstrength2potion", + "splstrengthlongpotion": "splashstrength2potion", + "splstrengthextendedpotion": "splashstrength2potion", + "splstrengthexpotion": "splashstrength2potion", + "splstrengthlevel2potion": "splashstrength2potion", + "splstrong2potion": "splashstrength2potion", + "splstronglongpotion": "splashstrength2potion", + "splstrongextendedpotion": "splashstrength2potion", + "splstrongexpotion": "splashstrength2potion", + "splstronglevel2potion": "splashstrength2potion", + "splstr2potion": "splashstrength2potion", + "splstrlongpotion": "splashstrength2potion", + "splstrextendedpotion": "splashstrength2potion", + "splstrexpotion": "splashstrength2potion", + "splstrlevel2potion": "splashstrength2potion", + "strength2splashpotion": "splashstrength2potion", + "strengthlongsplashpotion": "splashstrength2potion", + "strengthextendedsplashpotion": "splashstrength2potion", + "strengthexsplashpotion": "splashstrength2potion", + "strengthlevel2splashpotion": "splashstrength2potion", + "strong2splashpotion": "splashstrength2potion", + "stronglongsplashpotion": "splashstrength2potion", + "strongextendedsplashpotion": "splashstrength2potion", + "strongexsplashpotion": "splashstrength2potion", + "stronglevel2splashpotion": "splashstrength2potion", + "str2splashpotion": "splashstrength2potion", + "strlongsplashpotion": "splashstrength2potion", + "strextendedsplashpotion": "splashstrength2potion", + "strexsplashpotion": "splashstrength2potion", + "strlevel2splashpotion": "splashstrength2potion", + "splashstrength2pot": "splashstrength2potion", + "splashstrengthlongpot": "splashstrength2potion", + "splashstrengthextendedpot": "splashstrength2potion", + "splashstrengthexpot": "splashstrength2potion", + "splashstrengthlevel2pot": "splashstrength2potion", + "splashstrong2pot": "splashstrength2potion", + "splashstronglongpot": "splashstrength2potion", + "splashstrongextendedpot": "splashstrength2potion", + "splashstrongexpot": "splashstrength2potion", + "splashstronglevel2pot": "splashstrength2potion", + "splashstr2pot": "splashstrength2potion", + "splashstrlongpot": "splashstrength2potion", + "splashstrextendedpot": "splashstrength2potion", + "splashstrexpot": "splashstrength2potion", + "splashstrlevel2pot": "splashstrength2potion", + "splstrength2pot": "splashstrength2potion", + "splstrengthlongpot": "splashstrength2potion", + "splstrengthextendedpot": "splashstrength2potion", + "splstrengthexpot": "splashstrength2potion", + "splstrengthlevel2pot": "splashstrength2potion", + "splstrong2pot": "splashstrength2potion", + "splstronglongpot": "splashstrength2potion", + "splstrongextendedpot": "splashstrength2potion", + "splstrongexpot": "splashstrength2potion", + "splstronglevel2pot": "splashstrength2potion", + "splstr2pot": "splashstrength2potion", + "splstrlongpot": "splashstrength2potion", + "splstrextendedpot": "splashstrength2potion", + "splstrexpot": "splashstrength2potion", + "splstrlevel2pot": "splashstrength2potion", + "strength2splashpot": "splashstrength2potion", + "strengthlongsplashpot": "splashstrength2potion", + "strengthextendedsplashpot": "splashstrength2potion", + "strengthexsplashpot": "splashstrength2potion", + "strengthlevel2splashpot": "splashstrength2potion", + "strong2splashpot": "splashstrength2potion", + "stronglongsplashpot": "splashstrength2potion", + "strongextendedsplashpot": "splashstrength2potion", + "strongexsplashpot": "splashstrength2potion", + "stronglevel2splashpot": "splashstrength2potion", + "str2splashpot": "splashstrength2potion", + "strlongsplashpot": "splashstrength2potion", + "strextendedsplashpot": "splashstrength2potion", + "strexsplashpot": "splashstrength2potion", + "strlevel2splashpot": "splashstrength2potion", + "lingerpotstrength2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_strength", + "type": "STRENGTH", + "upgraded": false, + "extended": true + } + }, + "lingerpotstrengthlong": "lingerpotstrength2", + "lingerpotstrengthextended": "lingerpotstrength2", + "lingerpotstrengthex": "lingerpotstrength2", + "lingerpotstrengthlevel2": "lingerpotstrength2", + "lingerpotstrong2": "lingerpotstrength2", + "lingerpotstronglong": "lingerpotstrength2", + "lingerpotstrongextended": "lingerpotstrength2", + "lingerpotstrongex": "lingerpotstrength2", + "lingerpotstronglevel2": "lingerpotstrength2", + "lingerpotstr2": "lingerpotstrength2", + "lingerpotstrlong": "lingerpotstrength2", + "lingerpotstrextended": "lingerpotstrength2", + "lingerpotstrex": "lingerpotstrength2", + "lingerpotstrlevel2": "lingerpotstrength2", + "strengthlingerpot2": "lingerpotstrength2", + "strengthlingerpotlong": "lingerpotstrength2", + "strengthlingerpotextended": "lingerpotstrength2", + "strengthlingerpotex": "lingerpotstrength2", + "strengthlingerpotlevel2": "lingerpotstrength2", + "stronglingerpot2": "lingerpotstrength2", + "stronglingerpotlong": "lingerpotstrength2", + "stronglingerpotextended": "lingerpotstrength2", + "stronglingerpotex": "lingerpotstrength2", + "stronglingerpotlevel2": "lingerpotstrength2", + "strlingerpot2": "lingerpotstrength2", + "strlingerpotlong": "lingerpotstrength2", + "strlingerpotextended": "lingerpotstrength2", + "strlingerpotex": "lingerpotstrength2", + "strlingerpotlevel2": "lingerpotstrength2", + "aoepotionstrength2": "lingerpotstrength2", + "aoepotionstrengthlong": "lingerpotstrength2", + "aoepotionstrengthextended": "lingerpotstrength2", + "aoepotionstrengthex": "lingerpotstrength2", + "aoepotionstrengthlevel2": "lingerpotstrength2", + "aoepotionstrong2": "lingerpotstrength2", + "aoepotionstronglong": "lingerpotstrength2", + "aoepotionstrongextended": "lingerpotstrength2", + "aoepotionstrongex": "lingerpotstrength2", + "aoepotionstronglevel2": "lingerpotstrength2", + "aoepotionstr2": "lingerpotstrength2", + "aoepotionstrlong": "lingerpotstrength2", + "aoepotionstrextended": "lingerpotstrength2", + "aoepotionstrex": "lingerpotstrength2", + "aoepotionstrlevel2": "lingerpotstrength2", + "strengthaoepoiont2": "lingerpotstrength2", + "strengthaoepoiontlong": "lingerpotstrength2", + "strengthaoepoiontextended": "lingerpotstrength2", + "strengthaoepoiontex": "lingerpotstrength2", + "strengthaoepoiontlevel2": "lingerpotstrength2", + "strongaoepoiont2": "lingerpotstrength2", + "strongaoepoiontlong": "lingerpotstrength2", + "strongaoepoiontextended": "lingerpotstrength2", + "strongaoepoiontex": "lingerpotstrength2", + "strongaoepoiontlevel2": "lingerpotstrength2", + "straoepoiont2": "lingerpotstrength2", + "straoepoiontlong": "lingerpotstrength2", + "straoepoiontextended": "lingerpotstrength2", + "straoepoiontex": "lingerpotstrength2", + "straoepoiontlevel2": "lingerpotstrength2", + "aoepotstrength2": "lingerpotstrength2", + "aoepotstrengthlong": "lingerpotstrength2", + "aoepotstrengthextended": "lingerpotstrength2", + "aoepotstrengthex": "lingerpotstrength2", + "aoepotstrengthlevel2": "lingerpotstrength2", + "aoepotstrong2": "lingerpotstrength2", + "aoepotstronglong": "lingerpotstrength2", + "aoepotstrongextended": "lingerpotstrength2", + "aoepotstrongex": "lingerpotstrength2", + "aoepotstronglevel2": "lingerpotstrength2", + "aoepotstr2": "lingerpotstrength2", + "aoepotstrlong": "lingerpotstrength2", + "aoepotstrextended": "lingerpotstrength2", + "aoepotstrex": "lingerpotstrength2", + "aoepotstrlevel2": "lingerpotstrength2", + "strengthaoepot2": "lingerpotstrength2", + "strengthaoepotlong": "lingerpotstrength2", + "strengthaoepotextended": "lingerpotstrength2", + "strengthaoepotex": "lingerpotstrength2", + "strengthaoepotlevel2": "lingerpotstrength2", + "strongaoepot2": "lingerpotstrength2", + "strongaoepotlong": "lingerpotstrength2", + "strongaoepotextended": "lingerpotstrength2", + "strongaoepotex": "lingerpotstrength2", + "strongaoepotlevel2": "lingerpotstrength2", + "straoepot2": "lingerpotstrength2", + "straoepotlong": "lingerpotstrength2", + "straoepotextended": "lingerpotstrength2", + "straoepotex": "lingerpotstrength2", + "straoepotlevel2": "lingerpotstrength2", + "areapotionstrength2": "lingerpotstrength2", + "areapotionstrengthlong": "lingerpotstrength2", + "areapotionstrengthextended": "lingerpotstrength2", + "areapotionstrengthex": "lingerpotstrength2", + "areapotionstrengthlevel2": "lingerpotstrength2", + "areapotionstrong2": "lingerpotstrength2", + "areapotionstronglong": "lingerpotstrength2", + "areapotionstrongextended": "lingerpotstrength2", + "areapotionstrongex": "lingerpotstrength2", + "areapotionstronglevel2": "lingerpotstrength2", + "areapotionstr2": "lingerpotstrength2", + "areapotionstrlong": "lingerpotstrength2", + "areapotionstrextended": "lingerpotstrength2", + "areapotionstrex": "lingerpotstrength2", + "areapotionstrlevel2": "lingerpotstrength2", + "strengthareapotion2": "lingerpotstrength2", + "strengthareapotionlong": "lingerpotstrength2", + "strengthareapotionextended": "lingerpotstrength2", + "strengthareapotionex": "lingerpotstrength2", + "strengthareapotionlevel2": "lingerpotstrength2", + "strongareapotion2": "lingerpotstrength2", + "strongareapotionlong": "lingerpotstrength2", + "strongareapotionextended": "lingerpotstrength2", + "strongareapotionex": "lingerpotstrength2", + "strongareapotionlevel2": "lingerpotstrength2", + "strareapotion2": "lingerpotstrength2", + "strareapotionlong": "lingerpotstrength2", + "strareapotionextended": "lingerpotstrength2", + "strareapotionex": "lingerpotstrength2", + "strareapotionlevel2": "lingerpotstrength2", + "areapotstrength2": "lingerpotstrength2", + "areapotstrengthlong": "lingerpotstrength2", + "areapotstrengthextended": "lingerpotstrength2", + "areapotstrengthex": "lingerpotstrength2", + "areapotstrengthlevel2": "lingerpotstrength2", + "areapotstrong2": "lingerpotstrength2", + "areapotstronglong": "lingerpotstrength2", + "areapotstrongextended": "lingerpotstrength2", + "areapotstrongex": "lingerpotstrength2", + "areapotstronglevel2": "lingerpotstrength2", + "areapotstr2": "lingerpotstrength2", + "areapotstrlong": "lingerpotstrength2", + "areapotstrextended": "lingerpotstrength2", + "areapotstrex": "lingerpotstrength2", + "areapotstrlevel2": "lingerpotstrength2", + "strengthareapot2": "lingerpotstrength2", + "strengthareapotlong": "lingerpotstrength2", + "strengthareapotextended": "lingerpotstrength2", + "strengthareapotex": "lingerpotstrength2", + "strengthareapotlevel2": "lingerpotstrength2", + "strongareapot2": "lingerpotstrength2", + "strongareapotlong": "lingerpotstrength2", + "strongareapotextended": "lingerpotstrength2", + "strongareapotex": "lingerpotstrength2", + "strongareapotlevel2": "lingerpotstrength2", + "strareapot2": "lingerpotstrength2", + "strareapotlong": "lingerpotstrength2", + "strareapotextended": "lingerpotstrength2", + "strareapotex": "lingerpotstrength2", + "strareapotlevel2": "lingerpotstrength2", + "cloudpotionstrength2": "lingerpotstrength2", + "cloudpotionstrengthlong": "lingerpotstrength2", + "cloudpotionstrengthextended": "lingerpotstrength2", + "cloudpotionstrengthex": "lingerpotstrength2", + "cloudpotionstrengthlevel2": "lingerpotstrength2", + "cloudpotionstrong2": "lingerpotstrength2", + "cloudpotionstronglong": "lingerpotstrength2", + "cloudpotionstrongextended": "lingerpotstrength2", + "cloudpotionstrongex": "lingerpotstrength2", + "cloudpotionstronglevel2": "lingerpotstrength2", + "cloudpotionstr2": "lingerpotstrength2", + "cloudpotionstrlong": "lingerpotstrength2", + "cloudpotionstrextended": "lingerpotstrength2", + "cloudpotionstrex": "lingerpotstrength2", + "cloudpotionstrlevel2": "lingerpotstrength2", + "strengthcloudpotion2": "lingerpotstrength2", + "strengthcloudpotionlong": "lingerpotstrength2", + "strengthcloudpotionextended": "lingerpotstrength2", + "strengthcloudpotionex": "lingerpotstrength2", + "strengthcloudpotionlevel2": "lingerpotstrength2", + "strongcloudpotion2": "lingerpotstrength2", + "strongcloudpotionlong": "lingerpotstrength2", + "strongcloudpotionextended": "lingerpotstrength2", + "strongcloudpotionex": "lingerpotstrength2", + "strongcloudpotionlevel2": "lingerpotstrength2", + "strcloudpotion2": "lingerpotstrength2", + "strcloudpotionlong": "lingerpotstrength2", + "strcloudpotionextended": "lingerpotstrength2", + "strcloudpotionex": "lingerpotstrength2", + "strcloudpotionlevel2": "lingerpotstrength2", + "cloudpotstrength2": "lingerpotstrength2", + "cloudpotstrengthlong": "lingerpotstrength2", + "cloudpotstrengthextended": "lingerpotstrength2", + "cloudpotstrengthex": "lingerpotstrength2", + "cloudpotstrengthlevel2": "lingerpotstrength2", + "cloudpotstrong2": "lingerpotstrength2", + "cloudpotstronglong": "lingerpotstrength2", + "cloudpotstrongextended": "lingerpotstrength2", + "cloudpotstrongex": "lingerpotstrength2", + "cloudpotstronglevel2": "lingerpotstrength2", + "cloudpotstr2": "lingerpotstrength2", + "cloudpotstrlong": "lingerpotstrength2", + "cloudpotstrextended": "lingerpotstrength2", + "cloudpotstrex": "lingerpotstrength2", + "cloudpotstrlevel2": "lingerpotstrength2", + "strengthcloudpot2": "lingerpotstrength2", + "strengthcloudpotlong": "lingerpotstrength2", + "strengthcloudpotextended": "lingerpotstrength2", + "strengthcloudpotex": "lingerpotstrength2", + "strengthcloudpotlevel2": "lingerpotstrength2", + "strongcloudpot2": "lingerpotstrength2", + "strongcloudpotlong": "lingerpotstrength2", + "strongcloudpotextended": "lingerpotstrength2", + "strongcloudpotex": "lingerpotstrength2", + "strongcloudpotlevel2": "lingerpotstrength2", + "strcloudpot2": "lingerpotstrength2", + "strcloudpotlong": "lingerpotstrength2", + "strcloudpotextended": "lingerpotstrength2", + "strcloudpotex": "lingerpotstrength2", + "strcloudpotlevel2": "lingerpotstrength2", + "arrowstrength2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_strength", + "type": "STRENGTH", + "upgraded": false, + "extended": true + } + }, + "arrowstrengthlong": "arrowstrength2", + "arrowstrengthextended": "arrowstrength2", + "arrowstrengthex": "arrowstrength2", + "arrowstrengthlevel2": "arrowstrength2", + "arrowstrong2": "arrowstrength2", + "arrowstronglong": "arrowstrength2", + "arrowstrongextended": "arrowstrength2", + "arrowstrongex": "arrowstrength2", + "arrowstronglevel2": "arrowstrength2", + "arrowstr2": "arrowstrength2", + "arrowstrlong": "arrowstrength2", + "arrowstrextended": "arrowstrength2", + "arrowstrex": "arrowstrength2", + "arrowstrlevel2": "arrowstrength2", + "strengtharrow2": "arrowstrength2", + "strengtharrowlong": "arrowstrength2", + "strengtharrowextended": "arrowstrength2", + "strengtharrowex": "arrowstrength2", + "strengtharrowlevel2": "arrowstrength2", + "strongarrow2": "arrowstrength2", + "strongarrowlong": "arrowstrength2", + "strongarrowextended": "arrowstrength2", + "strongarrowex": "arrowstrength2", + "strongarrowlevel2": "arrowstrength2", + "strarrow2": "arrowstrength2", + "strarrowlong": "arrowstrength2", + "strarrowextended": "arrowstrength2", + "strarrowex": "arrowstrength2", + "strarrowlevel2": "arrowstrength2", + "weaknesspotion": { + "material": "POTION", + "potionData": { + "vanillaType": "weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": false + } + }, + "weakpotion": "weaknesspotion", + "wepotion": "weaknesspotion", + "weaknesspot": "weaknesspotion", + "weakpot": "weaknesspotion", + "wepot": "weaknesspotion", + "potionofweakness": "weaknesspotion", + "potionofweak": "weaknesspotion", + "potionofwe": "weaknesspotion", + "potofweakness": "weaknesspotion", + "potofweak": "weaknesspotion", + "potofwe": "weaknesspotion", + "splashweaknesspotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": false + } + }, + "splashweakpotion": "splashweaknesspotion", + "splashwepotion": "splashweaknesspotion", + "splweaknesspotion": "splashweaknesspotion", + "splweakpotion": "splashweaknesspotion", + "splwepotion": "splashweaknesspotion", + "weaknesssplashpotion": "splashweaknesspotion", + "weaksplashpotion": "splashweaknesspotion", + "wesplashpotion": "splashweaknesspotion", + "splashweaknesspot": "splashweaknesspotion", + "splashweakpot": "splashweaknesspotion", + "splashwepot": "splashweaknesspotion", + "splweaknesspot": "splashweaknesspotion", + "splweakpot": "splashweaknesspotion", + "splwepot": "splashweaknesspotion", + "weaknesssplashpot": "splashweaknesspotion", + "weaksplashpot": "splashweaknesspotion", + "wesplashpot": "splashweaknesspotion", + "lingerpotweakness": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": false + } + }, + "lingerpotweak": "lingerpotweakness", + "lingerpotwe": "lingerpotweakness", + "weaknesslingerpot": "lingerpotweakness", + "weaklingerpot": "lingerpotweakness", + "welingerpot": "lingerpotweakness", + "aoepotionweakness": "lingerpotweakness", + "aoepotionweak": "lingerpotweakness", + "aoepotionwe": "lingerpotweakness", + "weaknessaoepoiont": "lingerpotweakness", + "weakaoepoiont": "lingerpotweakness", + "weaoepoiont": "lingerpotweakness", + "aoepotweakness": "lingerpotweakness", + "aoepotweak": "lingerpotweakness", + "aoepotwe": "lingerpotweakness", + "weaknessaoepot": "lingerpotweakness", + "weakaoepot": "lingerpotweakness", + "weaoepot": "lingerpotweakness", + "areapotionweakness": "lingerpotweakness", + "areapotionweak": "lingerpotweakness", + "areapotionwe": "lingerpotweakness", + "weaknessareapotion": "lingerpotweakness", + "weakareapotion": "lingerpotweakness", + "weareapotion": "lingerpotweakness", + "areapotweakness": "lingerpotweakness", + "areapotweak": "lingerpotweakness", + "areapotwe": "lingerpotweakness", + "weaknessareapot": "lingerpotweakness", + "weakareapot": "lingerpotweakness", + "weareapot": "lingerpotweakness", + "cloudpotionweakness": "lingerpotweakness", + "cloudpotionweak": "lingerpotweakness", + "cloudpotionwe": "lingerpotweakness", + "weaknesscloudpotion": "lingerpotweakness", + "weakcloudpotion": "lingerpotweakness", + "wecloudpotion": "lingerpotweakness", + "cloudpotweakness": "lingerpotweakness", + "cloudpotweak": "lingerpotweakness", + "cloudpotwe": "lingerpotweakness", + "weaknesscloudpot": "lingerpotweakness", + "weakcloudpot": "lingerpotweakness", + "wecloudpot": "lingerpotweakness", + "arrowweakness": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": false + } + }, + "arrowweak": "arrowweakness", + "arrowwe": "arrowweakness", + "weaknessarrow": "arrowweakness", + "weakarrow": "arrowweakness", + "wearrow": "arrowweakness", + "weakness2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": true + } + }, + "weaknesslongpotion": "weakness2potion", + "weaknessextendedpotion": "weakness2potion", + "weaknessexpotion": "weakness2potion", + "weaknesslevel2potion": "weakness2potion", + "weak2potion": "weakness2potion", + "weaklongpotion": "weakness2potion", + "weakextendedpotion": "weakness2potion", + "weakexpotion": "weakness2potion", + "weaklevel2potion": "weakness2potion", + "we2potion": "weakness2potion", + "welongpotion": "weakness2potion", + "weextendedpotion": "weakness2potion", + "weexpotion": "weakness2potion", + "welevel2potion": "weakness2potion", + "weakness2pot": "weakness2potion", + "weaknesslongpot": "weakness2potion", + "weaknessextendedpot": "weakness2potion", + "weaknessexpot": "weakness2potion", + "weaknesslevel2pot": "weakness2potion", + "weak2pot": "weakness2potion", + "weaklongpot": "weakness2potion", + "weakextendedpot": "weakness2potion", + "weakexpot": "weakness2potion", + "weaklevel2pot": "weakness2potion", + "we2pot": "weakness2potion", + "welongpot": "weakness2potion", + "weextendedpot": "weakness2potion", + "weexpot": "weakness2potion", + "welevel2pot": "weakness2potion", + "potionofweakness2": "weakness2potion", + "potionofweaknesslong": "weakness2potion", + "potionofweaknessextended": "weakness2potion", + "potionofweaknessex": "weakness2potion", + "potionofweaknesslevel2": "weakness2potion", + "potionofweak2": "weakness2potion", + "potionofweaklong": "weakness2potion", + "potionofweakextended": "weakness2potion", + "potionofweakex": "weakness2potion", + "potionofweaklevel2": "weakness2potion", + "potionofwe2": "weakness2potion", + "potionofwelong": "weakness2potion", + "potionofweextended": "weakness2potion", + "potionofweex": "weakness2potion", + "potionofwelevel2": "weakness2potion", + "potofweakness2": "weakness2potion", + "potofweaknesslong": "weakness2potion", + "potofweaknessextended": "weakness2potion", + "potofweaknessex": "weakness2potion", + "potofweaknesslevel2": "weakness2potion", + "potofweak2": "weakness2potion", + "potofweaklong": "weakness2potion", + "potofweakextended": "weakness2potion", + "potofweakex": "weakness2potion", + "potofweaklevel2": "weakness2potion", + "potofwe2": "weakness2potion", + "potofwelong": "weakness2potion", + "potofweextended": "weakness2potion", + "potofweex": "weakness2potion", + "potofwelevel2": "weakness2potion", + "splashweakness2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": true + } + }, + "splashweaknesslongpotion": "splashweakness2potion", + "splashweaknessextendedpotion": "splashweakness2potion", + "splashweaknessexpotion": "splashweakness2potion", + "splashweaknesslevel2potion": "splashweakness2potion", + "splashweak2potion": "splashweakness2potion", + "splashweaklongpotion": "splashweakness2potion", + "splashweakextendedpotion": "splashweakness2potion", + "splashweakexpotion": "splashweakness2potion", + "splashweaklevel2potion": "splashweakness2potion", + "splashwe2potion": "splashweakness2potion", + "splashwelongpotion": "splashweakness2potion", + "splashweextendedpotion": "splashweakness2potion", + "splashweexpotion": "splashweakness2potion", + "splashwelevel2potion": "splashweakness2potion", + "splweakness2potion": "splashweakness2potion", + "splweaknesslongpotion": "splashweakness2potion", + "splweaknessextendedpotion": "splashweakness2potion", + "splweaknessexpotion": "splashweakness2potion", + "splweaknesslevel2potion": "splashweakness2potion", + "splweak2potion": "splashweakness2potion", + "splweaklongpotion": "splashweakness2potion", + "splweakextendedpotion": "splashweakness2potion", + "splweakexpotion": "splashweakness2potion", + "splweaklevel2potion": "splashweakness2potion", + "splwe2potion": "splashweakness2potion", + "splwelongpotion": "splashweakness2potion", + "splweextendedpotion": "splashweakness2potion", + "splweexpotion": "splashweakness2potion", + "splwelevel2potion": "splashweakness2potion", + "weakness2splashpotion": "splashweakness2potion", + "weaknesslongsplashpotion": "splashweakness2potion", + "weaknessextendedsplashpotion": "splashweakness2potion", + "weaknessexsplashpotion": "splashweakness2potion", + "weaknesslevel2splashpotion": "splashweakness2potion", + "weak2splashpotion": "splashweakness2potion", + "weaklongsplashpotion": "splashweakness2potion", + "weakextendedsplashpotion": "splashweakness2potion", + "weakexsplashpotion": "splashweakness2potion", + "weaklevel2splashpotion": "splashweakness2potion", + "we2splashpotion": "splashweakness2potion", + "welongsplashpotion": "splashweakness2potion", + "weextendedsplashpotion": "splashweakness2potion", + "weexsplashpotion": "splashweakness2potion", + "welevel2splashpotion": "splashweakness2potion", + "splashweakness2pot": "splashweakness2potion", + "splashweaknesslongpot": "splashweakness2potion", + "splashweaknessextendedpot": "splashweakness2potion", + "splashweaknessexpot": "splashweakness2potion", + "splashweaknesslevel2pot": "splashweakness2potion", + "splashweak2pot": "splashweakness2potion", + "splashweaklongpot": "splashweakness2potion", + "splashweakextendedpot": "splashweakness2potion", + "splashweakexpot": "splashweakness2potion", + "splashweaklevel2pot": "splashweakness2potion", + "splashwe2pot": "splashweakness2potion", + "splashwelongpot": "splashweakness2potion", + "splashweextendedpot": "splashweakness2potion", + "splashweexpot": "splashweakness2potion", + "splashwelevel2pot": "splashweakness2potion", + "splweakness2pot": "splashweakness2potion", + "splweaknesslongpot": "splashweakness2potion", + "splweaknessextendedpot": "splashweakness2potion", + "splweaknessexpot": "splashweakness2potion", + "splweaknesslevel2pot": "splashweakness2potion", + "splweak2pot": "splashweakness2potion", + "splweaklongpot": "splashweakness2potion", + "splweakextendedpot": "splashweakness2potion", + "splweakexpot": "splashweakness2potion", + "splweaklevel2pot": "splashweakness2potion", + "splwe2pot": "splashweakness2potion", + "splwelongpot": "splashweakness2potion", + "splweextendedpot": "splashweakness2potion", + "splweexpot": "splashweakness2potion", + "splwelevel2pot": "splashweakness2potion", + "weakness2splashpot": "splashweakness2potion", + "weaknesslongsplashpot": "splashweakness2potion", + "weaknessextendedsplashpot": "splashweakness2potion", + "weaknessexsplashpot": "splashweakness2potion", + "weaknesslevel2splashpot": "splashweakness2potion", + "weak2splashpot": "splashweakness2potion", + "weaklongsplashpot": "splashweakness2potion", + "weakextendedsplashpot": "splashweakness2potion", + "weakexsplashpot": "splashweakness2potion", + "weaklevel2splashpot": "splashweakness2potion", + "we2splashpot": "splashweakness2potion", + "welongsplashpot": "splashweakness2potion", + "weextendedsplashpot": "splashweakness2potion", + "weexsplashpot": "splashweakness2potion", + "welevel2splashpot": "splashweakness2potion", + "lingerpotweakness2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": true + } + }, + "lingerpotweaknesslong": "lingerpotweakness2", + "lingerpotweaknessextended": "lingerpotweakness2", + "lingerpotweaknessex": "lingerpotweakness2", + "lingerpotweaknesslevel2": "lingerpotweakness2", + "lingerpotweak2": "lingerpotweakness2", + "lingerpotweaklong": "lingerpotweakness2", + "lingerpotweakextended": "lingerpotweakness2", + "lingerpotweakex": "lingerpotweakness2", + "lingerpotweaklevel2": "lingerpotweakness2", + "lingerpotwe2": "lingerpotweakness2", + "lingerpotwelong": "lingerpotweakness2", + "lingerpotweextended": "lingerpotweakness2", + "lingerpotweex": "lingerpotweakness2", + "lingerpotwelevel2": "lingerpotweakness2", + "weaknesslingerpot2": "lingerpotweakness2", + "weaknesslingerpotlong": "lingerpotweakness2", + "weaknesslingerpotextended": "lingerpotweakness2", + "weaknesslingerpotex": "lingerpotweakness2", + "weaknesslingerpotlevel2": "lingerpotweakness2", + "weaklingerpot2": "lingerpotweakness2", + "weaklingerpotlong": "lingerpotweakness2", + "weaklingerpotextended": "lingerpotweakness2", + "weaklingerpotex": "lingerpotweakness2", + "weaklingerpotlevel2": "lingerpotweakness2", + "welingerpot2": "lingerpotweakness2", + "welingerpotlong": "lingerpotweakness2", + "welingerpotextended": "lingerpotweakness2", + "welingerpotex": "lingerpotweakness2", + "welingerpotlevel2": "lingerpotweakness2", + "aoepotionweakness2": "lingerpotweakness2", + "aoepotionweaknesslong": "lingerpotweakness2", + "aoepotionweaknessextended": "lingerpotweakness2", + "aoepotionweaknessex": "lingerpotweakness2", + "aoepotionweaknesslevel2": "lingerpotweakness2", + "aoepotionweak2": "lingerpotweakness2", + "aoepotionweaklong": "lingerpotweakness2", + "aoepotionweakextended": "lingerpotweakness2", + "aoepotionweakex": "lingerpotweakness2", + "aoepotionweaklevel2": "lingerpotweakness2", + "aoepotionwe2": "lingerpotweakness2", + "aoepotionwelong": "lingerpotweakness2", + "aoepotionweextended": "lingerpotweakness2", + "aoepotionweex": "lingerpotweakness2", + "aoepotionwelevel2": "lingerpotweakness2", + "weaknessaoepoiont2": "lingerpotweakness2", + "weaknessaoepoiontlong": "lingerpotweakness2", + "weaknessaoepoiontextended": "lingerpotweakness2", + "weaknessaoepoiontex": "lingerpotweakness2", + "weaknessaoepoiontlevel2": "lingerpotweakness2", + "weakaoepoiont2": "lingerpotweakness2", + "weakaoepoiontlong": "lingerpotweakness2", + "weakaoepoiontextended": "lingerpotweakness2", + "weakaoepoiontex": "lingerpotweakness2", + "weakaoepoiontlevel2": "lingerpotweakness2", + "weaoepoiont2": "lingerpotweakness2", + "weaoepoiontlong": "lingerpotweakness2", + "weaoepoiontextended": "lingerpotweakness2", + "weaoepoiontex": "lingerpotweakness2", + "weaoepoiontlevel2": "lingerpotweakness2", + "aoepotweakness2": "lingerpotweakness2", + "aoepotweaknesslong": "lingerpotweakness2", + "aoepotweaknessextended": "lingerpotweakness2", + "aoepotweaknessex": "lingerpotweakness2", + "aoepotweaknesslevel2": "lingerpotweakness2", + "aoepotweak2": "lingerpotweakness2", + "aoepotweaklong": "lingerpotweakness2", + "aoepotweakextended": "lingerpotweakness2", + "aoepotweakex": "lingerpotweakness2", + "aoepotweaklevel2": "lingerpotweakness2", + "aoepotwe2": "lingerpotweakness2", + "aoepotwelong": "lingerpotweakness2", + "aoepotweextended": "lingerpotweakness2", + "aoepotweex": "lingerpotweakness2", + "aoepotwelevel2": "lingerpotweakness2", + "weaknessaoepot2": "lingerpotweakness2", + "weaknessaoepotlong": "lingerpotweakness2", + "weaknessaoepotextended": "lingerpotweakness2", + "weaknessaoepotex": "lingerpotweakness2", + "weaknessaoepotlevel2": "lingerpotweakness2", + "weakaoepot2": "lingerpotweakness2", + "weakaoepotlong": "lingerpotweakness2", + "weakaoepotextended": "lingerpotweakness2", + "weakaoepotex": "lingerpotweakness2", + "weakaoepotlevel2": "lingerpotweakness2", + "weaoepot2": "lingerpotweakness2", + "weaoepotlong": "lingerpotweakness2", + "weaoepotextended": "lingerpotweakness2", + "weaoepotex": "lingerpotweakness2", + "weaoepotlevel2": "lingerpotweakness2", + "areapotionweakness2": "lingerpotweakness2", + "areapotionweaknesslong": "lingerpotweakness2", + "areapotionweaknessextended": "lingerpotweakness2", + "areapotionweaknessex": "lingerpotweakness2", + "areapotionweaknesslevel2": "lingerpotweakness2", + "areapotionweak2": "lingerpotweakness2", + "areapotionweaklong": "lingerpotweakness2", + "areapotionweakextended": "lingerpotweakness2", + "areapotionweakex": "lingerpotweakness2", + "areapotionweaklevel2": "lingerpotweakness2", + "areapotionwe2": "lingerpotweakness2", + "areapotionwelong": "lingerpotweakness2", + "areapotionweextended": "lingerpotweakness2", + "areapotionweex": "lingerpotweakness2", + "areapotionwelevel2": "lingerpotweakness2", + "weaknessareapotion2": "lingerpotweakness2", + "weaknessareapotionlong": "lingerpotweakness2", + "weaknessareapotionextended": "lingerpotweakness2", + "weaknessareapotionex": "lingerpotweakness2", + "weaknessareapotionlevel2": "lingerpotweakness2", + "weakareapotion2": "lingerpotweakness2", + "weakareapotionlong": "lingerpotweakness2", + "weakareapotionextended": "lingerpotweakness2", + "weakareapotionex": "lingerpotweakness2", + "weakareapotionlevel2": "lingerpotweakness2", + "weareapotion2": "lingerpotweakness2", + "weareapotionlong": "lingerpotweakness2", + "weareapotionextended": "lingerpotweakness2", + "weareapotionex": "lingerpotweakness2", + "weareapotionlevel2": "lingerpotweakness2", + "areapotweakness2": "lingerpotweakness2", + "areapotweaknesslong": "lingerpotweakness2", + "areapotweaknessextended": "lingerpotweakness2", + "areapotweaknessex": "lingerpotweakness2", + "areapotweaknesslevel2": "lingerpotweakness2", + "areapotweak2": "lingerpotweakness2", + "areapotweaklong": "lingerpotweakness2", + "areapotweakextended": "lingerpotweakness2", + "areapotweakex": "lingerpotweakness2", + "areapotweaklevel2": "lingerpotweakness2", + "areapotwe2": "lingerpotweakness2", + "areapotwelong": "lingerpotweakness2", + "areapotweextended": "lingerpotweakness2", + "areapotweex": "lingerpotweakness2", + "areapotwelevel2": "lingerpotweakness2", + "weaknessareapot2": "lingerpotweakness2", + "weaknessareapotlong": "lingerpotweakness2", + "weaknessareapotextended": "lingerpotweakness2", + "weaknessareapotex": "lingerpotweakness2", + "weaknessareapotlevel2": "lingerpotweakness2", + "weakareapot2": "lingerpotweakness2", + "weakareapotlong": "lingerpotweakness2", + "weakareapotextended": "lingerpotweakness2", + "weakareapotex": "lingerpotweakness2", + "weakareapotlevel2": "lingerpotweakness2", + "weareapot2": "lingerpotweakness2", + "weareapotlong": "lingerpotweakness2", + "weareapotextended": "lingerpotweakness2", + "weareapotex": "lingerpotweakness2", + "weareapotlevel2": "lingerpotweakness2", + "cloudpotionweakness2": "lingerpotweakness2", + "cloudpotionweaknesslong": "lingerpotweakness2", + "cloudpotionweaknessextended": "lingerpotweakness2", + "cloudpotionweaknessex": "lingerpotweakness2", + "cloudpotionweaknesslevel2": "lingerpotweakness2", + "cloudpotionweak2": "lingerpotweakness2", + "cloudpotionweaklong": "lingerpotweakness2", + "cloudpotionweakextended": "lingerpotweakness2", + "cloudpotionweakex": "lingerpotweakness2", + "cloudpotionweaklevel2": "lingerpotweakness2", + "cloudpotionwe2": "lingerpotweakness2", + "cloudpotionwelong": "lingerpotweakness2", + "cloudpotionweextended": "lingerpotweakness2", + "cloudpotionweex": "lingerpotweakness2", + "cloudpotionwelevel2": "lingerpotweakness2", + "weaknesscloudpotion2": "lingerpotweakness2", + "weaknesscloudpotionlong": "lingerpotweakness2", + "weaknesscloudpotionextended": "lingerpotweakness2", + "weaknesscloudpotionex": "lingerpotweakness2", + "weaknesscloudpotionlevel2": "lingerpotweakness2", + "weakcloudpotion2": "lingerpotweakness2", + "weakcloudpotionlong": "lingerpotweakness2", + "weakcloudpotionextended": "lingerpotweakness2", + "weakcloudpotionex": "lingerpotweakness2", + "weakcloudpotionlevel2": "lingerpotweakness2", + "wecloudpotion2": "lingerpotweakness2", + "wecloudpotionlong": "lingerpotweakness2", + "wecloudpotionextended": "lingerpotweakness2", + "wecloudpotionex": "lingerpotweakness2", + "wecloudpotionlevel2": "lingerpotweakness2", + "cloudpotweakness2": "lingerpotweakness2", + "cloudpotweaknesslong": "lingerpotweakness2", + "cloudpotweaknessextended": "lingerpotweakness2", + "cloudpotweaknessex": "lingerpotweakness2", + "cloudpotweaknesslevel2": "lingerpotweakness2", + "cloudpotweak2": "lingerpotweakness2", + "cloudpotweaklong": "lingerpotweakness2", + "cloudpotweakextended": "lingerpotweakness2", + "cloudpotweakex": "lingerpotweakness2", + "cloudpotweaklevel2": "lingerpotweakness2", + "cloudpotwe2": "lingerpotweakness2", + "cloudpotwelong": "lingerpotweakness2", + "cloudpotweextended": "lingerpotweakness2", + "cloudpotweex": "lingerpotweakness2", + "cloudpotwelevel2": "lingerpotweakness2", + "weaknesscloudpot2": "lingerpotweakness2", + "weaknesscloudpotlong": "lingerpotweakness2", + "weaknesscloudpotextended": "lingerpotweakness2", + "weaknesscloudpotex": "lingerpotweakness2", + "weaknesscloudpotlevel2": "lingerpotweakness2", + "weakcloudpot2": "lingerpotweakness2", + "weakcloudpotlong": "lingerpotweakness2", + "weakcloudpotextended": "lingerpotweakness2", + "weakcloudpotex": "lingerpotweakness2", + "weakcloudpotlevel2": "lingerpotweakness2", + "wecloudpot2": "lingerpotweakness2", + "wecloudpotlong": "lingerpotweakness2", + "wecloudpotextended": "lingerpotweakness2", + "wecloudpotex": "lingerpotweakness2", + "wecloudpotlevel2": "lingerpotweakness2", + "arrowweakness2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_weakness", + "type": "WEAKNESS", + "upgraded": false, + "extended": true + } + }, + "arrowweaknesslong": "arrowweakness2", + "arrowweaknessextended": "arrowweakness2", + "arrowweaknessex": "arrowweakness2", + "arrowweaknesslevel2": "arrowweakness2", + "arrowweak2": "arrowweakness2", + "arrowweaklong": "arrowweakness2", + "arrowweakextended": "arrowweakness2", + "arrowweakex": "arrowweakness2", + "arrowweaklevel2": "arrowweakness2", + "arrowwe2": "arrowweakness2", + "arrowwelong": "arrowweakness2", + "arrowweextended": "arrowweakness2", + "arrowweex": "arrowweakness2", + "arrowwelevel2": "arrowweakness2", + "weaknessarrow2": "arrowweakness2", + "weaknessarrowlong": "arrowweakness2", + "weaknessarrowextended": "arrowweakness2", + "weaknessarrowex": "arrowweakness2", + "weaknessarrowlevel2": "arrowweakness2", + "weakarrow2": "arrowweakness2", + "weakarrowlong": "arrowweakness2", + "weakarrowextended": "arrowweakness2", + "weakarrowex": "arrowweakness2", + "weakarrowlevel2": "arrowweakness2", + "wearrow2": "arrowweakness2", + "wearrowlong": "arrowweakness2", + "wearrowextended": "arrowweakness2", + "wearrowex": "arrowweakness2", + "wearrowlevel2": "arrowweakness2", + "luckpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "luck", + "type": "LUCK", + "upgraded": false, + "extended": false + } + }, + "luckypotion": "luckpotion", + "luckpot": "luckpotion", + "luckypot": "luckpotion", + "potionofluck": "luckpotion", + "potionoflucky": "luckpotion", + "potofluck": "luckpotion", + "potoflucky": "luckpotion", + "splashluckpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "luck", + "type": "LUCK", + "upgraded": false, + "extended": false + } + }, + "splashluckypotion": "splashluckpotion", + "splluckpotion": "splashluckpotion", + "splluckypotion": "splashluckpotion", + "lucksplashpotion": "splashluckpotion", + "luckysplashpotion": "splashluckpotion", + "splashluckpot": "splashluckpotion", + "splashluckypot": "splashluckpotion", + "splluckpot": "splashluckpotion", + "splluckypot": "splashluckpotion", + "lucksplashpot": "splashluckpotion", + "luckysplashpot": "splashluckpotion", + "lingerpotluck": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "luck", + "type": "LUCK", + "upgraded": false, + "extended": false + } + }, + "lingerpotlucky": "lingerpotluck", + "lucklingerpot": "lingerpotluck", + "luckylingerpot": "lingerpotluck", + "aoepotionluck": "lingerpotluck", + "aoepotionlucky": "lingerpotluck", + "luckaoepoiont": "lingerpotluck", + "luckyaoepoiont": "lingerpotluck", + "aoepotluck": "lingerpotluck", + "aoepotlucky": "lingerpotluck", + "luckaoepot": "lingerpotluck", + "luckyaoepot": "lingerpotluck", + "areapotionluck": "lingerpotluck", + "areapotionlucky": "lingerpotluck", + "luckareapotion": "lingerpotluck", + "luckyareapotion": "lingerpotluck", + "areapotluck": "lingerpotluck", + "areapotlucky": "lingerpotluck", + "luckareapot": "lingerpotluck", + "luckyareapot": "lingerpotluck", + "cloudpotionluck": "lingerpotluck", + "cloudpotionlucky": "lingerpotluck", + "luckcloudpotion": "lingerpotluck", + "luckycloudpotion": "lingerpotluck", + "cloudpotluck": "lingerpotluck", + "cloudpotlucky": "lingerpotluck", + "luckcloudpot": "lingerpotluck", + "luckycloudpot": "lingerpotluck", + "arrowluck": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "luck", + "type": "LUCK", + "upgraded": false, + "extended": false + } + }, + "arrowlucky": "arrowluck", + "luckarrow": "arrowluck", + "luckyarrow": "arrowluck", + "turtlemasterpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": false + } + }, + "turtlepotion": "turtlemasterpotion", + "tmpotion": "turtlemasterpotion", + "turtlemasterpot": "turtlemasterpotion", + "turtlepot": "turtlemasterpotion", + "tmpot": "turtlemasterpotion", + "potionofturtlemaster": "turtlemasterpotion", + "potionofturtle": "turtlemasterpotion", + "potionoftm": "turtlemasterpotion", + "potofturtlemaster": "turtlemasterpotion", + "potofturtle": "turtlemasterpotion", + "potoftm": "turtlemasterpotion", + "splashturtlemasterpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": false + } + }, + "splashturtlepotion": "splashturtlemasterpotion", + "splashtmpotion": "splashturtlemasterpotion", + "splturtlemasterpotion": "splashturtlemasterpotion", + "splturtlepotion": "splashturtlemasterpotion", + "spltmpotion": "splashturtlemasterpotion", + "turtlemastersplashpotion": "splashturtlemasterpotion", + "turtlesplashpotion": "splashturtlemasterpotion", + "tmsplashpotion": "splashturtlemasterpotion", + "splashturtlemasterpot": "splashturtlemasterpotion", + "splashturtlepot": "splashturtlemasterpotion", + "splashtmpot": "splashturtlemasterpotion", + "splturtlemasterpot": "splashturtlemasterpotion", + "splturtlepot": "splashturtlemasterpotion", + "spltmpot": "splashturtlemasterpotion", + "turtlemastersplashpot": "splashturtlemasterpotion", + "turtlesplashpot": "splashturtlemasterpotion", + "tmsplashpot": "splashturtlemasterpotion", + "lingerpotturtlemaster": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": false + } + }, + "lingerpotturtle": "lingerpotturtlemaster", + "lingerpottm": "lingerpotturtlemaster", + "turtlemasterlingerpot": "lingerpotturtlemaster", + "turtlelingerpot": "lingerpotturtlemaster", + "tmlingerpot": "lingerpotturtlemaster", + "aoepotionturtlemaster": "lingerpotturtlemaster", + "aoepotionturtle": "lingerpotturtlemaster", + "aoepotiontm": "lingerpotturtlemaster", + "turtlemasteraoepoiont": "lingerpotturtlemaster", + "turtleaoepoiont": "lingerpotturtlemaster", + "tmaoepoiont": "lingerpotturtlemaster", + "aoepotturtlemaster": "lingerpotturtlemaster", + "aoepotturtle": "lingerpotturtlemaster", + "aoepottm": "lingerpotturtlemaster", + "turtlemasteraoepot": "lingerpotturtlemaster", + "turtleaoepot": "lingerpotturtlemaster", + "tmaoepot": "lingerpotturtlemaster", + "areapotionturtlemaster": "lingerpotturtlemaster", + "areapotionturtle": "lingerpotturtlemaster", + "areapotiontm": "lingerpotturtlemaster", + "turtlemasterareapotion": "lingerpotturtlemaster", + "turtleareapotion": "lingerpotturtlemaster", + "tmareapotion": "lingerpotturtlemaster", + "areapotturtlemaster": "lingerpotturtlemaster", + "areapotturtle": "lingerpotturtlemaster", + "areapottm": "lingerpotturtlemaster", + "turtlemasterareapot": "lingerpotturtlemaster", + "turtleareapot": "lingerpotturtlemaster", + "tmareapot": "lingerpotturtlemaster", + "cloudpotionturtlemaster": "lingerpotturtlemaster", + "cloudpotionturtle": "lingerpotturtlemaster", + "cloudpotiontm": "lingerpotturtlemaster", + "turtlemastercloudpotion": "lingerpotturtlemaster", + "turtlecloudpotion": "lingerpotturtlemaster", + "tmcloudpotion": "lingerpotturtlemaster", + "cloudpotturtlemaster": "lingerpotturtlemaster", + "cloudpotturtle": "lingerpotturtlemaster", + "cloudpottm": "lingerpotturtlemaster", + "turtlemastercloudpot": "lingerpotturtlemaster", + "turtlecloudpot": "lingerpotturtlemaster", + "tmcloudpot": "lingerpotturtlemaster", + "arrowturtlemaster": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": false + } + }, + "arrowturtle": "arrowturtlemaster", + "arrowtm": "arrowturtlemaster", + "turtlemasterarrow": "arrowturtlemaster", + "turtlearrow": "arrowturtlemaster", + "tmarrow": "arrowturtlemaster", + "turtlemasteriipotion": { + "material": "POTION", + "potionData": { + "vanillaType": "strong_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": true, + "extended": false + } + }, + "turtlemasterstrongpotion": "turtlemasteriipotion", + "turtlemasterleveliipotion": "turtlemasteriipotion", + "turtleiipotion": "turtlemasteriipotion", + "turtlestrongpotion": "turtlemasteriipotion", + "turtleleveliipotion": "turtlemasteriipotion", + "tmiipotion": "turtlemasteriipotion", + "tmstrongpotion": "turtlemasteriipotion", + "tmleveliipotion": "turtlemasteriipotion", + "turtlemasteriipot": "turtlemasteriipotion", + "turtlemasterstrongpot": "turtlemasteriipotion", + "turtlemasterleveliipot": "turtlemasteriipotion", + "turtleiipot": "turtlemasteriipotion", + "turtlestrongpot": "turtlemasteriipotion", + "turtleleveliipot": "turtlemasteriipotion", + "tmiipot": "turtlemasteriipotion", + "tmstrongpot": "turtlemasteriipotion", + "tmleveliipot": "turtlemasteriipotion", + "potionofturtlemasterii": "turtlemasteriipotion", + "potionofturtlemasterstrong": "turtlemasteriipotion", + "potionofturtlemasterlevelii": "turtlemasteriipotion", + "potionofturtleii": "turtlemasteriipotion", + "potionofturtlestrong": "turtlemasteriipotion", + "potionofturtlelevelii": "turtlemasteriipotion", + "potionoftmii": "turtlemasteriipotion", + "potionoftmstrong": "turtlemasteriipotion", + "potionoftmlevelii": "turtlemasteriipotion", + "potofturtlemasterii": "turtlemasteriipotion", + "potofturtlemasterstrong": "turtlemasteriipotion", + "potofturtlemasterlevelii": "turtlemasteriipotion", + "potofturtleii": "turtlemasteriipotion", + "potofturtlestrong": "turtlemasteriipotion", + "potofturtlelevelii": "turtlemasteriipotion", + "potoftmii": "turtlemasteriipotion", + "potoftmstrong": "turtlemasteriipotion", + "potoftmlevelii": "turtlemasteriipotion", + "splashturtlemasteriipotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "strong_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": true, + "extended": false + } + }, + "splashturtlemasterstrongpotion": "splashturtlemasteriipotion", + "splashturtlemasterleveliipotion": "splashturtlemasteriipotion", + "splashturtleiipotion": "splashturtlemasteriipotion", + "splashturtlestrongpotion": "splashturtlemasteriipotion", + "splashturtleleveliipotion": "splashturtlemasteriipotion", + "splashtmiipotion": "splashturtlemasteriipotion", + "splashtmstrongpotion": "splashturtlemasteriipotion", + "splashtmleveliipotion": "splashturtlemasteriipotion", + "splturtlemasteriipotion": "splashturtlemasteriipotion", + "splturtlemasterstrongpotion": "splashturtlemasteriipotion", + "splturtlemasterleveliipotion": "splashturtlemasteriipotion", + "splturtleiipotion": "splashturtlemasteriipotion", + "splturtlestrongpotion": "splashturtlemasteriipotion", + "splturtleleveliipotion": "splashturtlemasteriipotion", + "spltmiipotion": "splashturtlemasteriipotion", + "spltmstrongpotion": "splashturtlemasteriipotion", + "spltmleveliipotion": "splashturtlemasteriipotion", + "turtlemasteriisplashpotion": "splashturtlemasteriipotion", + "turtlemasterstrongsplashpotion": "splashturtlemasteriipotion", + "turtlemasterleveliisplashpotion": "splashturtlemasteriipotion", + "turtleiisplashpotion": "splashturtlemasteriipotion", + "turtlestrongsplashpotion": "splashturtlemasteriipotion", + "turtleleveliisplashpotion": "splashturtlemasteriipotion", + "tmiisplashpotion": "splashturtlemasteriipotion", + "tmstrongsplashpotion": "splashturtlemasteriipotion", + "tmleveliisplashpotion": "splashturtlemasteriipotion", + "splashturtlemasteriipot": "splashturtlemasteriipotion", + "splashturtlemasterstrongpot": "splashturtlemasteriipotion", + "splashturtlemasterleveliipot": "splashturtlemasteriipotion", + "splashturtleiipot": "splashturtlemasteriipotion", + "splashturtlestrongpot": "splashturtlemasteriipotion", + "splashturtleleveliipot": "splashturtlemasteriipotion", + "splashtmiipot": "splashturtlemasteriipotion", + "splashtmstrongpot": "splashturtlemasteriipotion", + "splashtmleveliipot": "splashturtlemasteriipotion", + "splturtlemasteriipot": "splashturtlemasteriipotion", + "splturtlemasterstrongpot": "splashturtlemasteriipotion", + "splturtlemasterleveliipot": "splashturtlemasteriipotion", + "splturtleiipot": "splashturtlemasteriipotion", + "splturtlestrongpot": "splashturtlemasteriipotion", + "splturtleleveliipot": "splashturtlemasteriipotion", + "spltmiipot": "splashturtlemasteriipotion", + "spltmstrongpot": "splashturtlemasteriipotion", + "spltmleveliipot": "splashturtlemasteriipotion", + "turtlemasteriisplashpot": "splashturtlemasteriipotion", + "turtlemasterstrongsplashpot": "splashturtlemasteriipotion", + "turtlemasterleveliisplashpot": "splashturtlemasteriipotion", + "turtleiisplashpot": "splashturtlemasteriipotion", + "turtlestrongsplashpot": "splashturtlemasteriipotion", + "turtleleveliisplashpot": "splashturtlemasteriipotion", + "tmiisplashpot": "splashturtlemasteriipotion", + "tmstrongsplashpot": "splashturtlemasteriipotion", + "tmleveliisplashpot": "splashturtlemasteriipotion", + "lingerpotturtlemasterii": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "strong_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": true, + "extended": false + } + }, + "lingerpotturtlemasterstrong": "lingerpotturtlemasterii", + "lingerpotturtlemasterlevelii": "lingerpotturtlemasterii", + "lingerpotturtleii": "lingerpotturtlemasterii", + "lingerpotturtlestrong": "lingerpotturtlemasterii", + "lingerpotturtlelevelii": "lingerpotturtlemasterii", + "lingerpottmii": "lingerpotturtlemasterii", + "lingerpottmstrong": "lingerpotturtlemasterii", + "lingerpottmlevelii": "lingerpotturtlemasterii", + "turtlemasterlingerpotii": "lingerpotturtlemasterii", + "turtlemasterlingerpotstrong": "lingerpotturtlemasterii", + "turtlemasterlingerpotlevelii": "lingerpotturtlemasterii", + "turtlelingerpotii": "lingerpotturtlemasterii", + "turtlelingerpotstrong": "lingerpotturtlemasterii", + "turtlelingerpotlevelii": "lingerpotturtlemasterii", + "tmlingerpotii": "lingerpotturtlemasterii", + "tmlingerpotstrong": "lingerpotturtlemasterii", + "tmlingerpotlevelii": "lingerpotturtlemasterii", + "aoepotionturtlemasterii": "lingerpotturtlemasterii", + "aoepotionturtlemasterstrong": "lingerpotturtlemasterii", + "aoepotionturtlemasterlevelii": "lingerpotturtlemasterii", + "aoepotionturtleii": "lingerpotturtlemasterii", + "aoepotionturtlestrong": "lingerpotturtlemasterii", + "aoepotionturtlelevelii": "lingerpotturtlemasterii", + "aoepotiontmii": "lingerpotturtlemasterii", + "aoepotiontmstrong": "lingerpotturtlemasterii", + "aoepotiontmlevelii": "lingerpotturtlemasterii", + "turtlemasteraoepoiontii": "lingerpotturtlemasterii", + "turtlemasteraoepoiontstrong": "lingerpotturtlemasterii", + "turtlemasteraoepoiontlevelii": "lingerpotturtlemasterii", + "turtleaoepoiontii": "lingerpotturtlemasterii", + "turtleaoepoiontstrong": "lingerpotturtlemasterii", + "turtleaoepoiontlevelii": "lingerpotturtlemasterii", + "tmaoepoiontii": "lingerpotturtlemasterii", + "tmaoepoiontstrong": "lingerpotturtlemasterii", + "tmaoepoiontlevelii": "lingerpotturtlemasterii", + "aoepotturtlemasterii": "lingerpotturtlemasterii", + "aoepotturtlemasterstrong": "lingerpotturtlemasterii", + "aoepotturtlemasterlevelii": "lingerpotturtlemasterii", + "aoepotturtleii": "lingerpotturtlemasterii", + "aoepotturtlestrong": "lingerpotturtlemasterii", + "aoepotturtlelevelii": "lingerpotturtlemasterii", + "aoepottmii": "lingerpotturtlemasterii", + "aoepottmstrong": "lingerpotturtlemasterii", + "aoepottmlevelii": "lingerpotturtlemasterii", + "turtlemasteraoepotii": "lingerpotturtlemasterii", + "turtlemasteraoepotstrong": "lingerpotturtlemasterii", + "turtlemasteraoepotlevelii": "lingerpotturtlemasterii", + "turtleaoepotii": "lingerpotturtlemasterii", + "turtleaoepotstrong": "lingerpotturtlemasterii", + "turtleaoepotlevelii": "lingerpotturtlemasterii", + "tmaoepotii": "lingerpotturtlemasterii", + "tmaoepotstrong": "lingerpotturtlemasterii", + "tmaoepotlevelii": "lingerpotturtlemasterii", + "areapotionturtlemasterii": "lingerpotturtlemasterii", + "areapotionturtlemasterstrong": "lingerpotturtlemasterii", + "areapotionturtlemasterlevelii": "lingerpotturtlemasterii", + "areapotionturtleii": "lingerpotturtlemasterii", + "areapotionturtlestrong": "lingerpotturtlemasterii", + "areapotionturtlelevelii": "lingerpotturtlemasterii", + "areapotiontmii": "lingerpotturtlemasterii", + "areapotiontmstrong": "lingerpotturtlemasterii", + "areapotiontmlevelii": "lingerpotturtlemasterii", + "turtlemasterareapotionii": "lingerpotturtlemasterii", + "turtlemasterareapotionstrong": "lingerpotturtlemasterii", + "turtlemasterareapotionlevelii": "lingerpotturtlemasterii", + "turtleareapotionii": "lingerpotturtlemasterii", + "turtleareapotionstrong": "lingerpotturtlemasterii", + "turtleareapotionlevelii": "lingerpotturtlemasterii", + "tmareapotionii": "lingerpotturtlemasterii", + "tmareapotionstrong": "lingerpotturtlemasterii", + "tmareapotionlevelii": "lingerpotturtlemasterii", + "areapotturtlemasterii": "lingerpotturtlemasterii", + "areapotturtlemasterstrong": "lingerpotturtlemasterii", + "areapotturtlemasterlevelii": "lingerpotturtlemasterii", + "areapotturtleii": "lingerpotturtlemasterii", + "areapotturtlestrong": "lingerpotturtlemasterii", + "areapotturtlelevelii": "lingerpotturtlemasterii", + "areapottmii": "lingerpotturtlemasterii", + "areapottmstrong": "lingerpotturtlemasterii", + "areapottmlevelii": "lingerpotturtlemasterii", + "turtlemasterareapotii": "lingerpotturtlemasterii", + "turtlemasterareapotstrong": "lingerpotturtlemasterii", + "turtlemasterareapotlevelii": "lingerpotturtlemasterii", + "turtleareapotii": "lingerpotturtlemasterii", + "turtleareapotstrong": "lingerpotturtlemasterii", + "turtleareapotlevelii": "lingerpotturtlemasterii", + "tmareapotii": "lingerpotturtlemasterii", + "tmareapotstrong": "lingerpotturtlemasterii", + "tmareapotlevelii": "lingerpotturtlemasterii", + "cloudpotionturtlemasterii": "lingerpotturtlemasterii", + "cloudpotionturtlemasterstrong": "lingerpotturtlemasterii", + "cloudpotionturtlemasterlevelii": "lingerpotturtlemasterii", + "cloudpotionturtleii": "lingerpotturtlemasterii", + "cloudpotionturtlestrong": "lingerpotturtlemasterii", + "cloudpotionturtlelevelii": "lingerpotturtlemasterii", + "cloudpotiontmii": "lingerpotturtlemasterii", + "cloudpotiontmstrong": "lingerpotturtlemasterii", + "cloudpotiontmlevelii": "lingerpotturtlemasterii", + "turtlemastercloudpotionii": "lingerpotturtlemasterii", + "turtlemastercloudpotionstrong": "lingerpotturtlemasterii", + "turtlemastercloudpotionlevelii": "lingerpotturtlemasterii", + "turtlecloudpotionii": "lingerpotturtlemasterii", + "turtlecloudpotionstrong": "lingerpotturtlemasterii", + "turtlecloudpotionlevelii": "lingerpotturtlemasterii", + "tmcloudpotionii": "lingerpotturtlemasterii", + "tmcloudpotionstrong": "lingerpotturtlemasterii", + "tmcloudpotionlevelii": "lingerpotturtlemasterii", + "cloudpotturtlemasterii": "lingerpotturtlemasterii", + "cloudpotturtlemasterstrong": "lingerpotturtlemasterii", + "cloudpotturtlemasterlevelii": "lingerpotturtlemasterii", + "cloudpotturtleii": "lingerpotturtlemasterii", + "cloudpotturtlestrong": "lingerpotturtlemasterii", + "cloudpotturtlelevelii": "lingerpotturtlemasterii", + "cloudpottmii": "lingerpotturtlemasterii", + "cloudpottmstrong": "lingerpotturtlemasterii", + "cloudpottmlevelii": "lingerpotturtlemasterii", + "turtlemastercloudpotii": "lingerpotturtlemasterii", + "turtlemastercloudpotstrong": "lingerpotturtlemasterii", + "turtlemastercloudpotlevelii": "lingerpotturtlemasterii", + "turtlecloudpotii": "lingerpotturtlemasterii", + "turtlecloudpotstrong": "lingerpotturtlemasterii", + "turtlecloudpotlevelii": "lingerpotturtlemasterii", + "tmcloudpotii": "lingerpotturtlemasterii", + "tmcloudpotstrong": "lingerpotturtlemasterii", + "tmcloudpotlevelii": "lingerpotturtlemasterii", + "arrowturtlemasterii": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "strong_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": true, + "extended": false + } + }, + "arrowturtlemasterstrong": "arrowturtlemasterii", + "arrowturtlemasterlevelii": "arrowturtlemasterii", + "arrowturtleii": "arrowturtlemasterii", + "arrowturtlestrong": "arrowturtlemasterii", + "arrowturtlelevelii": "arrowturtlemasterii", + "arrowtmii": "arrowturtlemasterii", + "arrowtmstrong": "arrowturtlemasterii", + "arrowtmlevelii": "arrowturtlemasterii", + "turtlemasterarrowii": "arrowturtlemasterii", + "turtlemasterarrowstrong": "arrowturtlemasterii", + "turtlemasterarrowlevelii": "arrowturtlemasterii", + "turtlearrowii": "arrowturtlemasterii", + "turtlearrowstrong": "arrowturtlemasterii", + "turtlearrowlevelii": "arrowturtlemasterii", + "tmarrowii": "arrowturtlemasterii", + "tmarrowstrong": "arrowturtlemasterii", + "tmarrowlevelii": "arrowturtlemasterii", + "turtlemaster2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": true + } + }, + "turtlemasterlongpotion": "turtlemaster2potion", + "turtlemasterextendedpotion": "turtlemaster2potion", + "turtlemasterexpotion": "turtlemaster2potion", + "turtlemasterlevel2potion": "turtlemaster2potion", + "turtle2potion": "turtlemaster2potion", + "turtlelongpotion": "turtlemaster2potion", + "turtleextendedpotion": "turtlemaster2potion", + "turtleexpotion": "turtlemaster2potion", + "turtlelevel2potion": "turtlemaster2potion", + "tm2potion": "turtlemaster2potion", + "tmlongpotion": "turtlemaster2potion", + "tmextendedpotion": "turtlemaster2potion", + "tmexpotion": "turtlemaster2potion", + "tmlevel2potion": "turtlemaster2potion", + "turtlemaster2pot": "turtlemaster2potion", + "turtlemasterlongpot": "turtlemaster2potion", + "turtlemasterextendedpot": "turtlemaster2potion", + "turtlemasterexpot": "turtlemaster2potion", + "turtlemasterlevel2pot": "turtlemaster2potion", + "turtle2pot": "turtlemaster2potion", + "turtlelongpot": "turtlemaster2potion", + "turtleextendedpot": "turtlemaster2potion", + "turtleexpot": "turtlemaster2potion", + "turtlelevel2pot": "turtlemaster2potion", + "tm2pot": "turtlemaster2potion", + "tmlongpot": "turtlemaster2potion", + "tmextendedpot": "turtlemaster2potion", + "tmexpot": "turtlemaster2potion", + "tmlevel2pot": "turtlemaster2potion", + "potionofturtlemaster2": "turtlemaster2potion", + "potionofturtlemasterlong": "turtlemaster2potion", + "potionofturtlemasterextended": "turtlemaster2potion", + "potionofturtlemasterex": "turtlemaster2potion", + "potionofturtlemasterlevel2": "turtlemaster2potion", + "potionofturtle2": "turtlemaster2potion", + "potionofturtlelong": "turtlemaster2potion", + "potionofturtleextended": "turtlemaster2potion", + "potionofturtleex": "turtlemaster2potion", + "potionofturtlelevel2": "turtlemaster2potion", + "potionoftm2": "turtlemaster2potion", + "potionoftmlong": "turtlemaster2potion", + "potionoftmextended": "turtlemaster2potion", + "potionoftmex": "turtlemaster2potion", + "potionoftmlevel2": "turtlemaster2potion", + "potofturtlemaster2": "turtlemaster2potion", + "potofturtlemasterlong": "turtlemaster2potion", + "potofturtlemasterextended": "turtlemaster2potion", + "potofturtlemasterex": "turtlemaster2potion", + "potofturtlemasterlevel2": "turtlemaster2potion", + "potofturtle2": "turtlemaster2potion", + "potofturtlelong": "turtlemaster2potion", + "potofturtleextended": "turtlemaster2potion", + "potofturtleex": "turtlemaster2potion", + "potofturtlelevel2": "turtlemaster2potion", + "potoftm2": "turtlemaster2potion", + "potoftmlong": "turtlemaster2potion", + "potoftmextended": "turtlemaster2potion", + "potoftmex": "turtlemaster2potion", + "potoftmlevel2": "turtlemaster2potion", + "splashturtlemaster2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": true + } + }, + "splashturtlemasterlongpotion": "splashturtlemaster2potion", + "splashturtlemasterextendedpotion": "splashturtlemaster2potion", + "splashturtlemasterexpotion": "splashturtlemaster2potion", + "splashturtlemasterlevel2potion": "splashturtlemaster2potion", + "splashturtle2potion": "splashturtlemaster2potion", + "splashturtlelongpotion": "splashturtlemaster2potion", + "splashturtleextendedpotion": "splashturtlemaster2potion", + "splashturtleexpotion": "splashturtlemaster2potion", + "splashturtlelevel2potion": "splashturtlemaster2potion", + "splashtm2potion": "splashturtlemaster2potion", + "splashtmlongpotion": "splashturtlemaster2potion", + "splashtmextendedpotion": "splashturtlemaster2potion", + "splashtmexpotion": "splashturtlemaster2potion", + "splashtmlevel2potion": "splashturtlemaster2potion", + "splturtlemaster2potion": "splashturtlemaster2potion", + "splturtlemasterlongpotion": "splashturtlemaster2potion", + "splturtlemasterextendedpotion": "splashturtlemaster2potion", + "splturtlemasterexpotion": "splashturtlemaster2potion", + "splturtlemasterlevel2potion": "splashturtlemaster2potion", + "splturtle2potion": "splashturtlemaster2potion", + "splturtlelongpotion": "splashturtlemaster2potion", + "splturtleextendedpotion": "splashturtlemaster2potion", + "splturtleexpotion": "splashturtlemaster2potion", + "splturtlelevel2potion": "splashturtlemaster2potion", + "spltm2potion": "splashturtlemaster2potion", + "spltmlongpotion": "splashturtlemaster2potion", + "spltmextendedpotion": "splashturtlemaster2potion", + "spltmexpotion": "splashturtlemaster2potion", + "spltmlevel2potion": "splashturtlemaster2potion", + "turtlemaster2splashpotion": "splashturtlemaster2potion", + "turtlemasterlongsplashpotion": "splashturtlemaster2potion", + "turtlemasterextendedsplashpotion": "splashturtlemaster2potion", + "turtlemasterexsplashpotion": "splashturtlemaster2potion", + "turtlemasterlevel2splashpotion": "splashturtlemaster2potion", + "turtle2splashpotion": "splashturtlemaster2potion", + "turtlelongsplashpotion": "splashturtlemaster2potion", + "turtleextendedsplashpotion": "splashturtlemaster2potion", + "turtleexsplashpotion": "splashturtlemaster2potion", + "turtlelevel2splashpotion": "splashturtlemaster2potion", + "tm2splashpotion": "splashturtlemaster2potion", + "tmlongsplashpotion": "splashturtlemaster2potion", + "tmextendedsplashpotion": "splashturtlemaster2potion", + "tmexsplashpotion": "splashturtlemaster2potion", + "tmlevel2splashpotion": "splashturtlemaster2potion", + "splashturtlemaster2pot": "splashturtlemaster2potion", + "splashturtlemasterlongpot": "splashturtlemaster2potion", + "splashturtlemasterextendedpot": "splashturtlemaster2potion", + "splashturtlemasterexpot": "splashturtlemaster2potion", + "splashturtlemasterlevel2pot": "splashturtlemaster2potion", + "splashturtle2pot": "splashturtlemaster2potion", + "splashturtlelongpot": "splashturtlemaster2potion", + "splashturtleextendedpot": "splashturtlemaster2potion", + "splashturtleexpot": "splashturtlemaster2potion", + "splashturtlelevel2pot": "splashturtlemaster2potion", + "splashtm2pot": "splashturtlemaster2potion", + "splashtmlongpot": "splashturtlemaster2potion", + "splashtmextendedpot": "splashturtlemaster2potion", + "splashtmexpot": "splashturtlemaster2potion", + "splashtmlevel2pot": "splashturtlemaster2potion", + "splturtlemaster2pot": "splashturtlemaster2potion", + "splturtlemasterlongpot": "splashturtlemaster2potion", + "splturtlemasterextendedpot": "splashturtlemaster2potion", + "splturtlemasterexpot": "splashturtlemaster2potion", + "splturtlemasterlevel2pot": "splashturtlemaster2potion", + "splturtle2pot": "splashturtlemaster2potion", + "splturtlelongpot": "splashturtlemaster2potion", + "splturtleextendedpot": "splashturtlemaster2potion", + "splturtleexpot": "splashturtlemaster2potion", + "splturtlelevel2pot": "splashturtlemaster2potion", + "spltm2pot": "splashturtlemaster2potion", + "spltmlongpot": "splashturtlemaster2potion", + "spltmextendedpot": "splashturtlemaster2potion", + "spltmexpot": "splashturtlemaster2potion", + "spltmlevel2pot": "splashturtlemaster2potion", + "turtlemaster2splashpot": "splashturtlemaster2potion", + "turtlemasterlongsplashpot": "splashturtlemaster2potion", + "turtlemasterextendedsplashpot": "splashturtlemaster2potion", + "turtlemasterexsplashpot": "splashturtlemaster2potion", + "turtlemasterlevel2splashpot": "splashturtlemaster2potion", + "turtle2splashpot": "splashturtlemaster2potion", + "turtlelongsplashpot": "splashturtlemaster2potion", + "turtleextendedsplashpot": "splashturtlemaster2potion", + "turtleexsplashpot": "splashturtlemaster2potion", + "turtlelevel2splashpot": "splashturtlemaster2potion", + "tm2splashpot": "splashturtlemaster2potion", + "tmlongsplashpot": "splashturtlemaster2potion", + "tmextendedsplashpot": "splashturtlemaster2potion", + "tmexsplashpot": "splashturtlemaster2potion", + "tmlevel2splashpot": "splashturtlemaster2potion", + "lingerpotturtlemaster2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": true + } + }, + "lingerpotturtlemasterlong": "lingerpotturtlemaster2", + "lingerpotturtlemasterextended": "lingerpotturtlemaster2", + "lingerpotturtlemasterex": "lingerpotturtlemaster2", + "lingerpotturtlemasterlevel2": "lingerpotturtlemaster2", + "lingerpotturtle2": "lingerpotturtlemaster2", + "lingerpotturtlelong": "lingerpotturtlemaster2", + "lingerpotturtleextended": "lingerpotturtlemaster2", + "lingerpotturtleex": "lingerpotturtlemaster2", + "lingerpotturtlelevel2": "lingerpotturtlemaster2", + "lingerpottm2": "lingerpotturtlemaster2", + "lingerpottmlong": "lingerpotturtlemaster2", + "lingerpottmextended": "lingerpotturtlemaster2", + "lingerpottmex": "lingerpotturtlemaster2", + "lingerpottmlevel2": "lingerpotturtlemaster2", + "turtlemasterlingerpot2": "lingerpotturtlemaster2", + "turtlemasterlingerpotlong": "lingerpotturtlemaster2", + "turtlemasterlingerpotextended": "lingerpotturtlemaster2", + "turtlemasterlingerpotex": "lingerpotturtlemaster2", + "turtlemasterlingerpotlevel2": "lingerpotturtlemaster2", + "turtlelingerpot2": "lingerpotturtlemaster2", + "turtlelingerpotlong": "lingerpotturtlemaster2", + "turtlelingerpotextended": "lingerpotturtlemaster2", + "turtlelingerpotex": "lingerpotturtlemaster2", + "turtlelingerpotlevel2": "lingerpotturtlemaster2", + "tmlingerpot2": "lingerpotturtlemaster2", + "tmlingerpotlong": "lingerpotturtlemaster2", + "tmlingerpotextended": "lingerpotturtlemaster2", + "tmlingerpotex": "lingerpotturtlemaster2", + "tmlingerpotlevel2": "lingerpotturtlemaster2", + "aoepotionturtlemaster2": "lingerpotturtlemaster2", + "aoepotionturtlemasterlong": "lingerpotturtlemaster2", + "aoepotionturtlemasterextended": "lingerpotturtlemaster2", + "aoepotionturtlemasterex": "lingerpotturtlemaster2", + "aoepotionturtlemasterlevel2": "lingerpotturtlemaster2", + "aoepotionturtle2": "lingerpotturtlemaster2", + "aoepotionturtlelong": "lingerpotturtlemaster2", + "aoepotionturtleextended": "lingerpotturtlemaster2", + "aoepotionturtleex": "lingerpotturtlemaster2", + "aoepotionturtlelevel2": "lingerpotturtlemaster2", + "aoepotiontm2": "lingerpotturtlemaster2", + "aoepotiontmlong": "lingerpotturtlemaster2", + "aoepotiontmextended": "lingerpotturtlemaster2", + "aoepotiontmex": "lingerpotturtlemaster2", + "aoepotiontmlevel2": "lingerpotturtlemaster2", + "turtlemasteraoepoiont2": "lingerpotturtlemaster2", + "turtlemasteraoepoiontlong": "lingerpotturtlemaster2", + "turtlemasteraoepoiontextended": "lingerpotturtlemaster2", + "turtlemasteraoepoiontex": "lingerpotturtlemaster2", + "turtlemasteraoepoiontlevel2": "lingerpotturtlemaster2", + "turtleaoepoiont2": "lingerpotturtlemaster2", + "turtleaoepoiontlong": "lingerpotturtlemaster2", + "turtleaoepoiontextended": "lingerpotturtlemaster2", + "turtleaoepoiontex": "lingerpotturtlemaster2", + "turtleaoepoiontlevel2": "lingerpotturtlemaster2", + "tmaoepoiont2": "lingerpotturtlemaster2", + "tmaoepoiontlong": "lingerpotturtlemaster2", + "tmaoepoiontextended": "lingerpotturtlemaster2", + "tmaoepoiontex": "lingerpotturtlemaster2", + "tmaoepoiontlevel2": "lingerpotturtlemaster2", + "aoepotturtlemaster2": "lingerpotturtlemaster2", + "aoepotturtlemasterlong": "lingerpotturtlemaster2", + "aoepotturtlemasterextended": "lingerpotturtlemaster2", + "aoepotturtlemasterex": "lingerpotturtlemaster2", + "aoepotturtlemasterlevel2": "lingerpotturtlemaster2", + "aoepotturtle2": "lingerpotturtlemaster2", + "aoepotturtlelong": "lingerpotturtlemaster2", + "aoepotturtleextended": "lingerpotturtlemaster2", + "aoepotturtleex": "lingerpotturtlemaster2", + "aoepotturtlelevel2": "lingerpotturtlemaster2", + "aoepottm2": "lingerpotturtlemaster2", + "aoepottmlong": "lingerpotturtlemaster2", + "aoepottmextended": "lingerpotturtlemaster2", + "aoepottmex": "lingerpotturtlemaster2", + "aoepottmlevel2": "lingerpotturtlemaster2", + "turtlemasteraoepot2": "lingerpotturtlemaster2", + "turtlemasteraoepotlong": "lingerpotturtlemaster2", + "turtlemasteraoepotextended": "lingerpotturtlemaster2", + "turtlemasteraoepotex": "lingerpotturtlemaster2", + "turtlemasteraoepotlevel2": "lingerpotturtlemaster2", + "turtleaoepot2": "lingerpotturtlemaster2", + "turtleaoepotlong": "lingerpotturtlemaster2", + "turtleaoepotextended": "lingerpotturtlemaster2", + "turtleaoepotex": "lingerpotturtlemaster2", + "turtleaoepotlevel2": "lingerpotturtlemaster2", + "tmaoepot2": "lingerpotturtlemaster2", + "tmaoepotlong": "lingerpotturtlemaster2", + "tmaoepotextended": "lingerpotturtlemaster2", + "tmaoepotex": "lingerpotturtlemaster2", + "tmaoepotlevel2": "lingerpotturtlemaster2", + "areapotionturtlemaster2": "lingerpotturtlemaster2", + "areapotionturtlemasterlong": "lingerpotturtlemaster2", + "areapotionturtlemasterextended": "lingerpotturtlemaster2", + "areapotionturtlemasterex": "lingerpotturtlemaster2", + "areapotionturtlemasterlevel2": "lingerpotturtlemaster2", + "areapotionturtle2": "lingerpotturtlemaster2", + "areapotionturtlelong": "lingerpotturtlemaster2", + "areapotionturtleextended": "lingerpotturtlemaster2", + "areapotionturtleex": "lingerpotturtlemaster2", + "areapotionturtlelevel2": "lingerpotturtlemaster2", + "areapotiontm2": "lingerpotturtlemaster2", + "areapotiontmlong": "lingerpotturtlemaster2", + "areapotiontmextended": "lingerpotturtlemaster2", + "areapotiontmex": "lingerpotturtlemaster2", + "areapotiontmlevel2": "lingerpotturtlemaster2", + "turtlemasterareapotion2": "lingerpotturtlemaster2", + "turtlemasterareapotionlong": "lingerpotturtlemaster2", + "turtlemasterareapotionextended": "lingerpotturtlemaster2", + "turtlemasterareapotionex": "lingerpotturtlemaster2", + "turtlemasterareapotionlevel2": "lingerpotturtlemaster2", + "turtleareapotion2": "lingerpotturtlemaster2", + "turtleareapotionlong": "lingerpotturtlemaster2", + "turtleareapotionextended": "lingerpotturtlemaster2", + "turtleareapotionex": "lingerpotturtlemaster2", + "turtleareapotionlevel2": "lingerpotturtlemaster2", + "tmareapotion2": "lingerpotturtlemaster2", + "tmareapotionlong": "lingerpotturtlemaster2", + "tmareapotionextended": "lingerpotturtlemaster2", + "tmareapotionex": "lingerpotturtlemaster2", + "tmareapotionlevel2": "lingerpotturtlemaster2", + "areapotturtlemaster2": "lingerpotturtlemaster2", + "areapotturtlemasterlong": "lingerpotturtlemaster2", + "areapotturtlemasterextended": "lingerpotturtlemaster2", + "areapotturtlemasterex": "lingerpotturtlemaster2", + "areapotturtlemasterlevel2": "lingerpotturtlemaster2", + "areapotturtle2": "lingerpotturtlemaster2", + "areapotturtlelong": "lingerpotturtlemaster2", + "areapotturtleextended": "lingerpotturtlemaster2", + "areapotturtleex": "lingerpotturtlemaster2", + "areapotturtlelevel2": "lingerpotturtlemaster2", + "areapottm2": "lingerpotturtlemaster2", + "areapottmlong": "lingerpotturtlemaster2", + "areapottmextended": "lingerpotturtlemaster2", + "areapottmex": "lingerpotturtlemaster2", + "areapottmlevel2": "lingerpotturtlemaster2", + "turtlemasterareapot2": "lingerpotturtlemaster2", + "turtlemasterareapotlong": "lingerpotturtlemaster2", + "turtlemasterareapotextended": "lingerpotturtlemaster2", + "turtlemasterareapotex": "lingerpotturtlemaster2", + "turtlemasterareapotlevel2": "lingerpotturtlemaster2", + "turtleareapot2": "lingerpotturtlemaster2", + "turtleareapotlong": "lingerpotturtlemaster2", + "turtleareapotextended": "lingerpotturtlemaster2", + "turtleareapotex": "lingerpotturtlemaster2", + "turtleareapotlevel2": "lingerpotturtlemaster2", + "tmareapot2": "lingerpotturtlemaster2", + "tmareapotlong": "lingerpotturtlemaster2", + "tmareapotextended": "lingerpotturtlemaster2", + "tmareapotex": "lingerpotturtlemaster2", + "tmareapotlevel2": "lingerpotturtlemaster2", + "cloudpotionturtlemaster2": "lingerpotturtlemaster2", + "cloudpotionturtlemasterlong": "lingerpotturtlemaster2", + "cloudpotionturtlemasterextended": "lingerpotturtlemaster2", + "cloudpotionturtlemasterex": "lingerpotturtlemaster2", + "cloudpotionturtlemasterlevel2": "lingerpotturtlemaster2", + "cloudpotionturtle2": "lingerpotturtlemaster2", + "cloudpotionturtlelong": "lingerpotturtlemaster2", + "cloudpotionturtleextended": "lingerpotturtlemaster2", + "cloudpotionturtleex": "lingerpotturtlemaster2", + "cloudpotionturtlelevel2": "lingerpotturtlemaster2", + "cloudpotiontm2": "lingerpotturtlemaster2", + "cloudpotiontmlong": "lingerpotturtlemaster2", + "cloudpotiontmextended": "lingerpotturtlemaster2", + "cloudpotiontmex": "lingerpotturtlemaster2", + "cloudpotiontmlevel2": "lingerpotturtlemaster2", + "turtlemastercloudpotion2": "lingerpotturtlemaster2", + "turtlemastercloudpotionlong": "lingerpotturtlemaster2", + "turtlemastercloudpotionextended": "lingerpotturtlemaster2", + "turtlemastercloudpotionex": "lingerpotturtlemaster2", + "turtlemastercloudpotionlevel2": "lingerpotturtlemaster2", + "turtlecloudpotion2": "lingerpotturtlemaster2", + "turtlecloudpotionlong": "lingerpotturtlemaster2", + "turtlecloudpotionextended": "lingerpotturtlemaster2", + "turtlecloudpotionex": "lingerpotturtlemaster2", + "turtlecloudpotionlevel2": "lingerpotturtlemaster2", + "tmcloudpotion2": "lingerpotturtlemaster2", + "tmcloudpotionlong": "lingerpotturtlemaster2", + "tmcloudpotionextended": "lingerpotturtlemaster2", + "tmcloudpotionex": "lingerpotturtlemaster2", + "tmcloudpotionlevel2": "lingerpotturtlemaster2", + "cloudpotturtlemaster2": "lingerpotturtlemaster2", + "cloudpotturtlemasterlong": "lingerpotturtlemaster2", + "cloudpotturtlemasterextended": "lingerpotturtlemaster2", + "cloudpotturtlemasterex": "lingerpotturtlemaster2", + "cloudpotturtlemasterlevel2": "lingerpotturtlemaster2", + "cloudpotturtle2": "lingerpotturtlemaster2", + "cloudpotturtlelong": "lingerpotturtlemaster2", + "cloudpotturtleextended": "lingerpotturtlemaster2", + "cloudpotturtleex": "lingerpotturtlemaster2", + "cloudpotturtlelevel2": "lingerpotturtlemaster2", + "cloudpottm2": "lingerpotturtlemaster2", + "cloudpottmlong": "lingerpotturtlemaster2", + "cloudpottmextended": "lingerpotturtlemaster2", + "cloudpottmex": "lingerpotturtlemaster2", + "cloudpottmlevel2": "lingerpotturtlemaster2", + "turtlemastercloudpot2": "lingerpotturtlemaster2", + "turtlemastercloudpotlong": "lingerpotturtlemaster2", + "turtlemastercloudpotextended": "lingerpotturtlemaster2", + "turtlemastercloudpotex": "lingerpotturtlemaster2", + "turtlemastercloudpotlevel2": "lingerpotturtlemaster2", + "turtlecloudpot2": "lingerpotturtlemaster2", + "turtlecloudpotlong": "lingerpotturtlemaster2", + "turtlecloudpotextended": "lingerpotturtlemaster2", + "turtlecloudpotex": "lingerpotturtlemaster2", + "turtlecloudpotlevel2": "lingerpotturtlemaster2", + "tmcloudpot2": "lingerpotturtlemaster2", + "tmcloudpotlong": "lingerpotturtlemaster2", + "tmcloudpotextended": "lingerpotturtlemaster2", + "tmcloudpotex": "lingerpotturtlemaster2", + "tmcloudpotlevel2": "lingerpotturtlemaster2", + "arrowturtlemaster2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_turtle_master", + "type": "TURTLE_MASTER", + "upgraded": false, + "extended": true + } + }, + "arrowturtlemasterlong": "arrowturtlemaster2", + "arrowturtlemasterextended": "arrowturtlemaster2", + "arrowturtlemasterex": "arrowturtlemaster2", + "arrowturtlemasterlevel2": "arrowturtlemaster2", + "arrowturtle2": "arrowturtlemaster2", + "arrowturtlelong": "arrowturtlemaster2", + "arrowturtleextended": "arrowturtlemaster2", + "arrowturtleex": "arrowturtlemaster2", + "arrowturtlelevel2": "arrowturtlemaster2", + "arrowtm2": "arrowturtlemaster2", + "arrowtmlong": "arrowturtlemaster2", + "arrowtmextended": "arrowturtlemaster2", + "arrowtmex": "arrowturtlemaster2", + "arrowtmlevel2": "arrowturtlemaster2", + "turtlemasterarrow2": "arrowturtlemaster2", + "turtlemasterarrowlong": "arrowturtlemaster2", + "turtlemasterarrowextended": "arrowturtlemaster2", + "turtlemasterarrowex": "arrowturtlemaster2", + "turtlemasterarrowlevel2": "arrowturtlemaster2", + "turtlearrow2": "arrowturtlemaster2", + "turtlearrowlong": "arrowturtlemaster2", + "turtlearrowextended": "arrowturtlemaster2", + "turtlearrowex": "arrowturtlemaster2", + "turtlearrowlevel2": "arrowturtlemaster2", + "tmarrow2": "arrowturtlemaster2", + "tmarrowlong": "arrowturtlemaster2", + "tmarrowextended": "arrowturtlemaster2", + "tmarrowex": "arrowturtlemaster2", + "tmarrowlevel2": "arrowturtlemaster2", + "slowfallingpotion": { + "material": "POTION", + "potionData": { + "vanillaType": "slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": false + } + }, + "slowfallpotion": "slowfallingpotion", + "sfpotion": "slowfallingpotion", + "slowfallingpot": "slowfallingpotion", + "slowfallpot": "slowfallingpotion", + "sfpot": "slowfallingpotion", + "potionofslowfalling": "slowfallingpotion", + "potionofslowfall": "slowfallingpotion", + "potionofsf": "slowfallingpotion", + "potofslowfalling": "slowfallingpotion", + "potofslowfall": "slowfallingpotion", + "potofsf": "slowfallingpotion", + "splashslowfallingpotion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": false + } + }, + "splashslowfallpotion": "splashslowfallingpotion", + "splashsfpotion": "splashslowfallingpotion", + "splslowfallingpotion": "splashslowfallingpotion", + "splslowfallpotion": "splashslowfallingpotion", + "splsfpotion": "splashslowfallingpotion", + "slowfallingsplashpotion": "splashslowfallingpotion", + "slowfallsplashpotion": "splashslowfallingpotion", + "sfsplashpotion": "splashslowfallingpotion", + "splashslowfallingpot": "splashslowfallingpotion", + "splashslowfallpot": "splashslowfallingpotion", + "splashsfpot": "splashslowfallingpotion", + "splslowfallingpot": "splashslowfallingpotion", + "splslowfallpot": "splashslowfallingpotion", + "splsfpot": "splashslowfallingpotion", + "slowfallingsplashpot": "splashslowfallingpotion", + "slowfallsplashpot": "splashslowfallingpotion", + "sfsplashpot": "splashslowfallingpotion", + "lingerpotslowfalling": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": false + } + }, + "lingerpotslowfall": "lingerpotslowfalling", + "lingerpotsf": "lingerpotslowfalling", + "slowfallinglingerpot": "lingerpotslowfalling", + "slowfalllingerpot": "lingerpotslowfalling", + "sflingerpot": "lingerpotslowfalling", + "aoepotionslowfalling": "lingerpotslowfalling", + "aoepotionslowfall": "lingerpotslowfalling", + "aoepotionsf": "lingerpotslowfalling", + "slowfallingaoepoiont": "lingerpotslowfalling", + "slowfallaoepoiont": "lingerpotslowfalling", + "sfaoepoiont": "lingerpotslowfalling", + "aoepotslowfalling": "lingerpotslowfalling", + "aoepotslowfall": "lingerpotslowfalling", + "aoepotsf": "lingerpotslowfalling", + "slowfallingaoepot": "lingerpotslowfalling", + "slowfallaoepot": "lingerpotslowfalling", + "sfaoepot": "lingerpotslowfalling", + "areapotionslowfalling": "lingerpotslowfalling", + "areapotionslowfall": "lingerpotslowfalling", + "areapotionsf": "lingerpotslowfalling", + "slowfallingareapotion": "lingerpotslowfalling", + "slowfallareapotion": "lingerpotslowfalling", + "sfareapotion": "lingerpotslowfalling", + "areapotslowfalling": "lingerpotslowfalling", + "areapotslowfall": "lingerpotslowfalling", + "areapotsf": "lingerpotslowfalling", + "slowfallingareapot": "lingerpotslowfalling", + "slowfallareapot": "lingerpotslowfalling", + "sfareapot": "lingerpotslowfalling", + "cloudpotionslowfalling": "lingerpotslowfalling", + "cloudpotionslowfall": "lingerpotslowfalling", + "cloudpotionsf": "lingerpotslowfalling", + "slowfallingcloudpotion": "lingerpotslowfalling", + "slowfallcloudpotion": "lingerpotslowfalling", + "sfcloudpotion": "lingerpotslowfalling", + "cloudpotslowfalling": "lingerpotslowfalling", + "cloudpotslowfall": "lingerpotslowfalling", + "cloudpotsf": "lingerpotslowfalling", + "slowfallingcloudpot": "lingerpotslowfalling", + "slowfallcloudpot": "lingerpotslowfalling", + "sfcloudpot": "lingerpotslowfalling", + "arrowslowfalling": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": false + } + }, + "arrowslowfall": "arrowslowfalling", + "arrowsf": "arrowslowfalling", + "slowfallingarrow": "arrowslowfalling", + "slowfallarrow": "arrowslowfalling", + "sfarrow": "arrowslowfalling", + "slowfalling2potion": { + "material": "POTION", + "potionData": { + "vanillaType": "long_slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": true + } + }, + "slowfallinglongpotion": "slowfalling2potion", + "slowfallingextendedpotion": "slowfalling2potion", + "slowfallingexpotion": "slowfalling2potion", + "slowfallinglevel2potion": "slowfalling2potion", + "slowfall2potion": "slowfalling2potion", + "slowfalllongpotion": "slowfalling2potion", + "slowfallextendedpotion": "slowfalling2potion", + "slowfallexpotion": "slowfalling2potion", + "slowfalllevel2potion": "slowfalling2potion", + "sf2potion": "slowfalling2potion", + "sflongpotion": "slowfalling2potion", + "sfextendedpotion": "slowfalling2potion", + "sfexpotion": "slowfalling2potion", + "sflevel2potion": "slowfalling2potion", + "slowfalling2pot": "slowfalling2potion", + "slowfallinglongpot": "slowfalling2potion", + "slowfallingextendedpot": "slowfalling2potion", + "slowfallingexpot": "slowfalling2potion", + "slowfallinglevel2pot": "slowfalling2potion", + "slowfall2pot": "slowfalling2potion", + "slowfalllongpot": "slowfalling2potion", + "slowfallextendedpot": "slowfalling2potion", + "slowfallexpot": "slowfalling2potion", + "slowfalllevel2pot": "slowfalling2potion", + "sf2pot": "slowfalling2potion", + "sflongpot": "slowfalling2potion", + "sfextendedpot": "slowfalling2potion", + "sfexpot": "slowfalling2potion", + "sflevel2pot": "slowfalling2potion", + "potionofslowfalling2": "slowfalling2potion", + "potionofslowfallinglong": "slowfalling2potion", + "potionofslowfallingextended": "slowfalling2potion", + "potionofslowfallingex": "slowfalling2potion", + "potionofslowfallinglevel2": "slowfalling2potion", + "potionofslowfall2": "slowfalling2potion", + "potionofslowfalllong": "slowfalling2potion", + "potionofslowfallextended": "slowfalling2potion", + "potionofslowfallex": "slowfalling2potion", + "potionofslowfalllevel2": "slowfalling2potion", + "potionofsf2": "slowfalling2potion", + "potionofsflong": "slowfalling2potion", + "potionofsfextended": "slowfalling2potion", + "potionofsfex": "slowfalling2potion", + "potionofsflevel2": "slowfalling2potion", + "potofslowfalling2": "slowfalling2potion", + "potofslowfallinglong": "slowfalling2potion", + "potofslowfallingextended": "slowfalling2potion", + "potofslowfallingex": "slowfalling2potion", + "potofslowfallinglevel2": "slowfalling2potion", + "potofslowfall2": "slowfalling2potion", + "potofslowfalllong": "slowfalling2potion", + "potofslowfallextended": "slowfalling2potion", + "potofslowfallex": "slowfalling2potion", + "potofslowfalllevel2": "slowfalling2potion", + "potofsf2": "slowfalling2potion", + "potofsflong": "slowfalling2potion", + "potofsfextended": "slowfalling2potion", + "potofsfex": "slowfalling2potion", + "potofsflevel2": "slowfalling2potion", + "splashslowfalling2potion": { + "material": "SPLASH_POTION", + "potionData": { + "vanillaType": "long_slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": true + } + }, + "splashslowfallinglongpotion": "splashslowfalling2potion", + "splashslowfallingextendedpotion": "splashslowfalling2potion", + "splashslowfallingexpotion": "splashslowfalling2potion", + "splashslowfallinglevel2potion": "splashslowfalling2potion", + "splashslowfall2potion": "splashslowfalling2potion", + "splashslowfalllongpotion": "splashslowfalling2potion", + "splashslowfallextendedpotion": "splashslowfalling2potion", + "splashslowfallexpotion": "splashslowfalling2potion", + "splashslowfalllevel2potion": "splashslowfalling2potion", + "splashsf2potion": "splashslowfalling2potion", + "splashsflongpotion": "splashslowfalling2potion", + "splashsfextendedpotion": "splashslowfalling2potion", + "splashsfexpotion": "splashslowfalling2potion", + "splashsflevel2potion": "splashslowfalling2potion", + "splslowfalling2potion": "splashslowfalling2potion", + "splslowfallinglongpotion": "splashslowfalling2potion", + "splslowfallingextendedpotion": "splashslowfalling2potion", + "splslowfallingexpotion": "splashslowfalling2potion", + "splslowfallinglevel2potion": "splashslowfalling2potion", + "splslowfall2potion": "splashslowfalling2potion", + "splslowfalllongpotion": "splashslowfalling2potion", + "splslowfallextendedpotion": "splashslowfalling2potion", + "splslowfallexpotion": "splashslowfalling2potion", + "splslowfalllevel2potion": "splashslowfalling2potion", + "splsf2potion": "splashslowfalling2potion", + "splsflongpotion": "splashslowfalling2potion", + "splsfextendedpotion": "splashslowfalling2potion", + "splsfexpotion": "splashslowfalling2potion", + "splsflevel2potion": "splashslowfalling2potion", + "slowfalling2splashpotion": "splashslowfalling2potion", + "slowfallinglongsplashpotion": "splashslowfalling2potion", + "slowfallingextendedsplashpotion": "splashslowfalling2potion", + "slowfallingexsplashpotion": "splashslowfalling2potion", + "slowfallinglevel2splashpotion": "splashslowfalling2potion", + "slowfall2splashpotion": "splashslowfalling2potion", + "slowfalllongsplashpotion": "splashslowfalling2potion", + "slowfallextendedsplashpotion": "splashslowfalling2potion", + "slowfallexsplashpotion": "splashslowfalling2potion", + "slowfalllevel2splashpotion": "splashslowfalling2potion", + "sf2splashpotion": "splashslowfalling2potion", + "sflongsplashpotion": "splashslowfalling2potion", + "sfextendedsplashpotion": "splashslowfalling2potion", + "sfexsplashpotion": "splashslowfalling2potion", + "sflevel2splashpotion": "splashslowfalling2potion", + "splashslowfalling2pot": "splashslowfalling2potion", + "splashslowfallinglongpot": "splashslowfalling2potion", + "splashslowfallingextendedpot": "splashslowfalling2potion", + "splashslowfallingexpot": "splashslowfalling2potion", + "splashslowfallinglevel2pot": "splashslowfalling2potion", + "splashslowfall2pot": "splashslowfalling2potion", + "splashslowfalllongpot": "splashslowfalling2potion", + "splashslowfallextendedpot": "splashslowfalling2potion", + "splashslowfallexpot": "splashslowfalling2potion", + "splashslowfalllevel2pot": "splashslowfalling2potion", + "splashsf2pot": "splashslowfalling2potion", + "splashsflongpot": "splashslowfalling2potion", + "splashsfextendedpot": "splashslowfalling2potion", + "splashsfexpot": "splashslowfalling2potion", + "splashsflevel2pot": "splashslowfalling2potion", + "splslowfalling2pot": "splashslowfalling2potion", + "splslowfallinglongpot": "splashslowfalling2potion", + "splslowfallingextendedpot": "splashslowfalling2potion", + "splslowfallingexpot": "splashslowfalling2potion", + "splslowfallinglevel2pot": "splashslowfalling2potion", + "splslowfall2pot": "splashslowfalling2potion", + "splslowfalllongpot": "splashslowfalling2potion", + "splslowfallextendedpot": "splashslowfalling2potion", + "splslowfallexpot": "splashslowfalling2potion", + "splslowfalllevel2pot": "splashslowfalling2potion", + "splsf2pot": "splashslowfalling2potion", + "splsflongpot": "splashslowfalling2potion", + "splsfextendedpot": "splashslowfalling2potion", + "splsfexpot": "splashslowfalling2potion", + "splsflevel2pot": "splashslowfalling2potion", + "slowfalling2splashpot": "splashslowfalling2potion", + "slowfallinglongsplashpot": "splashslowfalling2potion", + "slowfallingextendedsplashpot": "splashslowfalling2potion", + "slowfallingexsplashpot": "splashslowfalling2potion", + "slowfallinglevel2splashpot": "splashslowfalling2potion", + "slowfall2splashpot": "splashslowfalling2potion", + "slowfalllongsplashpot": "splashslowfalling2potion", + "slowfallextendedsplashpot": "splashslowfalling2potion", + "slowfallexsplashpot": "splashslowfalling2potion", + "slowfalllevel2splashpot": "splashslowfalling2potion", + "sf2splashpot": "splashslowfalling2potion", + "sflongsplashpot": "splashslowfalling2potion", + "sfextendedsplashpot": "splashslowfalling2potion", + "sfexsplashpot": "splashslowfalling2potion", + "sflevel2splashpot": "splashslowfalling2potion", + "lingerpotslowfalling2": { + "material": "LINGERING_POTION", + "potionData": { + "vanillaType": "long_slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": true + } + }, + "lingerpotslowfallinglong": "lingerpotslowfalling2", + "lingerpotslowfallingextended": "lingerpotslowfalling2", + "lingerpotslowfallingex": "lingerpotslowfalling2", + "lingerpotslowfallinglevel2": "lingerpotslowfalling2", + "lingerpotslowfall2": "lingerpotslowfalling2", + "lingerpotslowfalllong": "lingerpotslowfalling2", + "lingerpotslowfallextended": "lingerpotslowfalling2", + "lingerpotslowfallex": "lingerpotslowfalling2", + "lingerpotslowfalllevel2": "lingerpotslowfalling2", + "lingerpotsf2": "lingerpotslowfalling2", + "lingerpotsflong": "lingerpotslowfalling2", + "lingerpotsfextended": "lingerpotslowfalling2", + "lingerpotsfex": "lingerpotslowfalling2", + "lingerpotsflevel2": "lingerpotslowfalling2", + "slowfallinglingerpot2": "lingerpotslowfalling2", + "slowfallinglingerpotlong": "lingerpotslowfalling2", + "slowfallinglingerpotextended": "lingerpotslowfalling2", + "slowfallinglingerpotex": "lingerpotslowfalling2", + "slowfallinglingerpotlevel2": "lingerpotslowfalling2", + "slowfalllingerpot2": "lingerpotslowfalling2", + "slowfalllingerpotlong": "lingerpotslowfalling2", + "slowfalllingerpotextended": "lingerpotslowfalling2", + "slowfalllingerpotex": "lingerpotslowfalling2", + "slowfalllingerpotlevel2": "lingerpotslowfalling2", + "sflingerpot2": "lingerpotslowfalling2", + "sflingerpotlong": "lingerpotslowfalling2", + "sflingerpotextended": "lingerpotslowfalling2", + "sflingerpotex": "lingerpotslowfalling2", + "sflingerpotlevel2": "lingerpotslowfalling2", + "aoepotionslowfalling2": "lingerpotslowfalling2", + "aoepotionslowfallinglong": "lingerpotslowfalling2", + "aoepotionslowfallingextended": "lingerpotslowfalling2", + "aoepotionslowfallingex": "lingerpotslowfalling2", + "aoepotionslowfallinglevel2": "lingerpotslowfalling2", + "aoepotionslowfall2": "lingerpotslowfalling2", + "aoepotionslowfalllong": "lingerpotslowfalling2", + "aoepotionslowfallextended": "lingerpotslowfalling2", + "aoepotionslowfallex": "lingerpotslowfalling2", + "aoepotionslowfalllevel2": "lingerpotslowfalling2", + "aoepotionsf2": "lingerpotslowfalling2", + "aoepotionsflong": "lingerpotslowfalling2", + "aoepotionsfextended": "lingerpotslowfalling2", + "aoepotionsfex": "lingerpotslowfalling2", + "aoepotionsflevel2": "lingerpotslowfalling2", + "slowfallingaoepoiont2": "lingerpotslowfalling2", + "slowfallingaoepoiontlong": "lingerpotslowfalling2", + "slowfallingaoepoiontextended": "lingerpotslowfalling2", + "slowfallingaoepoiontex": "lingerpotslowfalling2", + "slowfallingaoepoiontlevel2": "lingerpotslowfalling2", + "slowfallaoepoiont2": "lingerpotslowfalling2", + "slowfallaoepoiontlong": "lingerpotslowfalling2", + "slowfallaoepoiontextended": "lingerpotslowfalling2", + "slowfallaoepoiontex": "lingerpotslowfalling2", + "slowfallaoepoiontlevel2": "lingerpotslowfalling2", + "sfaoepoiont2": "lingerpotslowfalling2", + "sfaoepoiontlong": "lingerpotslowfalling2", + "sfaoepoiontextended": "lingerpotslowfalling2", + "sfaoepoiontex": "lingerpotslowfalling2", + "sfaoepoiontlevel2": "lingerpotslowfalling2", + "aoepotslowfalling2": "lingerpotslowfalling2", + "aoepotslowfallinglong": "lingerpotslowfalling2", + "aoepotslowfallingextended": "lingerpotslowfalling2", + "aoepotslowfallingex": "lingerpotslowfalling2", + "aoepotslowfallinglevel2": "lingerpotslowfalling2", + "aoepotslowfall2": "lingerpotslowfalling2", + "aoepotslowfalllong": "lingerpotslowfalling2", + "aoepotslowfallextended": "lingerpotslowfalling2", + "aoepotslowfallex": "lingerpotslowfalling2", + "aoepotslowfalllevel2": "lingerpotslowfalling2", + "aoepotsf2": "lingerpotslowfalling2", + "aoepotsflong": "lingerpotslowfalling2", + "aoepotsfextended": "lingerpotslowfalling2", + "aoepotsfex": "lingerpotslowfalling2", + "aoepotsflevel2": "lingerpotslowfalling2", + "slowfallingaoepot2": "lingerpotslowfalling2", + "slowfallingaoepotlong": "lingerpotslowfalling2", + "slowfallingaoepotextended": "lingerpotslowfalling2", + "slowfallingaoepotex": "lingerpotslowfalling2", + "slowfallingaoepotlevel2": "lingerpotslowfalling2", + "slowfallaoepot2": "lingerpotslowfalling2", + "slowfallaoepotlong": "lingerpotslowfalling2", + "slowfallaoepotextended": "lingerpotslowfalling2", + "slowfallaoepotex": "lingerpotslowfalling2", + "slowfallaoepotlevel2": "lingerpotslowfalling2", + "sfaoepot2": "lingerpotslowfalling2", + "sfaoepotlong": "lingerpotslowfalling2", + "sfaoepotextended": "lingerpotslowfalling2", + "sfaoepotex": "lingerpotslowfalling2", + "sfaoepotlevel2": "lingerpotslowfalling2", + "areapotionslowfalling2": "lingerpotslowfalling2", + "areapotionslowfallinglong": "lingerpotslowfalling2", + "areapotionslowfallingextended": "lingerpotslowfalling2", + "areapotionslowfallingex": "lingerpotslowfalling2", + "areapotionslowfallinglevel2": "lingerpotslowfalling2", + "areapotionslowfall2": "lingerpotslowfalling2", + "areapotionslowfalllong": "lingerpotslowfalling2", + "areapotionslowfallextended": "lingerpotslowfalling2", + "areapotionslowfallex": "lingerpotslowfalling2", + "areapotionslowfalllevel2": "lingerpotslowfalling2", + "areapotionsf2": "lingerpotslowfalling2", + "areapotionsflong": "lingerpotslowfalling2", + "areapotionsfextended": "lingerpotslowfalling2", + "areapotionsfex": "lingerpotslowfalling2", + "areapotionsflevel2": "lingerpotslowfalling2", + "slowfallingareapotion2": "lingerpotslowfalling2", + "slowfallingareapotionlong": "lingerpotslowfalling2", + "slowfallingareapotionextended": "lingerpotslowfalling2", + "slowfallingareapotionex": "lingerpotslowfalling2", + "slowfallingareapotionlevel2": "lingerpotslowfalling2", + "slowfallareapotion2": "lingerpotslowfalling2", + "slowfallareapotionlong": "lingerpotslowfalling2", + "slowfallareapotionextended": "lingerpotslowfalling2", + "slowfallareapotionex": "lingerpotslowfalling2", + "slowfallareapotionlevel2": "lingerpotslowfalling2", + "sfareapotion2": "lingerpotslowfalling2", + "sfareapotionlong": "lingerpotslowfalling2", + "sfareapotionextended": "lingerpotslowfalling2", + "sfareapotionex": "lingerpotslowfalling2", + "sfareapotionlevel2": "lingerpotslowfalling2", + "areapotslowfalling2": "lingerpotslowfalling2", + "areapotslowfallinglong": "lingerpotslowfalling2", + "areapotslowfallingextended": "lingerpotslowfalling2", + "areapotslowfallingex": "lingerpotslowfalling2", + "areapotslowfallinglevel2": "lingerpotslowfalling2", + "areapotslowfall2": "lingerpotslowfalling2", + "areapotslowfalllong": "lingerpotslowfalling2", + "areapotslowfallextended": "lingerpotslowfalling2", + "areapotslowfallex": "lingerpotslowfalling2", + "areapotslowfalllevel2": "lingerpotslowfalling2", + "areapotsf2": "lingerpotslowfalling2", + "areapotsflong": "lingerpotslowfalling2", + "areapotsfextended": "lingerpotslowfalling2", + "areapotsfex": "lingerpotslowfalling2", + "areapotsflevel2": "lingerpotslowfalling2", + "slowfallingareapot2": "lingerpotslowfalling2", + "slowfallingareapotlong": "lingerpotslowfalling2", + "slowfallingareapotextended": "lingerpotslowfalling2", + "slowfallingareapotex": "lingerpotslowfalling2", + "slowfallingareapotlevel2": "lingerpotslowfalling2", + "slowfallareapot2": "lingerpotslowfalling2", + "slowfallareapotlong": "lingerpotslowfalling2", + "slowfallareapotextended": "lingerpotslowfalling2", + "slowfallareapotex": "lingerpotslowfalling2", + "slowfallareapotlevel2": "lingerpotslowfalling2", + "sfareapot2": "lingerpotslowfalling2", + "sfareapotlong": "lingerpotslowfalling2", + "sfareapotextended": "lingerpotslowfalling2", + "sfareapotex": "lingerpotslowfalling2", + "sfareapotlevel2": "lingerpotslowfalling2", + "cloudpotionslowfalling2": "lingerpotslowfalling2", + "cloudpotionslowfallinglong": "lingerpotslowfalling2", + "cloudpotionslowfallingextended": "lingerpotslowfalling2", + "cloudpotionslowfallingex": "lingerpotslowfalling2", + "cloudpotionslowfallinglevel2": "lingerpotslowfalling2", + "cloudpotionslowfall2": "lingerpotslowfalling2", + "cloudpotionslowfalllong": "lingerpotslowfalling2", + "cloudpotionslowfallextended": "lingerpotslowfalling2", + "cloudpotionslowfallex": "lingerpotslowfalling2", + "cloudpotionslowfalllevel2": "lingerpotslowfalling2", + "cloudpotionsf2": "lingerpotslowfalling2", + "cloudpotionsflong": "lingerpotslowfalling2", + "cloudpotionsfextended": "lingerpotslowfalling2", + "cloudpotionsfex": "lingerpotslowfalling2", + "cloudpotionsflevel2": "lingerpotslowfalling2", + "slowfallingcloudpotion2": "lingerpotslowfalling2", + "slowfallingcloudpotionlong": "lingerpotslowfalling2", + "slowfallingcloudpotionextended": "lingerpotslowfalling2", + "slowfallingcloudpotionex": "lingerpotslowfalling2", + "slowfallingcloudpotionlevel2": "lingerpotslowfalling2", + "slowfallcloudpotion2": "lingerpotslowfalling2", + "slowfallcloudpotionlong": "lingerpotslowfalling2", + "slowfallcloudpotionextended": "lingerpotslowfalling2", + "slowfallcloudpotionex": "lingerpotslowfalling2", + "slowfallcloudpotionlevel2": "lingerpotslowfalling2", + "sfcloudpotion2": "lingerpotslowfalling2", + "sfcloudpotionlong": "lingerpotslowfalling2", + "sfcloudpotionextended": "lingerpotslowfalling2", + "sfcloudpotionex": "lingerpotslowfalling2", + "sfcloudpotionlevel2": "lingerpotslowfalling2", + "cloudpotslowfalling2": "lingerpotslowfalling2", + "cloudpotslowfallinglong": "lingerpotslowfalling2", + "cloudpotslowfallingextended": "lingerpotslowfalling2", + "cloudpotslowfallingex": "lingerpotslowfalling2", + "cloudpotslowfallinglevel2": "lingerpotslowfalling2", + "cloudpotslowfall2": "lingerpotslowfalling2", + "cloudpotslowfalllong": "lingerpotslowfalling2", + "cloudpotslowfallextended": "lingerpotslowfalling2", + "cloudpotslowfallex": "lingerpotslowfalling2", + "cloudpotslowfalllevel2": "lingerpotslowfalling2", + "cloudpotsf2": "lingerpotslowfalling2", + "cloudpotsflong": "lingerpotslowfalling2", + "cloudpotsfextended": "lingerpotslowfalling2", + "cloudpotsfex": "lingerpotslowfalling2", + "cloudpotsflevel2": "lingerpotslowfalling2", + "slowfallingcloudpot2": "lingerpotslowfalling2", + "slowfallingcloudpotlong": "lingerpotslowfalling2", + "slowfallingcloudpotextended": "lingerpotslowfalling2", + "slowfallingcloudpotex": "lingerpotslowfalling2", + "slowfallingcloudpotlevel2": "lingerpotslowfalling2", + "slowfallcloudpot2": "lingerpotslowfalling2", + "slowfallcloudpotlong": "lingerpotslowfalling2", + "slowfallcloudpotextended": "lingerpotslowfalling2", + "slowfallcloudpotex": "lingerpotslowfalling2", + "slowfallcloudpotlevel2": "lingerpotslowfalling2", + "sfcloudpot2": "lingerpotslowfalling2", + "sfcloudpotlong": "lingerpotslowfalling2", + "sfcloudpotextended": "lingerpotslowfalling2", + "sfcloudpotex": "lingerpotslowfalling2", + "sfcloudpotlevel2": "lingerpotslowfalling2", + "arrowslowfalling2": { + "material": "TIPPED_ARROW", + "potionData": { + "vanillaType": "long_slow_falling", + "type": "SLOW_FALLING", + "upgraded": false, + "extended": true + } + }, + "arrowslowfallinglong": "arrowslowfalling2", + "arrowslowfallingextended": "arrowslowfalling2", + "arrowslowfallingex": "arrowslowfalling2", + "arrowslowfallinglevel2": "arrowslowfalling2", + "arrowslowfall2": "arrowslowfalling2", + "arrowslowfalllong": "arrowslowfalling2", + "arrowslowfallextended": "arrowslowfalling2", + "arrowslowfallex": "arrowslowfalling2", + "arrowslowfalllevel2": "arrowslowfalling2", + "arrowsf2": "arrowslowfalling2", + "arrowsflong": "arrowslowfalling2", + "arrowsfextended": "arrowslowfalling2", + "arrowsfex": "arrowslowfalling2", + "arrowsflevel2": "arrowslowfalling2", + "slowfallingarrow2": "arrowslowfalling2", + "slowfallingarrowlong": "arrowslowfalling2", + "slowfallingarrowextended": "arrowslowfalling2", + "slowfallingarrowex": "arrowslowfalling2", + "slowfallingarrowlevel2": "arrowslowfalling2", + "slowfallarrow2": "arrowslowfalling2", + "slowfallarrowlong": "arrowslowfalling2", + "slowfallarrowextended": "arrowslowfalling2", + "slowfallarrowex": "arrowslowfalling2", + "slowfallarrowlevel2": "arrowslowfalling2", + "sfarrow2": "arrowslowfalling2", + "sfarrowlong": "arrowslowfalling2", + "sfarrowextended": "arrowslowfalling2", + "sfarrowex": "arrowslowfalling2", + "sfarrowlevel2": "arrowslowfalling2", + "undefined": { + "material": "SPAWNER", + "entity": "FOX" + }, + "elderguardianmobspawner": { + "material": "SPAWNER", + "entity": "ELDER_GUARDIAN" + }, + "elderguardianmobcage": "elderguardianmobspawner", + "elderguardianmonsterspawner": "elderguardianmobspawner", + "elderguardianmonstercage": "elderguardianmobspawner", + "elderguardianmspawner": "elderguardianmobspawner", + "elderguardianmcage": "elderguardianmobspawner", + "elderguardianspawner": "elder_guardian_spawner", + "elderguardiancage": "elderguardianmobspawner", + "eguardianmobspawner": "elderguardianmobspawner", + "eguardianmobcage": "elderguardianmobspawner", + "eguardianmonsterspawner": "elderguardianmobspawner", + "eguardianmonstercage": "elderguardianmobspawner", + "eguardianmspawner": "elderguardianmobspawner", + "eguardianmcage": "elderguardianmobspawner", + "eguardianspawner": "elderguardianmobspawner", + "eguardiancage": "elderguardianmobspawner", + "witherskeletonmobspawner": { + "material": "SPAWNER", + "entity": "WITHER_SKELETON" + }, + "witherskeletonmobcage": "witherskeletonmobspawner", + "witherskeletonmonsterspawner": "witherskeletonmobspawner", + "witherskeletonmonstercage": "witherskeletonmobspawner", + "witherskeletonmspawner": "witherskeletonmobspawner", + "witherskeletonmcage": "witherskeletonmobspawner", + "witherskeletonspawner": "wither_skeleton_spawner", + "witherskeletoncage": "witherskeletonmobspawner", + "wskeletonmobspawner": "witherskeletonmobspawner", + "wskeletonmobcage": "witherskeletonmobspawner", + "wskeletonmonsterspawner": "witherskeletonmobspawner", + "wskeletonmonstercage": "witherskeletonmobspawner", + "wskeletonmspawner": "witherskeletonmobspawner", + "wskeletonmcage": "witherskeletonmobspawner", + "wskeletonspawner": "witherskeletonmobspawner", + "wskeletoncage": "witherskeletonmobspawner", + "witherskmobspawner": "witherskeletonmobspawner", + "witherskmobcage": "witherskeletonmobspawner", + "witherskmonsterspawner": "witherskeletonmobspawner", + "witherskmonstercage": "witherskeletonmobspawner", + "witherskmspawner": "witherskeletonmobspawner", + "witherskmcage": "witherskeletonmobspawner", + "witherskspawner": "witherskeletonmobspawner", + "witherskcage": "witherskeletonmobspawner", + "wskmobspawner": "witherskeletonmobspawner", + "wskmobcage": "witherskeletonmobspawner", + "wskmonsterspawner": "witherskeletonmobspawner", + "wskmonstercage": "witherskeletonmobspawner", + "wskmspawner": "witherskeletonmobspawner", + "wskmcage": "witherskeletonmobspawner", + "wskspawner": "witherskeletonmobspawner", + "wskcage": "witherskeletonmobspawner", + "withermobspawner": "witherskeletonmobspawner", + "withermobcage": "witherskeletonmobspawner", + "withermonsterspawner": "witherskeletonmobspawner", + "withermonstercage": "witherskeletonmobspawner", + "withermspawner": "witherskeletonmobspawner", + "withermcage": "witherskeletonmobspawner", + "witherspawner": "wither_spawner", + "withercage": "witherskeletonmobspawner", + "straymobspawner": { + "material": "SPAWNER", + "entity": "STRAY" + }, + "straymobcage": "straymobspawner", + "straymonsterspawner": "straymobspawner", + "straymonstercage": "straymobspawner", + "straymspawner": "straymobspawner", + "straymcage": "straymobspawner", + "strayspawner": "stray_spawner", + "straycage": "straymobspawner", + "huskmobspawner": { + "material": "SPAWNER", + "entity": "HUSK" + }, + "huskmobcage": "huskmobspawner", + "huskmonsterspawner": "huskmobspawner", + "huskmonstercage": "huskmobspawner", + "huskmspawner": "huskmobspawner", + "huskmcage": "huskmobspawner", + "huskspawner": "husk_spawner", + "huskcage": "huskmobspawner", + "zombievillagermobspawner": { + "material": "SPAWNER", + "entity": "ZOMBIE_VILLAGER" + }, + "zombievillagermobcage": "zombievillagermobspawner", + "zombievillagermonsterspawner": "zombievillagermobspawner", + "zombievillagermonstercage": "zombievillagermobspawner", + "zombievillagermspawner": "zombievillagermobspawner", + "zombievillagermcage": "zombievillagermobspawner", + "zombievillagerspawner": "zombie_villager_spawner", + "zombievillagercage": "zombievillagermobspawner", + "zvillagermobspawner": "zombievillagermobspawner", + "zvillagermobcage": "zombievillagermobspawner", + "zvillagermonsterspawner": "zombievillagermobspawner", + "zvillagermonstercage": "zombievillagermobspawner", + "zvillagermspawner": "zombievillagermobspawner", + "zvillagermcage": "zombievillagermobspawner", + "zvillagerspawner": "zombievillagermobspawner", + "zvillagercage": "zombievillagermobspawner", + "deadvillagermobspawner": "zombievillagermobspawner", + "deadvillagermobcage": "zombievillagermobspawner", + "deadvillagermonsterspawner": "zombievillagermobspawner", + "deadvillagermonstercage": "zombievillagermobspawner", + "deadvillagermspawner": "zombievillagermobspawner", + "deadvillagermcage": "zombievillagermobspawner", + "deadvillagerspawner": "zombievillagermobspawner", + "deadvillagercage": "zombievillagermobspawner", + "dvillagermobspawner": "zombievillagermobspawner", + "dvillagermobcage": "zombievillagermobspawner", + "dvillagermonsterspawner": "zombievillagermobspawner", + "dvillagermonstercage": "zombievillagermobspawner", + "dvillagermspawner": "zombievillagermobspawner", + "dvillagermcage": "zombievillagermobspawner", + "dvillagerspawner": "zombievillagermobspawner", + "dvillagercage": "zombievillagermobspawner", + "zvillmobspawner": "zombievillagermobspawner", + "zvillmobcage": "zombievillagermobspawner", + "zvillmonsterspawner": "zombievillagermobspawner", + "zvillmonstercage": "zombievillagermobspawner", + "zvillmspawner": "zombievillagermobspawner", + "zvillmcage": "zombievillagermobspawner", + "zvillspawner": "zombievillagermobspawner", + "zvillcage": "zombievillagermobspawner", + "dvillmobspawner": "zombievillagermobspawner", + "dvillmobcage": "zombievillagermobspawner", + "dvillmonsterspawner": "zombievillagermobspawner", + "dvillmonstercage": "zombievillagermobspawner", + "dvillmspawner": "zombievillagermobspawner", + "dvillmcage": "zombievillagermobspawner", + "dvillspawner": "zombievillagermobspawner", + "dvillcage": "zombievillagermobspawner", + "skeletonhorsemobspawner": { + "material": "SPAWNER", + "entity": "SKELETON_HORSE" + }, + "skeletonhorsemobcage": "skeletonhorsemobspawner", + "skeletonhorsemonsterspawner": "skeletonhorsemobspawner", + "skeletonhorsemonstercage": "skeletonhorsemobspawner", + "skeletonhorsemspawner": "skeletonhorsemobspawner", + "skeletonhorsemcage": "skeletonhorsemobspawner", + "skeletonhorsespawner": "skeleton_horse_spawner", + "skeletonhorsecage": "skeletonhorsemobspawner", + "shorsemobspawner": "skeletonhorsemobspawner", + "shorsemobcage": "skeletonhorsemobspawner", + "shorsemonsterspawner": "skeletonhorsemobspawner", + "shorsemonstercage": "skeletonhorsemobspawner", + "shorsemspawner": "skeletonhorsemobspawner", + "shorsemcage": "skeletonhorsemobspawner", + "shorsespawner": "skeletonhorsemobspawner", + "shorsecage": "skeletonhorsemobspawner", + "bonehorsemobspawner": "skeletonhorsemobspawner", + "bonehorsemobcage": "skeletonhorsemobspawner", + "bonehorsemonsterspawner": "skeletonhorsemobspawner", + "bonehorsemonstercage": "skeletonhorsemobspawner", + "bonehorsemspawner": "skeletonhorsemobspawner", + "bonehorsemcage": "skeletonhorsemobspawner", + "bonehorsespawner": "skeletonhorsemobspawner", + "bonehorsecage": "skeletonhorsemobspawner", + "zombiehorsemobspawner": { + "material": "SPAWNER", + "entity": "ZOMBIE_HORSE" + }, + "zombiehorsemobcage": "zombiehorsemobspawner", + "zombiehorsemonsterspawner": "zombiehorsemobspawner", + "zombiehorsemonstercage": "zombiehorsemobspawner", + "zombiehorsemspawner": "zombiehorsemobspawner", + "zombiehorsemcage": "zombiehorsemobspawner", + "zombiehorsespawner": "zombie_horse_spawner", + "zombiehorsecage": "zombiehorsemobspawner", + "zhorsemobspawner": "zombiehorsemobspawner", + "zhorsemobcage": "zombiehorsemobspawner", + "zhorsemonsterspawner": "zombiehorsemobspawner", + "zhorsemonstercage": "zombiehorsemobspawner", + "zhorsemspawner": "zombiehorsemobspawner", + "zhorsemcage": "zombiehorsemobspawner", + "zhorsespawner": "zombiehorsemobspawner", + "zhorsecage": "zombiehorsemobspawner", + "donkeymobspawner": { + "material": "SPAWNER", + "entity": "DONKEY" + }, + "donkeymobcage": "donkeymobspawner", + "donkeymonsterspawner": "donkeymobspawner", + "donkeymonstercage": "donkeymobspawner", + "donkeymspawner": "donkeymobspawner", + "donkeymcage": "donkeymobspawner", + "donkeyspawner": "donkey_spawner", + "donkeycage": "donkeymobspawner", + "mulemobspawner": { + "material": "SPAWNER", + "entity": "MULE" + }, + "mulemobcage": "mulemobspawner", + "mulemonsterspawner": "mulemobspawner", + "mulemonstercage": "mulemobspawner", + "mulemspawner": "mulemobspawner", + "mulemcage": "mulemobspawner", + "mulespawner": "mule_spawner", + "mulecage": "mulemobspawner", + "evokermobspawner": { + "material": "SPAWNER", + "entity": "EVOKER" + }, + "evokermobcage": "evokermobspawner", + "evokermonsterspawner": "evokermobspawner", + "evokermonstercage": "evokermobspawner", + "evokermspawner": "evokermobspawner", + "evokermcage": "evokermobspawner", + "evokerspawner": "evoker_spawner", + "evokercage": "evokermobspawner", + "vexmobspawner": { + "material": "SPAWNER", + "entity": "VEX" + }, + "vexmobcage": "vexmobspawner", + "vexmonsterspawner": "vexmobspawner", + "vexmonstercage": "vexmobspawner", + "vexmspawner": "vexmobspawner", + "vexmcage": "vexmobspawner", + "vexspawner": "vex_spawner", + "vexcage": "vexmobspawner", + "vindicatormobspawner": { + "material": "SPAWNER", + "entity": "VINDICATOR" + }, + "vindicatormobcage": "vindicatormobspawner", + "vindicatormonsterspawner": "vindicatormobspawner", + "vindicatormonstercage": "vindicatormobspawner", + "vindicatormspawner": "vindicatormobspawner", + "vindicatormcage": "vindicatormobspawner", + "vindicatorspawner": "vindicator_spawner", + "vindicatorcage": "vindicatormobspawner", + "vinmobspawner": "vindicatormobspawner", + "vinmobcage": "vindicatormobspawner", + "vinmonsterspawner": "vindicatormobspawner", + "vinmonstercage": "vindicatormobspawner", + "vinmspawner": "vindicatormobspawner", + "vinmcage": "vindicatormobspawner", + "vinspawner": "vindicatormobspawner", + "vincage": "vindicatormobspawner", + "creepermobspawner": { + "material": "SPAWNER", + "entity": "CREEPER" + }, + "creepermobcage": "creepermobspawner", + "creepermonsterspawner": "creepermobspawner", + "creepermonstercage": "creepermobspawner", + "creepermspawner": "creepermobspawner", + "creepermcage": "creepermobspawner", + "creeperspawner": "creeper_spawner", + "creepercage": "creepermobspawner", + "crmobspawner": "creepermobspawner", + "crmobcage": "creepermobspawner", + "crmonsterspawner": "creepermobspawner", + "crmonstercage": "creepermobspawner", + "crmspawner": "creepermobspawner", + "crmcage": "creepermobspawner", + "crspawner": "creepermobspawner", + "crcage": "creepermobspawner", + "skeletonmobspawner": { + "material": "SPAWNER", + "entity": "SKELETON" + }, + "skeletonmobcage": "skeletonmobspawner", + "skeletonmonsterspawner": "skeletonmobspawner", + "skeletonmonstercage": "skeletonmobspawner", + "skeletonmspawner": "skeletonmobspawner", + "skeletonmcage": "skeletonmobspawner", + "skeletonspawner": "skeleton_spawner", + "skeletoncage": "skeletonmobspawner", + "skmobspawner": "skeletonmobspawner", + "skmobcage": "skeletonmobspawner", + "skmonsterspawner": "skeletonmobspawner", + "skmonstercage": "skeletonmobspawner", + "skmspawner": "skeletonmobspawner", + "skmcage": "skeletonmobspawner", + "skspawner": "skeletonmobspawner", + "skcage": "skeletonmobspawner", + "spidermobspawner": { + "material": "SPAWNER", + "entity": "SPIDER" + }, + "spidermobcage": "spidermobspawner", + "spidermonsterspawner": "spidermobspawner", + "spidermonstercage": "spidermobspawner", + "spidermspawner": "spidermobspawner", + "spidermcage": "spidermobspawner", + "spiderspawner": "spider_spawner", + "spidercage": "spidermobspawner", + "giantmobspawner": { + "material": "SPAWNER", + "entity": "GIANT" + }, + "giantmobcage": "giantmobspawner", + "giantmonsterspawner": "giantmobspawner", + "giantmonstercage": "giantmobspawner", + "giantmspawner": "giantmobspawner", + "giantmcage": "giantmobspawner", + "giantspawner": "giant_spawner", + "giantcage": "giantmobspawner", + "zombiemobspawner": { + "material": "SPAWNER", + "entity": "ZOMBIE" + }, + "zombiemobcage": "zombiemobspawner", + "zombiemonsterspawner": "zombiemobspawner", + "zombiemonstercage": "zombiemobspawner", + "zombiemspawner": "zombiemobspawner", + "zombiemcage": "zombiemobspawner", + "zombiespawner": "zombie_spawner", + "zombiecage": "zombiemobspawner", + "slimemobspawner": { + "material": "SPAWNER", + "entity": "SLIME" + }, + "slimemobcage": "slimemobspawner", + "slimemonsterspawner": "slimemobspawner", + "slimemonstercage": "slimemobspawner", + "slimemspawner": "slimemobspawner", + "slimemcage": "slimemobspawner", + "slimespawner": "slime_spawner", + "slimecage": "slimemobspawner", + "ghastmobspawner": { + "material": "SPAWNER", + "entity": "GHAST" + }, + "ghastmobcage": "ghastmobspawner", + "ghastmonsterspawner": "ghastmobspawner", + "ghastmonstercage": "ghastmobspawner", + "ghastmspawner": "ghastmobspawner", + "ghastmcage": "ghastmobspawner", + "ghastspawner": "ghast_spawner", + "ghastcage": "ghastmobspawner", + "zombiepigmanmobspawner": { + "material": "SPAWNER", + "entity": "PIG_ZOMBIE" + }, + "zombiepigmanmobcage": "zombiepigmanmobspawner", + "zombiepigmanmonsterspawner": "zombiepigmanmobspawner", + "zombiepigmanmonstercage": "zombiepigmanmobspawner", + "zombiepigmanmspawner": "zombiepigmanmobspawner", + "zombiepigmanmcage": "zombiepigmanmobspawner", + "zombiepigmanspawner": "zombiepigmanmobspawner", + "zombiepigmancage": "zombiepigmanmobspawner", + "zpigmanmobspawner": "zombiepigmanmobspawner", + "zpigmanmobcage": "zombiepigmanmobspawner", + "zpigmanmonsterspawner": "zombiepigmanmobspawner", + "zpigmanmonstercage": "zombiepigmanmobspawner", + "zpigmanmspawner": "zombiepigmanmobspawner", + "zpigmanmcage": "zombiepigmanmobspawner", + "zpigmanspawner": "zombiepigmanmobspawner", + "zpigmancage": "zombiepigmanmobspawner", + "pigmanmobspawner": "zombiepigmanmobspawner", + "pigmanmobcage": "zombiepigmanmobspawner", + "pigmanmonsterspawner": "zombiepigmanmobspawner", + "pigmanmonstercage": "zombiepigmanmobspawner", + "pigmanmspawner": "zombiepigmanmobspawner", + "pigmanmcage": "zombiepigmanmobspawner", + "pigmanspawner": "zombiepigmanmobspawner", + "pigmancage": "zombiepigmanmobspawner", + "zombiepmanmobspawner": "zombiepigmanmobspawner", + "zombiepmanmobcage": "zombiepigmanmobspawner", + "zombiepmanmonsterspawner": "zombiepigmanmobspawner", + "zombiepmanmonstercage": "zombiepigmanmobspawner", + "zombiepmanmspawner": "zombiepigmanmobspawner", + "zombiepmanmcage": "zombiepigmanmobspawner", + "zombiepmanspawner": "zombiepigmanmobspawner", + "zombiepmancage": "zombiepigmanmobspawner", + "zpmanmobspawner": "zombiepigmanmobspawner", + "zpmanmobcage": "zombiepigmanmobspawner", + "zpmanmonsterspawner": "zombiepigmanmobspawner", + "zpmanmonstercage": "zombiepigmanmobspawner", + "zpmanmspawner": "zombiepigmanmobspawner", + "zpmanmcage": "zombiepigmanmobspawner", + "zpmanspawner": "zombiepigmanmobspawner", + "zpmancage": "zombiepigmanmobspawner", + "zombiepigmmobspawner": "zombiepigmanmobspawner", + "zombiepigmmobcage": "zombiepigmanmobspawner", + "zombiepigmmonsterspawner": "zombiepigmanmobspawner", + "zombiepigmmonstercage": "zombiepigmanmobspawner", + "zombiepigmmspawner": "zombiepigmanmobspawner", + "zombiepigmmcage": "zombiepigmanmobspawner", + "zombiepigmspawner": "zombiepigmanmobspawner", + "zombiepigmcage": "zombiepigmanmobspawner", + "zpigmmobspawner": "zombiepigmanmobspawner", + "zpigmmobcage": "zombiepigmanmobspawner", + "zpigmmonsterspawner": "zombiepigmanmobspawner", + "zpigmmonstercage": "zombiepigmanmobspawner", + "zpigmmspawner": "zombiepigmanmobspawner", + "zpigmmcage": "zombiepigmanmobspawner", + "zpigmspawner": "zombiepigmanmobspawner", + "zpigmcage": "zombiepigmanmobspawner", + "zombiepigmobspawner": "zombiepigmanmobspawner", + "zombiepigmobcage": "zombiepigmanmobspawner", + "zombiepigmonsterspawner": "zombiepigmanmobspawner", + "zombiepigmonstercage": "zombiepigmanmobspawner", + "zombiepigspawner": "zombiepigmanmobspawner", + "zombiepigcage": "zombiepigmanmobspawner", + "zpigmobspawner": "zombiepigmanmobspawner", + "zpigmobcage": "zombiepigmanmobspawner", + "zpigmonsterspawner": "zombiepigmanmobspawner", + "zpigmonstercage": "zombiepigmanmobspawner", + "zpigspawner": "zombiepigmanmobspawner", + "zpigcage": "zombiepigmanmobspawner", + "zombiepmmobspawner": "zombiepigmanmobspawner", + "zombiepmmobcage": "zombiepigmanmobspawner", + "zombiepmmonsterspawner": "zombiepigmanmobspawner", + "zombiepmmonstercage": "zombiepigmanmobspawner", + "zombiepmmspawner": "zombiepigmanmobspawner", + "zombiepmmcage": "zombiepigmanmobspawner", + "zombiepmspawner": "zombiepigmanmobspawner", + "zombiepmcage": "zombiepigmanmobspawner", + "zombiepmobspawner": "zombiepigmanmobspawner", + "zombiepmobcage": "zombiepigmanmobspawner", + "zombiepmonsterspawner": "zombiepigmanmobspawner", + "zombiepmonstercage": "zombiepigmanmobspawner", + "zombiepspawner": "zombiepigmanmobspawner", + "zombiepcage": "zombiepigmanmobspawner", + "zombiepigmenmobspawner": "zombiepigmanmobspawner", + "zombiepigmenmobcage": "zombiepigmanmobspawner", + "zombiepigmenmonsterspawner": "zombiepigmanmobspawner", + "zombiepigmenmonstercage": "zombiepigmanmobspawner", + "zombiepigmenmspawner": "zombiepigmanmobspawner", + "zombiepigmenmcage": "zombiepigmanmobspawner", + "zombiepigmenspawner": "zombiepigmanmobspawner", + "zombiepigmencage": "zombiepigmanmobspawner", + "zpigmenmobspawner": "zombiepigmanmobspawner", + "zpigmenmobcage": "zombiepigmanmobspawner", + "zpigmenmonsterspawner": "zombiepigmanmobspawner", + "zpigmenmonstercage": "zombiepigmanmobspawner", + "zpigmenmspawner": "zombiepigmanmobspawner", + "zpigmenmcage": "zombiepigmanmobspawner", + "zpigmenspawner": "zombiepigmanmobspawner", + "zpigmencage": "zombiepigmanmobspawner", + "pigmenmobspawner": "zombiepigmanmobspawner", + "pigmenmobcage": "zombiepigmanmobspawner", + "pigmenmonsterspawner": "zombiepigmanmobspawner", + "pigmenmonstercage": "zombiepigmanmobspawner", + "pigmenmspawner": "zombiepigmanmobspawner", + "pigmenmcage": "zombiepigmanmobspawner", + "pigmenspawner": "zombiepigmanmobspawner", + "pigmencage": "zombiepigmanmobspawner", + "endermanmobspawner": { + "material": "SPAWNER", + "entity": "ENDERMAN" + }, + "endermanmobcage": "endermanmobspawner", + "endermanmonsterspawner": "endermanmobspawner", + "endermanmonstercage": "endermanmobspawner", + "endermanmspawner": "endermanmobspawner", + "endermanmcage": "endermanmobspawner", + "endermanspawner": "enderman_spawner", + "endermancage": "endermanmobspawner", + "cavespidermobspawner": { + "material": "SPAWNER", + "entity": "CAVE_SPIDER" + }, + "cavespidermobcage": "cavespidermobspawner", + "cavespidermonsterspawner": "cavespidermobspawner", + "cavespidermonstercage": "cavespidermobspawner", + "cavespidermspawner": "cavespidermobspawner", + "cavespidermcage": "cavespidermobspawner", + "cavespiderspawner": "cave_spider_spawner", + "cavespidercage": "cavespidermobspawner", + "silverfishmobspawner": { + "material": "SPAWNER", + "entity": "SILVERFISH" + }, + "silverfishmobcage": "silverfishmobspawner", + "silverfishmonsterspawner": "silverfishmobspawner", + "silverfishmonstercage": "silverfishmobspawner", + "silverfishmspawner": "silverfishmobspawner", + "silverfishmcage": "silverfishmobspawner", + "silverfishspawner": "silverfish_spawner", + "silverfishcage": "silverfishmobspawner", + "blazemobspawner": { + "material": "SPAWNER", + "entity": "BLAZE" + }, + "blazemobcage": "blazemobspawner", + "blazemonsterspawner": "blazemobspawner", + "blazemonstercage": "blazemobspawner", + "blazemspawner": "blazemobspawner", + "blazemcage": "blazemobspawner", + "blazespawner": "blaze_spawner", + "blazecage": "blazemobspawner", + "lavaslimemobspawner": { + "material": "SPAWNER", + "entity": "MAGMA_CUBE" + }, + "lavaslimemobcage": "lavaslimemobspawner", + "lavaslimemonsterspawner": "lavaslimemobspawner", + "lavaslimemonstercage": "lavaslimemobspawner", + "lavaslimemspawner": "lavaslimemobspawner", + "lavaslimemcage": "lavaslimemobspawner", + "lavaslimespawner": "lavaslimemobspawner", + "lavaslimecage": "lavaslimemobspawner", + "lavacubemobspawner": "lavaslimemobspawner", + "lavacubemobcage": "lavaslimemobspawner", + "lavacubemonsterspawner": "lavaslimemobspawner", + "lavacubemonstercage": "lavaslimemobspawner", + "lavacubemspawner": "lavaslimemobspawner", + "lavacubemcage": "lavaslimemobspawner", + "lavacubespawner": "lavaslimemobspawner", + "lavacubecage": "lavaslimemobspawner", + "magmacubemobspawner": "lavaslimemobspawner", + "magmacubemobcage": "lavaslimemobspawner", + "magmacubemonsterspawner": "lavaslimemobspawner", + "magmacubemonstercage": "lavaslimemobspawner", + "magmacubemspawner": "lavaslimemobspawner", + "magmacubemcage": "lavaslimemobspawner", + "magmacubespawner": "magma_cube_spawner", + "magmacubecage": "lavaslimemobspawner", + "magmaslimemobspawner": "lavaslimemobspawner", + "magmaslimemobcage": "lavaslimemobspawner", + "magmaslimemonsterspawner": "lavaslimemobspawner", + "magmaslimemonstercage": "lavaslimemobspawner", + "magmaslimemspawner": "lavaslimemobspawner", + "magmaslimemcage": "lavaslimemobspawner", + "magmaslimespawner": "lavaslimemobspawner", + "magmaslimecage": "lavaslimemobspawner", + "batmobspawner": { + "material": "SPAWNER", + "entity": "BAT" + }, + "batmobcage": "batmobspawner", + "batmonsterspawner": "batmobspawner", + "batmonstercage": "batmobspawner", + "batmspawner": "batmobspawner", + "batmcage": "batmobspawner", + "batspawner": "bat_spawner", + "batcage": "batmobspawner", + "witchmobspawner": { + "material": "SPAWNER", + "entity": "WITCH" + }, + "witchmobcage": "witchmobspawner", + "witchmonsterspawner": "witchmobspawner", + "witchmonstercage": "witchmobspawner", + "witchmspawner": "witchmobspawner", + "witchmcage": "witchmobspawner", + "witchspawner": "witch_spawner", + "witchcage": "witchmobspawner", + "endermitemobspawner": { + "material": "SPAWNER", + "entity": "ENDERMITE" + }, + "endermitemobcage": "endermitemobspawner", + "endermitemonsterspawner": "endermitemobspawner", + "endermitemonstercage": "endermitemobspawner", + "endermitemspawner": "endermitemobspawner", + "endermitemcage": "endermitemobspawner", + "endermitespawner": "endermite_spawner", + "endermitecage": "endermitemobspawner", + "guardianmobspawner": { + "material": "SPAWNER", + "entity": "GUARDIAN" + }, + "guardianmobcage": "guardianmobspawner", + "guardianmonsterspawner": "guardianmobspawner", + "guardianmonstercage": "guardianmobspawner", + "guardianmspawner": "guardianmobspawner", + "guardianmcage": "guardianmobspawner", + "guardianspawner": "guardian_spawner", + "guardiancage": "guardianmobspawner", + "shulkermobspawner": { + "material": "SPAWNER", + "entity": "SHULKER" + }, + "shulkermobcage": "shulkermobspawner", + "shulkermonsterspawner": "shulkermobspawner", + "shulkermonstercage": "shulkermobspawner", + "shulkermspawner": "shulkermobspawner", + "shulkermcage": "shulkermobspawner", + "shulkerspawner": "shulker_spawner", + "shulkercage": "shulkermobspawner", + "shulkmobspawner": "shulkermobspawner", + "shulkmobcage": "shulkermobspawner", + "shulkmonsterspawner": "shulkermobspawner", + "shulkmonstercage": "shulkermobspawner", + "shulkmspawner": "shulkermobspawner", + "shulkmcage": "shulkermobspawner", + "shulkspawner": "shulkermobspawner", + "shulkcage": "shulkermobspawner", + "pigmobspawner": { + "material": "SPAWNER", + "entity": "PIG" + }, + "pigmobcage": "pigmobspawner", + "pigmonsterspawner": "pigmobspawner", + "pigmonstercage": "pigmobspawner", + "pigmspawner": "pigmobspawner", + "pigmcage": "pigmobspawner", + "pigspawner": "pig_spawner", + "pigcage": "pigmobspawner", + "mobspawner": "pigmobspawner", + "mobcage": "pigmobspawner", + "monsterspawner": "pigmobspawner", + "monstercage": "pigmobspawner", + "mspawner": "pigmobspawner", + "mcage": "pigmobspawner", + "cage": "pigmobspawner", + "sheepmobspawner": { + "material": "SPAWNER", + "entity": "SHEEP" + }, + "sheepmobcage": "sheepmobspawner", + "sheepmonsterspawner": "sheepmobspawner", + "sheepmonstercage": "sheepmobspawner", + "sheepmspawner": "sheepmobspawner", + "sheepmcage": "sheepmobspawner", + "sheepspawner": "sheep_spawner", + "sheepcage": "sheepmobspawner", + "cowmobspawner": { + "material": "SPAWNER", + "entity": "COW" + }, + "cowmobcage": "cowmobspawner", + "cowmonsterspawner": "cowmobspawner", + "cowmonstercage": "cowmobspawner", + "cowmspawner": "cowmobspawner", + "cowmcage": "cowmobspawner", + "cowspawner": "cow_spawner", + "cowcage": "cowmobspawner", + "chickenmobspawner": { + "material": "SPAWNER", + "entity": "CHICKEN" + }, + "chickenmobcage": "chickenmobspawner", + "chickenmonsterspawner": "chickenmobspawner", + "chickenmonstercage": "chickenmobspawner", + "chickenmspawner": "chickenmobspawner", + "chickenmcage": "chickenmobspawner", + "chickenspawner": "chicken_spawner", + "chickencage": "chickenmobspawner", + "squidmobspawner": { + "material": "SPAWNER", + "entity": "SQUID" + }, + "squidmobcage": "squidmobspawner", + "squidmonsterspawner": "squidmobspawner", + "squidmonstercage": "squidmobspawner", + "squidmspawner": "squidmobspawner", + "squidmcage": "squidmobspawner", + "squidspawner": "squid_spawner", + "squidcage": "squidmobspawner", + "wolfmobspawner": { + "material": "SPAWNER", + "entity": "WOLF" + }, + "wolfmobcage": "wolfmobspawner", + "wolfmonsterspawner": "wolfmobspawner", + "wolfmonstercage": "wolfmobspawner", + "wolfmspawner": "wolfmobspawner", + "wolfmcage": "wolfmobspawner", + "wolfspawner": "wolf_spawner", + "wolfcage": "wolfmobspawner", + "mooshroommobspawner": { + "material": "SPAWNER", + "entity": "MUSHROOM_COW" + }, + "mooshroommobcage": "mooshroommobspawner", + "mooshroommonsterspawner": "mooshroommobspawner", + "mooshroommonstercage": "mooshroommobspawner", + "mooshroommspawner": "mooshroommobspawner", + "mooshroommcage": "mooshroommobspawner", + "mooshroomspawner": "mooshroommobspawner", + "mooshroomcage": "mooshroommobspawner", + "mushroommobspawner": "mooshroommobspawner", + "mushroommobcage": "mooshroommobspawner", + "mushroommonsterspawner": "mooshroommobspawner", + "mushroommonstercage": "mooshroommobspawner", + "mushroommspawner": "mooshroommobspawner", + "mushroommcage": "mooshroommobspawner", + "mushroomspawner": "mooshroommobspawner", + "mushroomcage": "mooshroommobspawner", + "mushroomcowmobspawner": "mooshroommobspawner", + "mushroomcowmobcage": "mooshroommobspawner", + "mushroomcowmonsterspawner": "mooshroommobspawner", + "mushroomcowmonstercage": "mooshroommobspawner", + "mushroomcowmspawner": "mooshroommobspawner", + "mushroomcowmcage": "mooshroommobspawner", + "mushroomcowspawner": "mushroom_cow_spawner", + "mushroomcowcage": "mooshroommobspawner", + "ocelotmobspawner": { + "material": "SPAWNER", + "entity": "OCELOT" + }, + "ocelotmobcage": "ocelotmobspawner", + "ocelotmonsterspawner": "ocelotmobspawner", + "ocelotmonstercage": "ocelotmobspawner", + "ocelotmspawner": "ocelotmobspawner", + "ocelotmcage": "ocelotmobspawner", + "ocelotspawner": "ocelot_spawner", + "ocelotcage": "ocelotmobspawner", + "catmobspawner": "ocelotmobspawner", + "catmobcage": "ocelotmobspawner", + "catmonsterspawner": "ocelotmobspawner", + "catmonstercage": "ocelotmobspawner", + "catmspawner": "ocelotmobspawner", + "catmcage": "ocelotmobspawner", + "catspawner": "cat_spawner", + "catcage": "ocelotmobspawner", + "irongolemmobspawner": { + "material": "SPAWNER", + "entity": "IRON_GOLEM" + }, + "irongolemmobcage": "irongolemmobspawner", + "irongolemmonsterspawner": "irongolemmobspawner", + "irongolemmonstercage": "irongolemmobspawner", + "irongolemmspawner": "irongolemmobspawner", + "irongolemmcage": "irongolemmobspawner", + "irongolemspawner": "iron_golem_spawner", + "irongolemcage": "irongolemmobspawner", + "igolemmobspawner": "irongolemmobspawner", + "igolemmobcage": "irongolemmobspawner", + "igolemmonsterspawner": "irongolemmobspawner", + "igolemmonstercage": "irongolemmobspawner", + "igolemmspawner": "irongolemmobspawner", + "igolemmcage": "irongolemmobspawner", + "igolemspawner": "irongolemmobspawner", + "igolemcage": "irongolemmobspawner", + "horsemobspawner": { + "material": "SPAWNER", + "entity": "HORSE" + }, + "horsemobcage": "horsemobspawner", + "horsemonsterspawner": "horsemobspawner", + "horsemonstercage": "horsemobspawner", + "horsemspawner": "horsemobspawner", + "horsemcage": "horsemobspawner", + "horsespawner": "horse_spawner", + "horsecage": "horsemobspawner", + "rabbitmobspawner": { + "material": "SPAWNER", + "entity": "RABBIT" + }, + "rabbitmobcage": "rabbitmobspawner", + "rabbitmonsterspawner": "rabbitmobspawner", + "rabbitmonstercage": "rabbitmobspawner", + "rabbitmspawner": "rabbitmobspawner", + "rabbitmcage": "rabbitmobspawner", + "rabbitspawner": "rabbit_spawner", + "rabbitcage": "rabbitmobspawner", + "polarbearmobspawner": { + "material": "SPAWNER", + "entity": "POLAR_BEAR" + }, + "polarbearmobcage": "polarbearmobspawner", + "polarbearmonsterspawner": "polarbearmobspawner", + "polarbearmonstercage": "polarbearmobspawner", + "polarbearmspawner": "polarbearmobspawner", + "polarbearmcage": "polarbearmobspawner", + "polarbearspawner": "polar_bear_spawner", + "polarbearcage": "polarbearmobspawner", + "polarmobspawner": "polarbearmobspawner", + "polarmobcage": "polarbearmobspawner", + "polarmonsterspawner": "polarbearmobspawner", + "polarmonstercage": "polarbearmobspawner", + "polarmspawner": "polarbearmobspawner", + "polarmcage": "polarbearmobspawner", + "polarspawner": "polarbearmobspawner", + "polarcage": "polarbearmobspawner", + "bearmobspawner": "polarbearmobspawner", + "bearmobcage": "polarbearmobspawner", + "bearmonsterspawner": "polarbearmobspawner", + "bearmonstercage": "polarbearmobspawner", + "bearmspawner": "polarbearmobspawner", + "bearmcage": "polarbearmobspawner", + "bearspawner": "polarbearmobspawner", + "bearcage": "polarbearmobspawner", + "llamamobspawner": { + "material": "SPAWNER", + "entity": "LLAMA" + }, + "llamamobcage": "llamamobspawner", + "llamamonsterspawner": "llamamobspawner", + "llamamonstercage": "llamamobspawner", + "llamamspawner": "llamamobspawner", + "llamamcage": "llamamobspawner", + "llamaspawner": "llama_spawner", + "llamacage": "llamamobspawner", + "parrotmobspawner": { + "material": "SPAWNER", + "entity": "PARROT" + }, + "parrotmobcage": "parrotmobspawner", + "parrotmonsterspawner": "parrotmobspawner", + "parrotmonstercage": "parrotmobspawner", + "parrotmspawner": "parrotmobspawner", + "parrotmcage": "parrotmobspawner", + "parrotspawner": "parrot_spawner", + "parrotcage": "parrotmobspawner", + "villagermobspawner": { + "material": "SPAWNER", + "entity": "VILLAGER" + }, + "villagermobcage": "villagermobspawner", + "villagermonsterspawner": "villagermobspawner", + "villagermonstercage": "villagermobspawner", + "villagermspawner": "villagermobspawner", + "villagermcage": "villagermobspawner", + "villagerspawner": "villager_spawner", + "villagercage": "villagermobspawner", + "turtlemobspawner": { + "material": "SPAWNER", + "entity": "TURTLE" + }, + "turtlemobcage": "turtlemobspawner", + "turtlemonsterspawner": "turtlemobspawner", + "turtlemonstercage": "turtlemobspawner", + "turtlemspawner": "turtlemobspawner", + "turtlemcage": "turtlemobspawner", + "turtlespawner": "turtle_spawner", + "turtlecage": "turtlemobspawner", + "phantommobspawner": { + "material": "SPAWNER", + "entity": "PHANTOM" + }, + "phantommobcage": "phantommobspawner", + "phantommonsterspawner": "phantommobspawner", + "phantommonstercage": "phantommobspawner", + "phantommspawner": "phantommobspawner", + "phantommcage": "phantommobspawner", + "phantomspawner": "phantom_spawner", + "phantomcage": "phantommobspawner", + "codmobspawner": { + "material": "SPAWNER", + "entity": "COD" + }, + "codmobcage": "codmobspawner", + "codmonsterspawner": "codmobspawner", + "codmonstercage": "codmobspawner", + "codmspawner": "codmobspawner", + "codmcage": "codmobspawner", + "codspawner": "cod_spawner", + "codcage": "codmobspawner", + "salmonmobspawner": { + "material": "SPAWNER", + "entity": "SALMON" + }, + "salmonmobcage": "salmonmobspawner", + "salmonmonsterspawner": "salmonmobspawner", + "salmonmonstercage": "salmonmobspawner", + "salmonmspawner": "salmonmobspawner", + "salmonmcage": "salmonmobspawner", + "salmonspawner": "salmon_spawner", + "salmoncage": "salmonmobspawner", + "pufferfishmobspawner": { + "material": "SPAWNER", + "entity": "PUFFERFISH" + }, + "pufferfishmobcage": "pufferfishmobspawner", + "pufferfishmonsterspawner": "pufferfishmobspawner", + "pufferfishmonstercage": "pufferfishmobspawner", + "pufferfishmspawner": "pufferfishmobspawner", + "pufferfishmcage": "pufferfishmobspawner", + "pufferfishspawner": "pufferfish_spawner", + "pufferfishcage": "pufferfishmobspawner", + "puffermobspawner": "pufferfishmobspawner", + "puffermobcage": "pufferfishmobspawner", + "puffermonsterspawner": "pufferfishmobspawner", + "puffermonstercage": "pufferfishmobspawner", + "puffermspawner": "pufferfishmobspawner", + "puffermcage": "pufferfishmobspawner", + "pufferspawner": "pufferfishmobspawner", + "puffercage": "pufferfishmobspawner", + "pfishmobspawner": "pufferfishmobspawner", + "pfishmobcage": "pufferfishmobspawner", + "pfishmonsterspawner": "pufferfishmobspawner", + "pfishmonstercage": "pufferfishmobspawner", + "pfishmspawner": "pufferfishmobspawner", + "pfishmcage": "pufferfishmobspawner", + "pfishspawner": "pufferfishmobspawner", + "pfishcage": "pufferfishmobspawner", + "tropicalfishmobspawner": { + "material": "SPAWNER", + "entity": "TROPICAL_FISH" + }, + "tropicalfishmobcage": "tropicalfishmobspawner", + "tropicalfishmonsterspawner": "tropicalfishmobspawner", + "tropicalfishmonstercage": "tropicalfishmobspawner", + "tropicalfishmspawner": "tropicalfishmobspawner", + "tropicalfishmcage": "tropicalfishmobspawner", + "tropicalfishspawner": "tropical_fish_spawner", + "tropicalfishcage": "tropicalfishmobspawner", + "tropicfishmobspawner": "tropicalfishmobspawner", + "tropicfishmobcage": "tropicalfishmobspawner", + "tropicfishmonsterspawner": "tropicalfishmobspawner", + "tropicfishmonstercage": "tropicalfishmobspawner", + "tropicfishmspawner": "tropicalfishmobspawner", + "tropicfishmcage": "tropicalfishmobspawner", + "tropicfishspawner": "tropicalfishmobspawner", + "tropicfishcage": "tropicalfishmobspawner", + "tfishmobspawner": "tropicalfishmobspawner", + "tfishmobcage": "tropicalfishmobspawner", + "tfishmonsterspawner": "tropicalfishmobspawner", + "tfishmonstercage": "tropicalfishmobspawner", + "tfishmspawner": "tropicalfishmobspawner", + "tfishmcage": "tropicalfishmobspawner", + "tfishspawner": "tropicalfishmobspawner", + "tfishcage": "tropicalfishmobspawner", + "tropicalfmobspawner": "tropicalfishmobspawner", + "tropicalfmobcage": "tropicalfishmobspawner", + "tropicalfmonsterspawner": "tropicalfishmobspawner", + "tropicalfmonstercage": "tropicalfishmobspawner", + "tropicalfmspawner": "tropicalfishmobspawner", + "tropicalfmcage": "tropicalfishmobspawner", + "tropicalfspawner": "tropicalfishmobspawner", + "tropicalfcage": "tropicalfishmobspawner", + "tropicfmobspawner": "tropicalfishmobspawner", + "tropicfmobcage": "tropicalfishmobspawner", + "tropicfmonsterspawner": "tropicalfishmobspawner", + "tropicfmonstercage": "tropicalfishmobspawner", + "tropicfmspawner": "tropicalfishmobspawner", + "tropicfmcage": "tropicalfishmobspawner", + "tropicfspawner": "tropicalfishmobspawner", + "tropicfcage": "tropicalfishmobspawner", + "drownedmobspawner": { + "material": "SPAWNER", + "entity": "DROWNED" + }, + "drownedmobcage": "drownedmobspawner", + "drownedmonsterspawner": "drownedmobspawner", + "drownedmonstercage": "drownedmobspawner", + "drownedmspawner": "drownedmobspawner", + "drownedmcage": "drownedmobspawner", + "drownedspawner": "drowned_spawner", + "drownedcage": "drownedmobspawner", + "dolphinmobspawner": { + "material": "SPAWNER", + "entity": "DOLPHIN" + }, + "dolphinmobcage": "dolphinmobspawner", + "dolphinmonsterspawner": "dolphinmobspawner", + "dolphinmonstercage": "dolphinmobspawner", + "dolphinmspawner": "dolphinmobspawner", + "dolphinmcage": "dolphinmobspawner", + "dolphinspawner": "dolphin_spawner", + "dolphincage": "dolphinmobspawner", + "eccomobspawner": "dolphinmobspawner", + "eccomobcage": "dolphinmobspawner", + "eccomonsterspawner": "dolphinmobspawner", + "eccomonstercage": "dolphinmobspawner", + "eccomspawner": "dolphinmobspawner", + "eccomcage": "dolphinmobspawner", + "eccospawner": "dolphinmobspawner", + "eccocage": "dolphinmobspawner", + "minecraft:smithing_table": "smithing_table", + "minecraft:detector_rail": "detector_rail", + "minecraft:iron_hoe": "iron_hoe", + "minecraft:oak_log": "oak_log", + "minecraft:golden_carrot": "golden_carrot", + "minecraft:stone_brick_stairs": "stone_brick_stairs", + "minecraft:egg": "egg", + "minecraft:chiseled_sandstone": "chiseled_sandstone", + "minecraft:yellow_bed": "yellow_bed", + "minecraft:beacon": "beacon", + "minecraft:debug_stick": "debug_stick", + "minecraft:chest": "chest", + "minecraft:lily_pad": "lily_pad", + "minecraft:birch_planks": "birch_planks", + "minecraft:orange_bed": "orange_bed", + "primed_tnt_spawner": { + "entity": "PRIMED_TNT", + "material": "SPAWNER" + }, + "primedtntspawner": "primed_tnt_spawner", + "minecraft:blue_banner": "blue_banner", + "minecraft:brown_concrete_powder": "brown_concrete_powder", + "minecraft:leather_chestplate": "leather_chestplate", + "minecraft:stray_spawn_egg": "stray_spawn_egg", + "minecraft:dragon_breath": "dragon_breath", + "minecraft:peony": "peony", + "minecraft:petrified_oak_slab": "petrified_oak_slab", + "minecraft:bubble_coral_block": "bubble_coral_block", + "minecart_command_spawner": { + "entity": "MINECART_COMMAND", + "material": "SPAWNER" + }, + "minecartcommandspawner": "minecart_command_spawner", + "minecraft:dolphin_spawn_egg": "dolphin_spawn_egg", + "minecraft:light_blue_banner": "light_blue_banner", + "minecraft:brick_stairs": "brick_stairs", + "minecraft:salmon": "salmon", + "minecraft:soul_sand": "soul_sand", + "minecraft:suspicious_stew": "suspicious_stew", + "minecraft:gold_ore": "gold_ore", + "minecraft:spruce_sapling": "spruce_sapling", + "minecraft:dead_brain_coral": "dead_brain_coral", + "boat_spawner": { + "entity": "BOAT", + "material": "SPAWNER" + }, + "boatspawner": "boat_spawner", + "minecraft:orange_terracotta": "orange_terracotta", + "minecraft:yellow_terracotta": "yellow_terracotta", + "minecraft:red_mushroom": "red_mushroom", + "minecraft:purpur_slab": "purpur_slab", + "minecraft:llama_spawn_egg": "llama_spawn_egg", + "minecraft:blaze_powder": "blaze_powder", + "minecraft:stone_button": "stone_button", + "minecraft:yellow_concrete": "yellow_concrete", + "illusioner_spawner": { + "entity": "ILLUSIONER", + "material": "SPAWNER" + }, + "illusionerspawner": "illusioner_spawner", + "minecraft:hopper_minecart": "hopper_minecart", + "minecraft:light_blue_glazed_terracotta": "light_blue_glazed_terracotta", + "minecraft:light_gray_shulker_box": "light_gray_shulker_box", + "minecraft:light_gray_stained_glass_pane": "light_gray_stained_glass_pane", + "minecraft:spectral_arrow": "spectral_arrow", + "minecraft:cut_red_sandstone": "cut_red_sandstone", + "vex_spawner": { + "entity": "VEX", + "material": "SPAWNER" + }, + "minecraft:orange_stained_glass_pane": "orange_stained_glass_pane", + "minecraft:green_carpet": "green_carpet", + "minecraft:iron_axe": "iron_axe", + "minecraft:ink_sac": "ink_sac", + "minecraft:oak_sapling": "oak_sapling", + "minecraft:snow": "snow", + "minecraft:repeating_command_block": "repeating_command_block", + "minecraft:dead_bubble_coral": "dead_bubble_coral", + "minecraft:black_stained_glass_pane": "black_stained_glass_pane", + "minecraft:dark_oak_sign": "dark_oak_sign", + "minecraft:black_terracotta": "black_terracotta", + "minecraft:golden_helmet": "golden_helmet", + "minecraft:yellow_shulker_box": "yellow_shulker_box", + "minecraft:name_tag": "name_tag", + "minecraft:poisonous_potato": "poisonous_potato", + "minecraft:glistering_melon_slice": "glistering_melon_slice", + "minecraft:purple_carpet": "purple_carpet", + "minecraft:scute": "scute", + "minecraft:bat_spawn_egg": "bat_spawn_egg", + "wither_skeleton_spawner": { + "entity": "WITHER_SKELETON", + "material": "SPAWNER" + }, + "minecraft:gunpowder": "gunpowder", + "minecraft:smooth_red_sandstone_stairs": "smooth_red_sandstone_stairs", + "minecraft:rabbit_foot": "rabbit_foot", + "thrown_exp_bottle_spawner": { + "entity": "THROWN_EXP_BOTTLE", + "material": "SPAWNER" + }, + "thrownexpbottlespawner": "thrown_exp_bottle_spawner", + "minecraft:birch_button": "birch_button", + "minecraft:end_crystal": "end_crystal", + "minecraft:chicken_spawn_egg": "chicken_spawn_egg", + "minecraft:granite_slab": "granite_slab", + "minecraft:leather": "leather", + "minecraft:heavy_weighted_pressure_plate": "heavy_weighted_pressure_plate", + "minecraft:blue_ice": "blue_ice", + "minecraft:clay": "clay", + "minecraft:prismarine_stairs": "prismarine_stairs", + "strippedalog": "stripped_acacia_log", + "logastripped": "stripped_acacia_log", + "stracacialog": "stripped_acacia_log", + "minecraft:stripped_acacia_log": "stripped_acacia_log", + "logacaciastripped": "stripped_acacia_log", + "stralog": "stripped_acacia_log", + "logacstripped": "stripped_acacia_log", + "straclog": "stripped_acacia_log", + "strippedaclog": "stripped_acacia_log", + "minecraft:sunflower": "sunflower", + "cod_spawner": { + "entity": "COD", + "material": "SPAWNER" + }, + "minecraft:diamond_sword": "diamond_sword", + "minecraft:cooked_beef": "cooked_beef", + "minecraft:blue_carpet": "blue_carpet", + "minecraft:evoker_spawn_egg": "evoker_spawn_egg", + "minecraft:iron_bars": "iron_bars", + "minecraft:barrier": "barrier", + "minecraft:nether_brick_wall": "nether_brick_wall", + "minecraft:pink_stained_glass": "pink_stained_glass", + "minecraft:villager_spawn_egg": "villager_spawn_egg", + "minecraft:mycelium": "mycelium", + "minecraft:dead_brain_coral_fan": "dead_brain_coral_fan", + "minecraft:brown_stained_glass_pane": "brown_stained_glass_pane", + "minecraft:turtle_helmet": "turtle_helmet", + "minecraft:lime_stained_glass": "lime_stained_glass", + "minecraft:wooden_pickaxe": "wooden_pickaxe", + "minecraft:blue_concrete": "blue_concrete", + "minecraft:black_dye": "black_dye", + "minecraft:composter": "composter", + "minecraft:experience_bottle": "experience_bottle", + "minecraft:white_concrete_powder": "white_concrete_powder", + "minecraft:witch_spawn_egg": "witch_spawn_egg", + "minecraft:light_blue_shulker_box": "light_blue_shulker_box", + "minecraft:purple_concrete": "purple_concrete", + "minecraft:gray_carpet": "gray_carpet", + "pig_spawner": { + "entity": "PIG", + "material": "SPAWNER" + }, + "minecraft:magma_cube_spawn_egg": "magma_cube_spawn_egg", + "minecraft:leather_helmet": "leather_helmet", + "minecraft:light_gray_terracotta": "light_gray_terracotta", + "minecraft:wooden_sword": "wooden_sword", + "minecraft:carrot_on_a_stick": "carrot_on_a_stick", + "minecraft:light_blue_concrete_powder": "light_blue_concrete_powder", + "minecraft:stripped_jungle_wood": "stripped_jungle_wood", + "woodjunglestripped": "stripped_jungle_wood", + "woodjstripped": "stripped_jungle_wood", + "strjwood": "stripped_jungle_wood", + "strjunglewood": "stripped_jungle_wood", + "strippedjwood": "stripped_jungle_wood", + "minecraft:dried_kelp": "dried_kelp", + "minecraft:birch_fence": "birch_fence", + "creeper_spawner": { + "entity": "CREEPER", + "material": "SPAWNER" + }, + "minecraft:quartz": "quartz", + "spectral_arrow_spawner": { + "entity": "SPECTRAL_ARROW", + "material": "SPAWNER" + }, + "spectralarrowspawner": "spectral_arrow_spawner", + "minecraft:diamond_chestplate": "diamond_chestplate", + "minecraft:light_blue_terracotta": "light_blue_terracotta", + "minecraft:polished_granite": "polished_granite", + "wolf_spawner": { + "entity": "WOLF", + "material": "SPAWNER" + }, + "minecraft:yellow_dye": "yellow_dye", + "minecraft:white_stained_glass_pane": "white_stained_glass_pane", + "minecraft:dark_oak_fence": "dark_oak_fence", + "minecraft:mossy_cobblestone_slab": "mossy_cobblestone_slab", + "minecraft:gray_bed": "gray_bed", + "minecraft:written_book": "written_book", + "minecraft:spruce_fence_gate": "spruce_fence_gate", + "minecraft:orange_wool": "orange_wool", + "minecraft:black_concrete_powder": "black_concrete_powder", + "minecraft:mossy_stone_bricks": "mossy_stone_bricks", + "endermite_spawner": { + "entity": "ENDERMITE", + "material": "SPAWNER" + }, + "minecraft:nether_wart": "nether_wart", + "minecraft:prismarine_slab": "prismarine_slab", + "minecraft:furnace": "furnace", + "minecraft:yellow_stained_glass": "yellow_stained_glass", + "minecraft:zombie_horse_spawn_egg": "zombie_horse_spawn_egg", + "minecraft:gray_stained_glass": "gray_stained_glass", + "minecraft:pink_wool": "pink_wool", + "minecraft:coarse_dirt": "coarse_dirt", + "minecraft:black_wool": "black_wool", + "minecraft:pufferfish": "pufferfish", + "minecraft:spruce_trapdoor": "spruce_trapdoor", + "experience_orb_spawner": { + "entity": "EXPERIENCE_ORB", + "material": "SPAWNER" + }, + "experienceorbspawner": "experience_orb_spawner", + "minecraft:andesite_wall": "andesite_wall", + "drowned_spawner": { + "entity": "DROWNED", + "material": "SPAWNER" + }, + "minecraft:birch_wood": "birch_wood", + "witch_spawner": { + "entity": "WITCH", + "material": "SPAWNER" + }, + "minecraft:firework_rocket": "firework_rocket", + "minecraft:compass": "compass", + "minecraft:dead_tube_coral_block": "dead_tube_coral_block", + "minecraft:shulker_box": "shulker_box", + "minecraft:light_gray_concrete": "light_gray_concrete", + "minecraft:water_bucket": "water_bucket", + "minecraft:iron_helmet": "iron_helmet", + "minecraft:polished_diorite_slab": "polished_diorite_slab", + "minecraft:green_stained_glass": "green_stained_glass", + "minecraft:lime_bed": "lime_bed", + "minecraft:command_block": "command_block", + "minecraft:green_stained_glass_pane": "green_stained_glass_pane", + "minecraft:cooked_salmon": "cooked_salmon", + "minecraft:magenta_stained_glass": "magenta_stained_glass", + "minecraft:brown_concrete": "brown_concrete", + "minecraft:smooth_quartz_stairs": "smooth_quartz_stairs", + "minecraft:brown_bed": "brown_bed", + "minecraft:light_gray_dye": "light_gray_dye", + "minecraft:crossbow": "crossbow", + "minecraft:mossy_stone_brick_slab": "mossy_stone_brick_slab", + "minecraft:mushroom_stem": "mushroom_stem", + "minecraft:sandstone_stairs": "sandstone_stairs", + "minecraft:yellow_carpet": "yellow_carpet", + "minecraft:redstone_ore": "redstone_ore", + "minecraft:acacia_planks": "acacia_planks", + "minecraft:creeper_banner_pattern": "creeper_banner_pattern", + "minecraft:cut_sandstone_slab": "cut_sandstone_slab", + "minecraft:emerald_block": "emerald_block", + "minecraft:lectern": "lectern", + "minecraft:cooked_porkchop": "cooked_porkchop", + "minecraft:music_disc_cat": "music_disc_cat", + "minecraft:stonecutter": "stonecutter", + "minecraft:cracked_stone_bricks": "cracked_stone_bricks", + "cat_spawner": { + "entity": "CAT", + "material": "SPAWNER" + }, + "minecraft:panda_spawn_egg": "panda_spawn_egg", + "minecraft:stripped_dark_oak_wood": "stripped_dark_oak_wood", + "minecraft:vindicator_spawn_egg": "vindicator_spawn_egg", + "minecraft:dead_brain_coral_block": "dead_brain_coral_block", + "minecraft:shears": "shears", + "minecraft:orange_dye": "orange_dye", + "minecraft:mossy_cobblestone": "mossy_cobblestone", + "minecraft:sandstone_slab": "sandstone_slab", + "minecraft:green_concrete_powder": "green_concrete_powder", + "minecraft:cartography_table": "cartography_table", + "minecraft:diamond_hoe": "diamond_hoe", + "minecraft:gray_concrete_powder": "gray_concrete_powder", + "woodbirchstripped": "stripped_birch_wood", + "strbwood": "stripped_birch_wood", + "strbirchwood": "stripped_birch_wood", + "strippedbwood": "stripped_birch_wood", + "woodbstripped": "stripped_birch_wood", + "minecraft:stripped_birch_wood": "stripped_birch_wood", + "salmon_spawner": { + "entity": "SALMON", + "material": "SPAWNER" + }, + "minecraft:sugar": "sugar", + "minecraft:wandering_trader_spawn_egg": "wandering_trader_spawn_egg", + "pig_zombie_spawner": { + "entity": "PIG_ZOMBIE", + "material": "SPAWNER" + }, + "pigzombiespawner": "pig_zombie_spawner", + "minecraft:cyan_dye": "cyan_dye", + "minecraft:cyan_banner": "cyan_banner", + "minecraft:redstone_block": "redstone_block", + "minecraft:magenta_shulker_box": "magenta_shulker_box", + "minecraft:spruce_wood": "spruce_wood", + "husk_spawner": { + "entity": "HUSK", + "material": "SPAWNER" + }, + "minecraft:red_nether_brick_stairs": "red_nether_brick_stairs", + "minecraft:golden_boots": "golden_boots", + "minecraft:grindstone": "grindstone", + "minecraft:structure_block": "structure_block", + "minecraft:damaged_anvil": "damaged_anvil", + "minecraft:stick": "stick", + "stray_spawner": { + "entity": "STRAY", + "material": "SPAWNER" + }, + "minecraft:fire_coral_fan": "fire_coral_fan", + "minecraft:jungle_wood": "jungle_wood", + "minecraft:pink_terracotta": "pink_terracotta", + "snowball_spawner": { + "entity": "SNOWBALL", + "material": "SPAWNER" + }, + "snowballspawner": "snowball_spawner", + "minecraft:smoker": "smoker", + "slime_spawner": { + "entity": "SLIME", + "material": "SPAWNER" + }, + "minecraft:sticky_piston": "sticky_piston", + "minecraft:andesite_slab": "andesite_slab", + "silverfish_spawner": { + "entity": "SILVERFISH", + "material": "SPAWNER" + }, + "item_frame_spawner": { + "entity": "ITEM_FRAME", + "material": "SPAWNER" + }, + "itemframespawner": "item_frame_spawner", + "minecraft:dark_oak_fence_gate": "dark_oak_fence_gate", + "minecraft:beetroot": "beetroot", + "minecraft:dead_tube_coral": "dead_tube_coral", + "minecraft:snow_block": "snow_block", + "minecraft:cyan_bed": "cyan_bed", + "minecraft:beetroot_soup": "beetroot_soup", + "minecraft:flint": "flint", + "minecraft:iron_boots": "iron_boots", + "minecraft:lime_terracotta": "lime_terracotta", + "minecraft:gravel": "gravel", + "minecraft:bone_meal": "bone_meal", + "minecraft:enderman_spawn_egg": "enderman_spawn_egg", + "minecraft:cyan_carpet": "cyan_carpet", + "shulker_bullet_spawner": { + "entity": "SHULKER_BULLET", + "material": "SPAWNER" + }, + "shulkerbulletspawner": "shulker_bullet_spawner", + "ender_pearl_spawner": { + "entity": "ENDER_PEARL", + "material": "SPAWNER" + }, + "enderpearlspawner": "ender_pearl_spawner", + "minecraft:dead_horn_coral": "dead_horn_coral", + "giant_spawner": { + "entity": "GIANT", + "material": "SPAWNER" + }, + "minecraft:acacia_door": "acacia_door", + "minecraft:horse_spawn_egg": "horse_spawn_egg", + "minecraft:prismarine_wall": "prismarine_wall", + "minecraft:brown_glazed_terracotta": "brown_glazed_terracotta", + "minecraft:oak_button": "oak_button", + "minecraft:nautilus_shell": "nautilus_shell", + "minecraft:wolf_spawn_egg": "wolf_spawn_egg", + "minecraft:cyan_shulker_box": "cyan_shulker_box", + "minecraft:stone_stairs": "stone_stairs", + "minecraft:smooth_quartz_slab": "smooth_quartz_slab", + "minecraft:torch": "torch", + "minecraft:sand": "sand", + "minecraft:horn_coral_fan": "horn_coral_fan", + "minecraft:diorite_stairs": "diorite_stairs", + "minecraft:yellow_wool": "yellow_wool", + "minecraft:brown_wool": "brown_wool", + "minecraft:cornflower": "cornflower", + "minecraft:redstone_lamp": "redstone_lamp", + "minecraft:lily_of_the_valley": "lily_of_the_valley", + "minecraft:spruce_door": "spruce_door", + "minecraft:light_gray_carpet": "light_gray_carpet", + "minecraft:polar_bear_spawn_egg": "polar_bear_spawn_egg", + "minecraft:baked_potato": "baked_potato", + "minecraft:black_carpet": "black_carpet", + "minecraft:prismarine_bricks": "prismarine_bricks", + "minecraft:nether_star": "nether_star", + "minecraft:ravager_spawn_egg": "ravager_spawn_egg", + "minecraft:clock": "clock", + "minecraft:purple_dye": "purple_dye", + "minecraft:crafting_table": "crafting_table", + "minecraft:yellow_glazed_terracotta": "yellow_glazed_terracotta", + "minecraft:feather": "feather", + "minecraft:red_concrete": "red_concrete", + "minecraft:lead": "lead", + "minecraft:potato": "potato", + "minecraft:green_glazed_terracotta": "green_glazed_terracotta", + "minecraft:tropical_fish": "tropical_fish", + "minecraft:pink_shulker_box": "pink_shulker_box", + "logsp": "spruce_log", + "minecraft:spruce_log": "spruce_log", + "splog": "spruce_log", + "minecraft:chiseled_quartz_block": "chiseled_quartz_block", + "minecraft:orange_carpet": "orange_carpet", + "minecraft:magma_block": "magma_block", + "minecraft:nether_wart_block": "nether_wart_block", + "minecraft:stone_pickaxe": "stone_pickaxe", + "minecraft:birch_slab": "birch_slab", + "minecraft:mossy_cobblestone_stairs": "mossy_cobblestone_stairs", + "minecraft:brewing_stand": "brewing_stand", + "minecraft:glass_bottle": "glass_bottle", + "horse_spawner": { + "entity": "HORSE", + "material": "SPAWNER" + }, + "minecraft:lime_wool": "lime_wool", + "minecraft:diamond_helmet": "diamond_helmet", + "minecraft:light_gray_stained_glass": "light_gray_stained_glass", + "minecraft:oak_pressure_plate": "oak_pressure_plate", + "minecraft:tnt": "tnt", + "minecraft:rail": "rail", + "minecraft:dead_horn_coral_fan": "dead_horn_coral_fan", + "minecraft:nether_brick_slab": "nether_brick_slab", + "minecraft:pink_carpet": "pink_carpet", + "minecraft:mossy_cobblestone_wall": "mossy_cobblestone_wall", + "minecraft:dark_prismarine": "dark_prismarine", + "minecraft:orange_tulip": "orange_tulip", + "minecraft:skeleton_skull": "skeleton_skull", + "minecraft:structure_void": "structure_void", + "minecraft:smooth_stone": "smooth_stone", + "llama_spawner": { + "entity": "LLAMA", + "material": "SPAWNER" + }, + "minecraft:blue_stained_glass_pane": "blue_stained_glass_pane", + "minecraft:knowledge_book": "knowledge_book", + "minecraft:black_banner": "black_banner", + "minecraft:bedrock": "bedrock", + "minecraft:diorite": "diorite", + "minecraft:purple_bed": "purple_bed", + "minecraft:oak_trapdoor": "oak_trapdoor", + "minecraft:oak_fence": "oak_fence", + "minecraft:brick": "brick", + "pillager_spawner": { + "entity": "PILLAGER", + "material": "SPAWNER" + }, + "pillagerspawner": "pillager_spawner", + "minecraft:elytra": "elytra", + "minecraft:orange_banner": "orange_banner", + "minecraft:red_terracotta": "red_terracotta", + "minecraft:ender_pearl": "ender_pearl", + "vindicator_spawner": { + "entity": "VINDICATOR", + "material": "SPAWNER" + }, + "minecraft:wooden_shovel": "wooden_shovel", + "minecraft:brown_shulker_box": "brown_shulker_box", + "minecraft:spruce_slab": "spruce_slab", + "tropical_fish_spawner": { + "entity": "TROPICAL_FISH", + "material": "SPAWNER" + }, + "minecraft:bubble_coral_fan": "bubble_coral_fan", + "minecraft:potion": "potion", + "minecraft:mushroom_stew": "mushroom_stew", + "minecraft:carrot": "carrot", + "minecraft:end_portal_frame": "end_portal_frame", + "minecraft:porkchop": "porkchop", + "wither_skull_spawner": { + "entity": "WITHER_SKULL", + "material": "SPAWNER" + }, + "witherskullspawner": "wither_skull_spawner", + "minecraft:cooked_cod": "cooked_cod", + "parrot_spawner": { + "entity": "PARROT", + "material": "SPAWNER" + }, + "minecraft:slime_ball": "slime_ball", + "minecraft:brain_coral_fan": "brain_coral_fan", + "minecraft:magenta_terracotta": "magenta_terracotta", + "minecraft:smooth_sandstone": "smooth_sandstone", + "iron_golem_spawner": { + "entity": "IRON_GOLEM", + "material": "SPAWNER" + }, + "minecraft:green_banner": "green_banner", + "minecraft:popped_chorus_fruit": "popped_chorus_fruit", + "minecraft:music_disc_mall": "music_disc_mall", + "minecraft:rose_bush": "rose_bush", + "minecraft:bookshelf": "bookshelf", + "minecraft:podzol": "podzol", + "minecraft:spruce_pressure_plate": "spruce_pressure_plate", + "minecraft:brown_carpet": "brown_carpet", + "minecraft:chorus_fruit": "chorus_fruit", + "wither_spawner": { + "entity": "WITHER", + "material": "SPAWNER" + }, + "minecraft:cod_spawn_egg": "cod_spawn_egg", + "minecraft:jigsaw": "jigsaw", + "minecraft:stone_brick_slab": "stone_brick_slab", + "minecraft:blue_concrete_powder": "blue_concrete_powder", + "minecraft:cobblestone_stairs": "cobblestone_stairs", + "minecraft:clay_ball": "clay_ball", + "minecraft:birch_door": "birch_door", + "minecraft:chorus_flower": "chorus_flower", + "minecraft:iron_block": "iron_block", + "minecraft:snowball": "snowball", + "minecraft:rabbit_stew": "rabbit_stew", + "area_effect_cloud_spawner": { + "entity": "AREA_EFFECT_CLOUD", + "material": "SPAWNER" + }, + "areaeffectcloudspawner": "area_effect_cloud_spawner", + "minecraft:music_disc_blocks": "music_disc_blocks", + "minecraft:ice": "ice", + "minecraft:gray_stained_glass_pane": "gray_stained_glass_pane", + "minecraft:red_sand": "red_sand", + "cave_spider_spawner": { + "entity": "CAVE_SPIDER", + "material": "SPAWNER" + }, + "minecraft:jungle_leaves": "jungle_leaves", + "minecraft:cod_bucket": "cod_bucket", + "minecraft:music_disc_ward": "music_disc_ward", + "minecraft:dead_fire_coral_fan": "dead_fire_coral_fan", + "minecraft:air": "air", + "egg_spawner": { + "entity": "EGG", + "material": "SPAWNER" + }, + "eggspawner": "egg_spawner", + "minecraft:skeleton_horse_spawn_egg": "skeleton_horse_spawn_egg", + "squid_spawner": { + "entity": "SQUID", + "material": "SPAWNER" + }, + "minecraft:coal_block": "coal_block", + "minecraft:pufferfish_spawn_egg": "pufferfish_spawn_egg", + "minecraft:diamond_horse_armor": "diamond_horse_armor", + "minecraft:vine": "vine", + "minecraft:flint_and_steel": "flint_and_steel", + "minecraft:golden_leggings": "golden_leggings", + "minecart_spawner": { + "entity": "MINECART", + "material": "SPAWNER" + }, + "minecartspawner": "minecart_spawner", + "minecraft:obsidian": "obsidian", + "minecraft:blast_furnace": "blast_furnace", + "minecraft:green_dye": "green_dye", + "minecraft:piston": "piston", + "minecraft:music_disc_strad": "music_disc_strad", + "minecraft:dispenser": "dispenser", + "minecraft:fishing_rod": "fishing_rod", + "minecraft:music_disc_mellohi": "music_disc_mellohi", + "minecraft:gray_concrete": "gray_concrete", + "minecraft:drowned_spawn_egg": "drowned_spawn_egg", + "minecraft:sheep_spawn_egg": "sheep_spawn_egg", + "minecraft:dark_prismarine_slab": "dark_prismarine_slab", + "minecraft:vex_spawn_egg": "vex_spawn_egg", + "minecraft:leather_horse_armor": "leather_horse_armor", + "minecraft:black_concrete": "black_concrete", + "minecraft:chipped_anvil": "chipped_anvil", + "minecraft:quartz_pillar": "quartz_pillar", + "minecraft:sea_lantern": "sea_lantern", + "minecraft:golden_chestplate": "golden_chestplate", + "minecraft:sweet_berries": "sweet_berries", + "trident_spawner": { + "entity": "TRIDENT", + "material": "SPAWNER" + }, + "tridentspawner": "trident_spawner", + "minecraft:acacia_trapdoor": "acacia_trapdoor", + "minecraft:spider_spawn_egg": "spider_spawn_egg", + "minecraft:music_disc_13": "music_disc_13", + "minecraft:dead_horn_coral_block": "dead_horn_coral_block", + "minecraft:oak_planks": "oak_planks", + "minecraft:wheat_seeds": "wheat_seeds", + "minecraft:emerald_ore": "emerald_ore", + "minecraft:jungle_fence_gate": "jungle_fence_gate", + "minecraft:gray_glazed_terracotta": "gray_glazed_terracotta", + "ravager_spawner": { + "entity": "RAVAGER", + "material": "SPAWNER" + }, + "ravagerspawner": "ravager_spawner", + "minecraft:cyan_terracotta": "cyan_terracotta", + "minecraft:smooth_stone_slab": "smooth_stone_slab", + "minecraft:hopper": "hopper", + "minecraft:green_concrete": "green_concrete", + "minecraft:light_blue_stained_glass_pane": "light_blue_stained_glass_pane", + "minecraft:stone_shovel": "stone_shovel", + "minecraft:dark_oak_log": "dark_oak_log", + "minecraft:diamond_shovel": "diamond_shovel", + "minecraft:end_stone_brick_stairs": "end_stone_brick_stairs", + "minecraft:cake": "cake", + "minecraft:polished_andesite_slab": "polished_andesite_slab", + "minecart_hopper_spawner": { + "entity": "MINECART_HOPPER", + "material": "SPAWNER" + }, + "minecarthopperspawner": "minecart_hopper_spawner", + "minecraft:dragon_head": "dragon_head", + "minecraft:stone_brick_wall": "stone_brick_wall", + "minecraft:anvil": "anvil", + "minecraft:spruce_fence": "spruce_fence", + "minecraft:cobblestone_wall": "cobblestone_wall", + "minecraft:quartz_block": "quartz_block", + "minecraft:red_concrete_powder": "red_concrete_powder", + "minecraft:dark_oak_slab": "dark_oak_slab", + "minecraft:fern": "fern", + "donkey_spawner": { + "entity": "DONKEY", + "material": "SPAWNER" + }, + "minecraft:acacia_log": "acacia_log", + "logac": "acacia_log", + "aclog": "acacia_log", + "minecraft:coal_ore": "coal_ore", + "minecraft:iron_trapdoor": "iron_trapdoor", + "minecraft:purple_stained_glass": "purple_stained_glass", + "minecraft:skull_banner_pattern": "skull_banner_pattern", + "minecraft:green_wool": "green_wool", + "minecraft:magenta_concrete": "magenta_concrete", + "minecraft:pillager_spawn_egg": "pillager_spawn_egg", + "minecraft:silverfish_spawn_egg": "silverfish_spawn_egg", + "minecraft:granite": "granite", + "minecraft:fox_spawn_egg": "fox_spawn_egg", + "mule_spawner": { + "entity": "MULE", + "material": "SPAWNER" + }, + "small_fireball_spawner": { + "entity": "SMALL_FIREBALL", + "material": "SPAWNER" + }, + "smallfireballspawner": "small_fireball_spawner", + "minecraft:music_disc_stal": "music_disc_stal", + "ender_dragon_spawner": { + "entity": "ENDER_DRAGON", + "material": "SPAWNER" + }, + "enderdragonspawner": "ender_dragon_spawner", + "minecraft:activator_rail": "activator_rail", + "minecraft:infested_stone": "infested_stone", + "minecraft:cut_sandstone": "cut_sandstone", + "minecraft:farmland": "farmland", + "minecart_mob_spawner_spawner": { + "entity": "MINECART_MOB_SPAWNER", + "material": "SPAWNER" + }, + "minecartmobspawnerspawner": "minecart_mob_spawner_spawner", + "minecraft:flower_pot": "flower_pot", + "fox_spawner": { + "entity": "FOX", + "material": "SPAWNER" + }, + "foxspawner": "fox_spawner", + "minecraft:tropical_fish_spawn_egg": "tropical_fish_spawn_egg", + "minecraft:pufferfish_bucket": "pufferfish_bucket", + "ghast_spawner": { + "entity": "GHAST", + "material": "SPAWNER" + }, + "minecraft:chiseled_red_sandstone": "chiseled_red_sandstone", + "minecraft:golden_pickaxe": "golden_pickaxe", + "minecraft:beef": "beef", + "minecraft:black_shulker_box": "black_shulker_box", + "minecraft:cobweb": "cobweb", + "minecraft:nether_brick": "nether_brick", + "minecraft:chain_command_block": "chain_command_block", + "minecraft:iron_nugget": "iron_nugget", + "minecraft:lantern": "lantern", + "minecraft:brown_mushroom": "brown_mushroom", + "minecraft:rabbit_spawn_egg": "rabbit_spawn_egg", + "minecraft:red_dye": "red_dye", + "minecraft:melon": "melon", + "minecraft:oak_stairs": "oak_stairs", + "minecraft:white_banner": "white_banner", + "minecraft:acacia_sign": "acacia_sign", + "enderman_spawner": { + "entity": "ENDERMAN", + "material": "SPAWNER" + }, + "minecraft:seagrass": "seagrass", + "mushroom_cow_spawner": { + "entity": "MUSHROOM_COW", + "material": "SPAWNER" + }, + "minecraft:magenta_carpet": "magenta_carpet", + "minecraft:diamond_axe": "diamond_axe", + "minecraft:horn_coral_block": "horn_coral_block", + "minecraft:pink_bed": "pink_bed", + "minecraft:red_mushroom_block": "red_mushroom_block", + "minecraft:acacia_fence_gate": "acacia_fence_gate", + "minecraft:dark_oak_wood": "dark_oak_wood", + "minecraft:acacia_fence": "acacia_fence", + "minecraft:globe_banner_pattern": "globe_banner_pattern", + "minecraft:lava_bucket": "lava_bucket", + "minecraft:iron_shovel": "iron_shovel", + "minecraft:sugar_cane": "sugar_cane", + "turtle_spawner": { + "entity": "TURTLE", + "material": "SPAWNER" + }, + "minecraft:terracotta": "terracotta", + "minecraft:lime_banner": "lime_banner", + "minecraft:oak_leaves": "oak_leaves", + "minecraft:iron_horse_armor": "iron_horse_armor", + "minecraft:pink_tulip": "pink_tulip", + "minecraft:chainmail_boots": "chainmail_boots", + "minecart_tnt_spawner": { + "entity": "MINECART_TNT", + "material": "SPAWNER" + }, + "minecarttntspawner": "minecart_tnt_spawner", + "minecraft:slime_block": "slime_block", + "polar_bear_spawner": { + "entity": "POLAR_BEAR", + "material": "SPAWNER" + }, + "minecraft:dark_oak_planks": "dark_oak_planks", + "minecraft:mutton": "mutton", + "minecraft:pumpkin_seeds": "pumpkin_seeds", + "minecraft:white_bed": "white_bed", + "minecraft:brain_coral_block": "brain_coral_block", + "evoker_spawner": { + "entity": "EVOKER", + "material": "SPAWNER" + }, + "minecraft:tropical_fish_bucket": "tropical_fish_bucket", + "minecraft:diamond_boots": "diamond_boots", + "minecraft:dark_oak_pressure_plate": "dark_oak_pressure_plate", + "minecraft:magma_cream": "magma_cream", + "minecraft:jungle_trapdoor": "jungle_trapdoor", + "minecraft:white_tulip": "white_tulip", + "minecraft:enchanted_book": "enchanted_book", + "elder_guardian_spawner": { + "entity": "ELDER_GUARDIAN", + "material": "SPAWNER" + }, + "minecraft:green_shulker_box": "green_shulker_box", + "minecraft:music_disc_chirp": "music_disc_chirp", + "minecraft:fermented_spider_eye": "fermented_spider_eye", + "minecraft:arrow": "arrow", + "minecraft:red_shulker_box": "red_shulker_box", + "minecraft:andesite_stairs": "andesite_stairs", + "minecraft:cow_spawn_egg": "cow_spawn_egg", + "minecraft:birch_boat": "birch_boat", + "zombie_villager_spawner": { + "entity": "ZOMBIE_VILLAGER", + "material": "SPAWNER" + }, + "minecraft:gray_wool": "gray_wool", + "minecraft:green_terracotta": "green_terracotta", + "minecraft:dirt": "dirt", + "minecraft:orange_glazed_terracotta": "orange_glazed_terracotta", + "logsstripped": "stripped_spruce_log", + "minecraft:stripped_spruce_log": "stripped_spruce_log", + "strsprucelog": "stripped_spruce_log", + "logsprucestripped": "stripped_spruce_log", + "logspstripped": "stripped_spruce_log", + "strippedsplog": "stripped_spruce_log", + "strslog": "stripped_spruce_log", + "strippedslog": "stripped_spruce_log", + "strsplog": "stripped_spruce_log", + "minecraft:donkey_spawn_egg": "donkey_spawn_egg", + "minecraft:trident": "trident", + "minecraft:grass_block": "grass_block", + "minecraft:cooked_mutton": "cooked_mutton", + "minecraft:purple_wool": "purple_wool", + "minecraft:skeleton_spawn_egg": "skeleton_spawn_egg", + "minecraft:light_weighted_pressure_plate": "light_weighted_pressure_plate", + "minecraft:acacia_boat": "acacia_boat", + "minecraft:red_nether_brick_wall": "red_nether_brick_wall", + "minecraft:wet_sponge": "wet_sponge", + "minecraft:cookie": "cookie", + "minecraft:purpur_block": "purpur_block", + "minecraft:lapis_ore": "lapis_ore", + "minecraft:rabbit": "rabbit", + "minecraft:white_concrete": "white_concrete", + "minecraft:quartz_slab": "quartz_slab", + "minecraft:item_frame": "item_frame", + "leash_hitch_spawner": { + "entity": "LEASH_HITCH", + "material": "SPAWNER" + }, + "leashhitchspawner": "leash_hitch_spawner", + "minecraft:heart_of_the_sea": "heart_of_the_sea", + "fireball_spawner": { + "entity": "FIREBALL", + "material": "SPAWNER" + }, + "fireballspawner": "fireball_spawner", + "minecraft:iron_pickaxe": "iron_pickaxe", + "minecraft:bubble_coral": "bubble_coral", + "minecraft:pink_concrete_powder": "pink_concrete_powder", + "minecraft:purpur_pillar": "purpur_pillar", + "minecraft:tipped_arrow": "tipped_arrow", + "snowman_spawner": { + "entity": "SNOWMAN", + "material": "SPAWNER" + }, + "snowmanspawner": "snowman_spawner", + "minecraft:acacia_sapling": "acacia_sapling", + "minecraft:lapis_lazuli": "lapis_lazuli", + "minecraft:magenta_concrete_powder": "magenta_concrete_powder", + "minecraft:chainmail_leggings": "chainmail_leggings", + "minecraft:red_glazed_terracotta": "red_glazed_terracotta", + "minecraft:daylight_detector": "daylight_detector", + "minecraft:spruce_button": "spruce_button", + "minecraft:blue_stained_glass": "blue_stained_glass", + "minecraft:red_nether_brick_slab": "red_nether_brick_slab", + "zombie_spawner": { + "entity": "ZOMBIE", + "material": "SPAWNER" + }, + "minecraft:mule_spawn_egg": "mule_spawn_egg", + "minecraft:jungle_button": "jungle_button", + "minecraft:jungle_pressure_plate": "jungle_pressure_plate", + "minecraft:red_bed": "red_bed", + "shulker_spawner": { + "entity": "SHULKER", + "material": "SPAWNER" + }, + "minecraft:acacia_pressure_plate": "acacia_pressure_plate", + "minecraft:cocoa_beans": "cocoa_beans", + "minecraft:purple_banner": "purple_banner", + "minecraft:painting": "painting", + "minecraft:lime_shulker_box": "lime_shulker_box", + "wandering_trader_spawner": { + "entity": "WANDERING_TRADER", + "material": "SPAWNER" + }, + "wanderingtraderspawner": "wandering_trader_spawner", + "minecraft:brain_coral": "brain_coral", + "minecraft:pink_banner": "pink_banner", + "minecraft:nether_bricks": "nether_bricks", + "minecraft:pink_stained_glass_pane": "pink_stained_glass_pane", + "minecraft:white_dye": "white_dye", + "minecraft:infested_stone_bricks": "infested_stone_bricks", + "minecraft:parrot_spawn_egg": "parrot_spawn_egg", + "minecraft:blue_dye": "blue_dye", + "minecraft:blaze_rod": "blaze_rod", + "minecraft:end_stone_brick_slab": "end_stone_brick_slab", + "minecraft:slime_spawn_egg": "slime_spawn_egg", + "minecraft:polished_diorite_stairs": "polished_diorite_stairs", + "minecraft:magenta_bed": "magenta_bed", + "logostripped": "stripped_oak_log", + "stroaklog": "stripped_oak_log", + "minecraft:stripped_oak_log": "stripped_oak_log", + "logoakstripped": "stripped_oak_log", + "strippedolog": "stripped_oak_log", + "strolog": "stripped_oak_log", + "trader_llama_spawner": { + "entity": "TRADER_LLAMA", + "material": "SPAWNER" + }, + "traderllamaspawner": "trader_llama_spawner", + "minecraft:end_rod": "end_rod", + "minecraft:armor_stand": "armor_stand", + "minecraft:husk_spawn_egg": "husk_spawn_egg", + "minecraft:melon_seeds": "melon_seeds", + "minecraft:dropper": "dropper", + "minecraft:birch_trapdoor": "birch_trapdoor", + "minecraft:pink_concrete": "pink_concrete", + "guardian_spawner": { + "entity": "GUARDIAN", + "material": "SPAWNER" + }, + "minecraft:creeper_spawn_egg": "creeper_spawn_egg", + "minecraft:end_stone_brick_wall": "end_stone_brick_wall", + "phantom_spawner": { + "entity": "PHANTOM", + "material": "SPAWNER" + }, + "minecraft:sandstone": "sandstone", + "minecraft:turtle_spawn_egg": "turtle_spawn_egg", + "minecraft:birch_fence_gate": "birch_fence_gate", + "minecraft:brick_slab": "brick_slab", + "minecraft:brick_wall": "brick_wall", + "minecraft:dark_oak_sapling": "dark_oak_sapling", + "minecraft:brown_banner": "brown_banner", + "minecraft:ender_chest": "ender_chest", + "minecraft:flower_banner_pattern": "flower_banner_pattern", + "minecraft:iron_chestplate": "iron_chestplate", + "minecraft:infested_cracked_stone_bricks": "infested_cracked_stone_bricks", + "minecraft:light_blue_stained_glass": "light_blue_stained_glass", + "minecraft:purple_concrete_powder": "purple_concrete_powder", + "minecraft:writable_book": "writable_book", + "minecraft:observer": "observer", + "minecraft:oxeye_daisy": "oxeye_daisy", + "minecraft:diamond_block": "diamond_block", + "minecraft:carved_pumpkin": "carved_pumpkin", + "minecraft:pink_glazed_terracotta": "pink_glazed_terracotta", + "minecraft:white_stained_glass": "white_stained_glass", + "minecraft:golden_apple": "golden_apple", + "minecraft:golden_horse_armor": "golden_horse_armor", + "minecraft:emerald": "emerald", + "minecraft:blue_shulker_box": "blue_shulker_box", + "minecraft:black_glazed_terracotta": "black_glazed_terracotta", + "minecraft:nether_brick_stairs": "nether_brick_stairs", + "minecraft:trader_llama_spawn_egg": "trader_llama_spawn_egg", + "minecraft:netherrack": "netherrack", + "minecraft:prismarine_brick_slab": "prismarine_brick_slab", + "minecraft:gold_ingot": "gold_ingot", + "minecraft:red_wool": "red_wool", + "minecraft:black_bed": "black_bed", + "minecraft:redstone": "redstone", + "minecraft:blue_wool": "blue_wool", + "minecraft:birch_stairs": "birch_stairs", + "minecraft:rotten_flesh": "rotten_flesh", + "minecraft:dead_tube_coral_fan": "dead_tube_coral_fan", + "minecraft:gray_banner": "gray_banner", + "minecraft:diamond_pickaxe": "diamond_pickaxe", + "minecraft:bone_block": "bone_block", + "minecraft:orange_shulker_box": "orange_shulker_box", + "minecraft:wheat": "wheat", + "minecraft:orange_concrete_powder": "orange_concrete_powder", + "minecraft:end_stone_bricks": "end_stone_bricks", + "minecraft:acacia_slab": "acacia_slab", + "minecraft:iron_leggings": "iron_leggings", + "arrow_spawner": { + "entity": "ARROW", + "material": "SPAWNER" + }, + "arrowspawner": "arrow_spawner", + "minecraft:cod": "cod", + "minecraft:polished_andesite_stairs": "polished_andesite_stairs", + "minecraft:cyan_stained_glass_pane": "cyan_stained_glass_pane", + "minecraft:diamond_leggings": "diamond_leggings", + "minecraft:chicken": "chicken", + "minecraft:dried_kelp_block": "dried_kelp_block", + "minecraft:enchanted_golden_apple": "enchanted_golden_apple", + "minecraft:stone_bricks": "stone_bricks", + "minecraft:oak_boat": "oak_boat", + "minecraft:golden_shovel": "golden_shovel", + "minecraft:brown_mushroom_block": "brown_mushroom_block", + "minecraft:lime_concrete_powder": "lime_concrete_powder", + "rabbit_spawner": { + "entity": "RABBIT", + "material": "SPAWNER" + }, + "minecraft:comparator": "comparator", + "minecraft:andesite": "andesite", + "minecraft:bamboo": "bamboo", + "minecraft:tall_grass": "tall_grass", + "minecraft:chainmail_helmet": "chainmail_helmet", + "minecraft:diamond_ore": "diamond_ore", + "minecraft:string": "string", + "minecraft:magenta_glazed_terracotta": "magenta_glazed_terracotta", + "dragon_fireball_spawner": { + "entity": "DRAGON_FIREBALL", + "material": "SPAWNER" + }, + "dragonfireballspawner": "dragon_fireball_spawner", + "minecraft:purple_stained_glass_pane": "purple_stained_glass_pane", + "evoker_fangs_spawner": { + "entity": "EVOKER_FANGS", + "material": "SPAWNER" + }, + "evokerfangsspawner": "evoker_fangs_spawner", + "minecraft:dark_oak_stairs": "dark_oak_stairs", + "minecraft:grass": "grass", + "strippedacwood": "stripped_acacia_wood", + "woodacstripped": "stripped_acacia_wood", + "stracaciawood": "stripped_acacia_wood", + "strippedawood": "stripped_acacia_wood", + "strawood": "stripped_acacia_wood", + "woodacaciastripped": "stripped_acacia_wood", + "stracwood": "stripped_acacia_wood", + "minecraft:stripped_acacia_wood": "stripped_acacia_wood", + "woodastripped": "stripped_acacia_wood", + "strspwood": "stripped_spruce_wood", + "woodsprucestripped": "stripped_spruce_wood", + "strippedspwood": "stripped_spruce_wood", + "strswood": "stripped_spruce_wood", + "woodspstripped": "stripped_spruce_wood", + "strippedswood": "stripped_spruce_wood", + "minecraft:stripped_spruce_wood": "stripped_spruce_wood", + "strsprucewood": "stripped_spruce_wood", + "woodsstripped": "stripped_spruce_wood", + "minecraft:oak_sign": "oak_sign", + "minecraft:iron_ingot": "iron_ingot", + "minecraft:oak_fence_gate": "oak_fence_gate", + "minecraft:light_blue_concrete": "light_blue_concrete", + "minecraft:lingering_potion": "lingering_potion", + "minecraft:gray_dye": "gray_dye", + "minecraft:dark_oak_door": "dark_oak_door", + "minecraft:cyan_glazed_terracotta": "cyan_glazed_terracotta", + "minecraft:ghast_tear": "ghast_tear", + "minecraft:sandstone_wall": "sandstone_wall", + "minecraft:gold_nugget": "gold_nugget", + "minecraft:spruce_sign": "spruce_sign", + "minecraft:fire_coral": "fire_coral", + "minecraft:light_gray_concrete_powder": "light_gray_concrete_powder", + "minecraft:charcoal": "charcoal", + "minecraft:light_blue_carpet": "light_blue_carpet", + "minecraft:bow": "bow", + "minecraft:fletching_table": "fletching_table", + "minecraft:dragon_egg": "dragon_egg", + "minecraft:light_blue_bed": "light_blue_bed", + "minecraft:blue_terracotta": "blue_terracotta", + "minecraft:gold_block": "gold_block", + "minecraft:purple_glazed_terracotta": "purple_glazed_terracotta", + "minecraft:map": "map", + "minecraft:scaffolding": "scaffolding", + "minecraft:mossy_stone_brick_stairs": "mossy_stone_brick_stairs", + "minecraft:jungle_stairs": "jungle_stairs", + "minecraft:golden_axe": "golden_axe", + "minecraft:dark_oak_boat": "dark_oak_boat", + "minecraft:oak_wood": "oak_wood", + "minecraft:red_sandstone_stairs": "red_sandstone_stairs", + "minecraft:cauldron": "cauldron", + "painting_spawner": { + "entity": "PAINTING", + "material": "SPAWNER" + }, + "paintingspawner": "painting_spawner", + "minecraft:orange_concrete": "orange_concrete", + "minecraft:sea_pickle": "sea_pickle", + "minecraft:stripped_dark_oak_log": "stripped_dark_oak_log", + "minecraft:smooth_red_sandstone_slab": "smooth_red_sandstone_slab", + "minecraft:bell": "bell", + "minecraft:prismarine_brick_stairs": "prismarine_brick_stairs", + "ender_crystal_spawner": { + "entity": "ENDER_CRYSTAL", + "material": "SPAWNER" + }, + "endercrystalspawner": "ender_crystal_spawner", + "minecraft:furnace_minecart": "furnace_minecart", + "minecraft:smooth_red_sandstone": "smooth_red_sandstone", + "minecraft:cave_spider_spawn_egg": "cave_spider_spawn_egg", + "minecraft:light_gray_wool": "light_gray_wool", + "dolphin_spawner": { + "entity": "DOLPHIN", + "material": "SPAWNER" + }, + "minecraft:ender_eye": "ender_eye", + "minecraft:fire_coral_block": "fire_coral_block", + "minecraft:ladder": "ladder", + "minecraft:cobblestone": "cobblestone", + "minecraft:prismarine_crystals": "prismarine_crystals", + "minecraft:campfire": "campfire", + "minecraft:paper": "paper", + "minecraft:jungle_log": "jungle_log", + "villager_spawner": { + "entity": "VILLAGER", + "material": "SPAWNER" + }, + "strblog": "stripped_birch_log", + "strippedblog": "stripped_birch_log", + "logbirchstripped": "stripped_birch_log", + "logbstripped": "stripped_birch_log", + "minecraft:stripped_birch_log": "stripped_birch_log", + "strbirchlog": "stripped_birch_log", + "minecraft:polished_granite_slab": "polished_granite_slab", + "minecraft:apple": "apple", + "minecraft:cyan_concrete": "cyan_concrete", + "minecraft:wooden_axe": "wooden_axe", + "minecraft:cyan_wool": "cyan_wool", + "minecraft:tube_coral_fan": "tube_coral_fan", + "minecraft:jungle_planks": "jungle_planks", + "minecraft:infested_chiseled_stone_bricks": "infested_chiseled_stone_bricks", + "minecraft:jungle_door": "jungle_door", + "minecraft:large_fern": "large_fern", + "minecraft:red_sandstone_wall": "red_sandstone_wall", + "minecraft:music_disc_wait": "music_disc_wait", + "minecraft:magenta_stained_glass_pane": "magenta_stained_glass_pane", + "minecraft:purple_terracotta": "purple_terracotta", + "minecraft:tripwire_hook": "tripwire_hook", + "minecraft:orange_stained_glass": "orange_stained_glass", + "minecraft:cyan_concrete_powder": "cyan_concrete_powder", + "minecraft:acacia_stairs": "acacia_stairs", + "minecraft:red_sandstone_slab": "red_sandstone_slab", + "woodoakstripped": "stripped_oak_wood", + "strippedowood": "stripped_oak_wood", + "minecraft:stripped_oak_wood": "stripped_oak_wood", + "woodostripped": "stripped_oak_wood", + "strowood": "stripped_oak_wood", + "stroakwood": "stripped_oak_wood", + "minecraft:lime_stained_glass_pane": "lime_stained_glass_pane", + "minecraft:pumpkin_pie": "pumpkin_pie", + "minecraft:creeper_head": "creeper_head", + "minecraft:purpur_stairs": "purpur_stairs", + "ender_signal_spawner": { + "entity": "ENDER_SIGNAL", + "material": "SPAWNER" + }, + "endersignalspawner": "ender_signal_spawner", + "minecraft:jack_o_lantern": "jack_o_lantern", + "minecraft:oak_door": "oak_door", + "minecraft:dead_fire_coral_block": "dead_fire_coral_block", + "minecraft:glowstone": "glowstone", + "minecraft:blue_bed": "blue_bed", + "minecraft:polished_diorite": "polished_diorite", + "minecraft:diorite_slab": "diorite_slab", + "minecraft:ocelot_spawn_egg": "ocelot_spawn_egg", + "minecraft:pumpkin": "pumpkin", + "zombie_horse_spawner": { + "entity": "ZOMBIE_HORSE", + "material": "SPAWNER" + }, + "minecraft:jungle_sign": "jungle_sign", + "minecraft:bread": "bread", + "minecraft:allium": "allium", + "minecraft:hay_block": "hay_block", + "minecraft:lime_dye": "lime_dye", + "minecraft:stone_pressure_plate": "stone_pressure_plate", + "minecraft:command_block_minecart": "command_block_minecart", + "minecraft:mooshroom_spawn_egg": "mooshroom_spawn_egg", + "minecraft:poppy": "poppy", + "minecraft:jungle_sapling": "jungle_sapling", + "minecraft:firework_star": "firework_star", + "minecraft:diamond": "diamond", + "minecraft:jungle_fence": "jungle_fence", + "minecraft:powered_rail": "powered_rail", + "minecraft:note_block": "note_block", + "minecraft:melon_slice": "melon_slice", + "minecraft:lilac": "lilac", + "minecraft:red_carpet": "red_carpet", + "minecraft:squid_spawn_egg": "squid_spawn_egg", + "minecraft:filled_map": "filled_map", + "minecraft:dead_bubble_coral_fan": "dead_bubble_coral_fan", + "minecraft:iron_door": "iron_door", + "minecraft:red_stained_glass": "red_stained_glass", + "minecraft:yellow_banner": "yellow_banner", + "minecraft:spruce_boat": "spruce_boat", + "minecraft:bricks": "bricks", + "minecraft:spawner": "spawner", + "minecraft:white_shulker_box": "white_shulker_box", + "magma_cube_spawner": { + "entity": "MAGMA_CUBE", + "material": "SPAWNER" + }, + "minecraft:birch_leaves": "birch_leaves", + "minecraft:red_tulip": "red_tulip", + "minecraft:bucket": "bucket", + "minecraft:chest_minecart": "chest_minecart", + "minecraft:music_disc_11": "music_disc_11", + "minecraft:stone": "stone", + "minecraft:rabbit_hide": "rabbit_hide", + "minecraft:guardian_spawn_egg": "guardian_spawn_egg", + "minecraft:cooked_chicken": "cooked_chicken", + "minecraft:packed_ice": "packed_ice", + "armor_stand_spawner": { + "entity": "ARMOR_STAND", + "material": "SPAWNER" + }, + "armorstandspawner": "armor_stand_spawner", + "minecraft:magenta_banner": "magenta_banner", + "minecraft:spider_eye": "spider_eye", + "panda_spawner": { + "entity": "PANDA", + "material": "SPAWNER" + }, + "pandaspawner": "panda_spawner", + "minecraft:birch_pressure_plate": "birch_pressure_plate", + "minecraft:acacia_wood": "acacia_wood", + "minecraft:magenta_dye": "magenta_dye", + "minecraft:mojang_banner_pattern": "mojang_banner_pattern", + "minecraft:white_terracotta": "white_terracotta", + "minecraft:chiseled_stone_bricks": "chiseled_stone_bricks", + "minecraft:glass_pane": "glass_pane", + "minecraft:dead_bush": "dead_bush", + "minecraft:bowl": "bowl", + "minecraft:lapis_block": "lapis_block", + "minecraft:mossy_stone_brick_wall": "mossy_stone_brick_wall", + "minecraft:stone_hoe": "stone_hoe", + "minecraft:dandelion": "dandelion", + "minecraft:golden_sword": "golden_sword", + "blaze_spawner": { + "entity": "BLAZE", + "material": "SPAWNER" + }, + "chicken_spawner": { + "entity": "CHICKEN", + "material": "SPAWNER" + }, + "minecraft:horn_coral": "horn_coral", + "minecraft:loom": "loom", + "minecraft:smooth_sandstone_slab": "smooth_sandstone_slab", + "minecraft:phantom_spawn_egg": "phantom_spawn_egg", + "minecraft:glass": "glass", + "minecraft:granite_wall": "granite_wall", + "minecraft:green_bed": "green_bed", + "minecraft:cat_spawn_egg": "cat_spawn_egg", + "minecraft:smooth_quartz": "smooth_quartz", + "minecraft:ghast_spawn_egg": "ghast_spawn_egg", + "minecraft:gray_shulker_box": "gray_shulker_box", + "minecraft:light_gray_glazed_terracotta": "light_gray_glazed_terracotta", + "minecraft:pig_spawn_egg": "pig_spawn_egg", + "minecraft:turtle_egg": "turtle_egg", + "minecraft:cactus": "cactus", + "minecraft:redstone_torch": "redstone_torch", + "minecraft:stone_slab": "stone_slab", + "minecraft:lime_carpet": "lime_carpet", + "minecraft:minecart": "minecart", + "minecraft:book": "book", + "bat_spawner": { + "entity": "BAT", + "material": "SPAWNER" + }, + "minecraft:dark_prismarine_stairs": "dark_prismarine_stairs", + "minecraft:pink_dye": "pink_dye", + "minecraft:stone_axe": "stone_axe", + "minecraft:blaze_spawn_egg": "blaze_spawn_egg", + "minecraft:yellow_concrete_powder": "yellow_concrete_powder", + "minecraft:enchanting_table": "enchanting_table", + "minecraft:blue_orchid": "blue_orchid", + "minecraft:fire_charge": "fire_charge", + "minecraft:shield": "shield", + "minecraft:dark_oak_leaves": "dark_oak_leaves", + "minecraft:barrel": "barrel", + "minecraft:dark_oak_button": "dark_oak_button", + "minecraft:trapped_chest": "trapped_chest", + "minecraft:prismarine": "prismarine", + "skeleton_horse_spawner": { + "entity": "SKELETON_HORSE", + "material": "SPAWNER" + }, + "minecraft:red_banner": "red_banner", + "minecraft:blue_glazed_terracotta": "blue_glazed_terracotta", + "minecraft:quartz_stairs": "quartz_stairs", + "minecraft:diorite_wall": "diorite_wall", + "minecraft:lime_glazed_terracotta": "lime_glazed_terracotta", + "minecraft:spruce_leaves": "spruce_leaves", + "minecraft:endermite_spawn_egg": "endermite_spawn_egg", + "minecart_chest_spawner": { + "entity": "MINECART_CHEST", + "material": "SPAWNER" + }, + "minecartchestspawner": "minecart_chest_spawner", + "spider_spawner": { + "entity": "SPIDER", + "material": "SPAWNER" + }, + "logjstripped": "stripped_jungle_log", + "strjunglelog": "stripped_jungle_log", + "logjunglestripped": "stripped_jungle_log", + "strjlog": "stripped_jungle_log", + "minecraft:stripped_jungle_log": "stripped_jungle_log", + "strippedjlog": "stripped_jungle_log", + "minecraft:white_wool": "white_wool", + "minecraft:granite_stairs": "granite_stairs", + "pufferfish_spawner": { + "entity": "PUFFERFISH", + "material": "SPAWNER" + }, + "minecraft:cyan_stained_glass": "cyan_stained_glass", + "llama_spit_spawner": { + "entity": "LLAMA_SPIT", + "material": "SPAWNER" + }, + "llamaspitspawner": "llama_spit_spawner", + "minecraft:splash_potion": "splash_potion", + "minecraft:purple_shulker_box": "purple_shulker_box", + "ocelot_spawner": { + "entity": "OCELOT", + "material": "SPAWNER" + }, + "minecraft:dead_bubble_coral_block": "dead_bubble_coral_block", + "minecraft:black_stained_glass": "black_stained_glass", + "minecraft:milk_bucket": "milk_bucket", + "minecraft:wither_rose": "wither_rose", + "minecraft:zombie_head": "zombie_head", + "minecraft:iron_sword": "iron_sword", + "minecraft:jungle_boat": "jungle_boat", + "minecraft:dead_fire_coral": "dead_fire_coral", + "minecraft:golden_hoe": "golden_hoe", + "minecraft:phantom_membrane": "phantom_membrane", + "minecraft:beetroot_seeds": "beetroot_seeds", + "minecraft:grass_path": "grass_path", + "minecraft:nether_brick_fence": "nether_brick_fence", + "minecraft:cobblestone_slab": "cobblestone_slab", + "minecraft:dark_oak_trapdoor": "dark_oak_trapdoor", + "minecraft:shulker_spawn_egg": "shulker_spawn_egg", + "minecraft:bone": "bone", + "minecraft:light_blue_wool": "light_blue_wool", + "minecraft:oak_slab": "oak_slab", + "minecraft:lime_concrete": "lime_concrete", + "minecraft:conduit": "conduit", + "minecraft:red_nether_bricks": "red_nether_bricks", + "minecraft:repeater": "repeater", + "minecraft:cut_red_sandstone_slab": "cut_red_sandstone_slab", + "minecraft:leather_leggings": "leather_leggings", + "minecraft:red_stained_glass_pane": "red_stained_glass_pane", + "minecraft:prismarine_shard": "prismarine_shard", + "minecraft:red_sandstone": "red_sandstone", + "minecraft:wither_skeleton_spawn_egg": "wither_skeleton_spawn_egg", + "minecraft:birch_log": "birch_log", + "minecraft:leather_boots": "leather_boots", + "minecraft:light_gray_banner": "light_gray_banner", + "minecraft:player_head": "player_head", + "minecraft:zombie_spawn_egg": "zombie_spawn_egg", + "minecraft:birch_sign": "birch_sign", + "minecraft:chorus_plant": "chorus_plant", + "minecraft:glowstone_dust": "glowstone_dust", + "minecraft:azure_bluet": "azure_bluet", + "minecraft:gray_terracotta": "gray_terracotta", + "minecraft:stone_sword": "stone_sword", + "minecraft:nether_quartz_ore": "nether_quartz_ore", + "minecraft:white_carpet": "white_carpet", + "skeleton_spawner": { + "entity": "SKELETON", + "material": "SPAWNER" + }, + "minecraft:end_stone": "end_stone", + "minecraft:polished_granite_stairs": "polished_granite_stairs", + "minecraft:sponge": "sponge", + "minecraft:totem_of_undying": "totem_of_undying", + "minecraft:acacia_button": "acacia_button", + "minecraft:shulker_shell": "shulker_shell", + "minecraft:wooden_hoe": "wooden_hoe", + "minecraft:polished_andesite": "polished_andesite", + "minecraft:tube_coral_block": "tube_coral_block", + "minecraft:cooked_rabbit": "cooked_rabbit", + "minecraft:iron_ore": "iron_ore", + "minecraft:salmon_spawn_egg": "salmon_spawn_egg", + "minecraft:brown_stained_glass": "brown_stained_glass", + "minecraft:elder_guardian_spawn_egg": "elder_guardian_spawn_egg", + "minecraft:birch_sapling": "birch_sapling", + "minecraft:kelp": "kelp", + "minecraft:spruce_planks": "spruce_planks", + "minecraft:zombie_pigman_spawn_egg": "zombie_pigman_spawn_egg", + "cow_spawner": { + "entity": "COW", + "material": "SPAWNER" + }, + "minecraft:jukebox": "jukebox", + "sheep_spawner": { + "entity": "SHEEP", + "material": "SPAWNER" + }, + "minecraft:wither_skeleton_skull": "wither_skeleton_skull", + "minecraft:yellow_stained_glass_pane": "yellow_stained_glass_pane", + "minecraft:smooth_sandstone_stairs": "smooth_sandstone_stairs", + "minecraft:magenta_wool": "magenta_wool", + "minecraft:white_glazed_terracotta": "white_glazed_terracotta", + "minecraft:chainmail_chestplate": "chainmail_chestplate", + "minecraft:music_disc_far": "music_disc_far", + "minecraft:tnt_minecart": "tnt_minecart", + "minecart_furnace_spawner": { + "entity": "MINECART_FURNACE", + "material": "SPAWNER" + }, + "minecartfurnacespawner": "minecart_furnace_spawner", + "minecraft:infested_mossy_stone_bricks": "infested_mossy_stone_bricks", + "minecraft:brown_terracotta": "brown_terracotta", + "minecraft:salmon_bucket": "salmon_bucket", + "minecraft:jungle_slab": "jungle_slab", + "minecraft:tube_coral": "tube_coral", + "minecraft:spruce_stairs": "spruce_stairs", + "minecraft:brown_dye": "brown_dye", + "minecraft:infested_cobblestone": "infested_cobblestone", + "minecraft:acacia_leaves": "acacia_leaves", + "minecraft:coal": "coal", + "minecraft:lever": "lever", + "minecraft:saddle": "saddle", + "minecraft:light_blue_dye": "light_blue_dye", + "minecraft:zombie_villager_spawn_egg": "zombie_villager_spawn_egg", + "minecraft:light_gray_bed": "light_gray_bed", + "sign": "oak_sign" +} From 99fefdb47d7cf46b2c8e6dbc4bc56ca7f3bf8edd Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 9 Jun 2019 15:18:16 +0100 Subject: [PATCH 36/37] Re-add header to items.json --- Essentials/src/items.json | 1 + 1 file changed, 1 insertion(+) diff --git a/Essentials/src/items.json b/Essentials/src/items.json index 6fa1e75da..514e5b87d 100644 --- a/Essentials/src/items.json +++ b/Essentials/src/items.json @@ -1,3 +1,4 @@ +#version: ${full.version} { "acacia_boat": { "material": "ACACIA_BOAT" From e1dec7d9e7c7797bc0e365cfa07faac8e884eb20 Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Sun, 9 Jun 2019 15:34:24 +0100 Subject: [PATCH 37/37] Fix items.json merging --- Essentials/src/items.json | 582 ++++++++++++++++++++++++++------------ 1 file changed, 400 insertions(+), 182 deletions(-) diff --git a/Essentials/src/items.json b/Essentials/src/items.json index 514e5b87d..3dd24cd49 100644 --- a/Essentials/src/items.json +++ b/Essentials/src/items.json @@ -114,10 +114,7 @@ "atrunksapling": "acacia_sapling", "awoodsapling": "acacia_sapling", "acacia_sign": { - "material": "ACACIA_SIGN", - "fallbacks": [ - "SIGN" - ] + "material": "ACACIA_SIGN" }, "acaciasign": "acacia_sign", "acacia_slab": { @@ -215,11 +212,17 @@ "trails": "activator_rail", "trail": "activator_rail", "ttrack": "activator_rail", - "air": "air", - "allium": "allium", + "air": { + "material": "AIR" + }, + "allium": { + "material": "ALLIUM" + }, "magentaallium": "allium", "magentaflower": "allium", - "andesite": "andesite", + "andesite": { + "material": "ANDESITE" + }, "astone": "andesite", "andesite_slab": { "material": "ANDESITE_SLAB" @@ -233,13 +236,19 @@ "material": "ANDESITE_WALL" }, "andesitewall": "andesite_wall", - "anvil": "anvil", - "apple": "apple", + "anvil": { + "material": "ANVIL" + }, + "apple": { + "material": "APPLE" + }, "armor_stand": { "material": "ARMOR_STAND" }, "armorstand": "armor_stand", - "arrow": "arrow", + "arrow": { + "material": "ARROW" + }, "attached_melon_stem": { "material": "ATTACHED_MELON_STEM", "unspawnable": true @@ -262,14 +271,20 @@ "material": "BAKED_POTATO" }, "bakedpotato": "baked_potato", - "bamboo": "bamboo", + "bamboo": { + "material": "BAMBOO" + }, "bamboo_sapling": { "material": "BAMBOO_SAPLING", "unspawnable": true }, "bamboosapling": "bamboo_sapling", - "barrel": "barrel", - "barrier": "barrier", + "barrel": { + "material": "BARREL" + }, + "barrier": { + "material": "BARRIER" + }, "bat_spawn_egg": { "material": "BAT_SPAWN_EGG" }, @@ -279,15 +294,21 @@ "spawneggbat": "bat_spawn_egg", "batspawn": "bat_spawn_egg", "spawnbat": "bat_spawn_egg", - "beacon": "beacon", + "beacon": { + "material": "BEACON" + }, "beaconblock": "beacon", - "bedrock": "bedrock", + "bedrock": { + "material": "BEDROCK" + }, "oprock": "bedrock", "opblock": "bedrock", "adminblock": "bedrock", "adminrock": "bedrock", "adminium": "bedrock", - "beef": "beef", + "beef": { + "material": "BEEF" + }, "rawbeef": "beef", "rawsteak": "beef", "rawcowmeat": "beef", @@ -302,7 +323,9 @@ "plaincowmeat": "beef", "steak": "beef", "cowmeat": "beef", - "beetroot": "beetroot", + "beetroot": { + "material": "BEETROOT" + }, "broot": "beetroot", "beet": "beetroot", "beets": "beetroot", @@ -334,7 +357,9 @@ "beetplantsoup": "beetroot_soup", "beetcropsoup": "beetroot_soup", "redsoup": "beetroot_soup", - "bell": "bell", + "bell": { + "material": "BELL" + }, "birch_boat": { "material": "BIRCH_BOAT" }, @@ -608,10 +633,7 @@ "wtrunksapling": "birch_sapling", "wwoodsapling": "birch_sapling", "birch_sign": { - "material": "BIRCH_SIGN", - "fallbacks": [ - "SIGN" - ] + "material": "BIRCH_SIGN" }, "birchsign": "birch_sign", "birch_slab": { @@ -856,11 +878,7 @@ "blackcdust": "black_concrete_powder", "blackcp": "black_concrete_powder", "black_dye": { - "material": "BLACK_DYE", - "fallbacks": [ - "INK_SAC", - "INK_SACK" - ] + "material": "BLACK_DYE" }, "blackdye": "black_dye", "black_glazed_terracotta": { @@ -1014,10 +1032,7 @@ "bluecdust": "blue_concrete_powder", "bluecp": "blue_concrete_powder", "blue_dye": { - "material": "BLUE_DYE", - "fallbacks": [ - "LAPIS_LAZULI" - ] + "material": "BLUE_DYE" }, "bluedye": "blue_dye", "blue_glazed_terracotta": { @@ -1104,7 +1119,9 @@ "blucotton": "blue_wool", "bluecloth": "blue_wool", "bluecotton": "blue_wool", - "bone": "bone", + "bone": { + "material": "BONE" + }, "bone_block": { "material": "BONE_BLOCK" }, @@ -1113,16 +1130,24 @@ "material": "BONE_MEAL" }, "bonemeal": "bone_meal", - "book": "book", - "bookshelf": "bookshelf", + "book": { + "material": "BOOK" + }, + "bookshelf": { + "material": "BOOKSHELF" + }, "bshelf": "bookshelf", "bookcase": "bookshelf", "casebook": "bookshelf", "shelfbook": "bookshelf", "bookblock": "bookshelf", "blockbook": "bookshelf", - "bow": "bow", - "bowl": "bowl", + "bow": { + "material": "BOW" + }, + "bowl": { + "material": "BOWL" + }, "brain_coral": { "material": "BRAIN_CORAL" }, @@ -1140,13 +1165,19 @@ "unspawnable": true }, "braincoralwallfan": "brain_coral_wall_fan", - "bread": "bread", + "bread": { + "material": "BREAD" + }, "brewing_stand": { "material": "BREWING_STAND" }, "brewingstand": "brewing_stand", - "brick": "brick", - "bricks": "bricks", + "brick": { + "material": "BRICK" + }, + "bricks": { + "material": "BRICKS" + }, "brick_slab": { "material": "BRICK_SLAB" }, @@ -1197,10 +1228,7 @@ "browncdust": "brown_concrete_powder", "browncp": "brown_concrete_powder", "brown_dye": { - "material": "BROWN_DYE", - "fallbacks": [ - "COCOA_BEANS" - ] + "material": "BROWN_DYE" }, "browndye": "brown_dye", "brown_glazed_terracotta": { @@ -1331,13 +1359,23 @@ "unspawnable": true }, "bubblecoralwallfan": "bubble_coral_wall_fan", - "bucket": "bucket", - "cactus": "cactus", + "bucket": { + "material": "BUCKET" + }, + "cactus": { + "material": "CACTUS" + }, "cactuses": "cactus", "cacti": "cactus", - "cake": "cake", - "campfire": "campfire", - "carrot": "carrot", + "cake": { + "material": "CAKE" + }, + "campfire": { + "material": "CAMPFIRE" + }, + "carrot": { + "material": "CARROT" + }, "carrots": { "material": "CARROTS", "unspawnable": true @@ -1362,7 +1400,9 @@ "material": "CAT_SPAWN_EGG" }, "catspawnegg": "cat_spawn_egg", - "cauldron": "cauldron", + "cauldron": { + "material": "CAULDRON" + }, "cave_air": { "material": "CAVE_AIR", "unspawnable": true @@ -1463,8 +1503,12 @@ "material": "CHAIN_COMMAND_BLOCK" }, "chaincommandblock": "chain_command_block", - "charcoal": "charcoal", - "chest": "chest", + "charcoal": { + "material": "CHARCOAL" + }, + "chest": { + "material": "CHEST" + }, "container": "chest", "chest_minecart": { "material": "CHEST_MINECART" @@ -1485,7 +1529,9 @@ "cmcart": "chest_minecart", "cmc": "chest_minecart", "ccart": "chest_minecart", - "chicken": "chicken", + "chicken": { + "material": "CHICKEN" + }, "rawchicken": "chicken", "rachicken": "chicken", "uncookedchicken": "chicken", @@ -1605,13 +1651,19 @@ "material": "CHORUS_PLANT" }, "chorusplant": "chorus_plant", - "clay": "clay", + "clay": { + "material": "CLAY" + }, "clay_ball": { "material": "CLAY_BALL" }, "clayball": "clay_ball", - "clock": "clock", - "coal": "coal", + "clock": { + "material": "CLOCK" + }, + "coal": { + "material": "COAL" + }, "coal_block": { "material": "COAL_BLOCK" }, @@ -1640,7 +1692,9 @@ "grasslessland": "coarse_dirt", "coarseland": "coarse_dirt", "coarseearth": "coarse_dirt", - "cobblestone": "cobblestone", + "cobblestone": { + "material": "COBBLESTONE" + }, "cstone": "cobblestone", "cobble": "cobblestone", "cobblestone_slab": { @@ -1679,7 +1733,9 @@ "cfence": "cobblestone_wall", "stonewall": "cobblestone_wall", "swall": "cobblestone_wall", - "cobweb": "cobweb", + "cobweb": { + "material": "COBWEB" + }, "spiderweb": "cobweb", "sweb": "cobweb", "cweb": "cobweb", @@ -1701,7 +1757,9 @@ "cocoapod": "cocoa_beans", "cocopod": "cocoa_beans", "cpod": "cocoa_beans", - "cod": "cod", + "cod": { + "material": "COD" + }, "rawfish": "cod", "rawcod": "cod", "rafish": "cod", @@ -1761,10 +1819,18 @@ "commandblockmcart": "command_block_minecart", "commandblockmc": "command_block_minecart", "commandblockcart": "command_block_minecart", - "comparator": "comparator", - "compass": "compass", - "composter": "composter", - "conduit": "conduit", + "comparator": { + "material": "COMPARATOR" + }, + "compass": { + "material": "COMPASS" + }, + "composter": { + "material": "COMPOSTER" + }, + "conduit": { + "material": "CONDUIT" + }, "cooked_beef": { "material": "COOKED_BEEF" }, @@ -2160,8 +2226,12 @@ "rofishs": "cooked_salmon", "bbqfishs": "cooked_salmon", "toastedfishs": "cooked_salmon", - "cookie": "cookie", - "cornflower": "cornflower", + "cookie": { + "material": "COOKIE" + }, + "cornflower": { + "material": "CORNFLOWER" + }, "cow_spawn_egg": { "material": "COW_SPAWN_EGG" }, @@ -2258,7 +2328,9 @@ "unspawnable": true }, "creeperwallhead": "creeper_wall_head", - "crossbow": "crossbow", + "crossbow": { + "material": "CROSSBOW" + }, "cut_red_sandstone": { "material": "CUT_RED_SANDSTONE" }, @@ -2403,7 +2475,9 @@ }, "damagedanvil": "damaged_anvil", "verydamagedanvil": "damaged_anvil", - "dandelion": "dandelion", + "dandelion": { + "material": "DANDELION" + }, "yellowdandelion": "dandelion", "ydandelion": "dandelion", "yellowflower": "dandelion", @@ -2563,10 +2637,7 @@ "dotrunksapling": "dark_oak_sapling", "dowoodsapling": "dark_oak_sapling", "dark_oak_sign": { - "material": "DARK_OAK_SIGN", - "fallbacks": [ - "SIGN" - ] + "material": "DARK_OAK_SIGN" }, "darkoaksign": "dark_oak_sign", "dark_oak_slab": { @@ -2840,7 +2911,9 @@ "drails": "detector_rail", "drail": "detector_rail", "dtrack": "detector_rail", - "diamond": "diamond", + "diamond": { + "material": "DIAMOND" + }, "diamond_axe": { "material": "DIAMOND_AXE" }, @@ -2966,7 +3039,9 @@ "diamondsword": "diamond_sword", "crystalsword": "diamond_sword", "dsword": "diamond_sword", - "diorite": "diorite", + "diorite": { + "material": "DIORITE" + }, "dstone": "diorite", "diorite_slab": { "material": "DIORITE_SLAB" @@ -2980,10 +3055,14 @@ "material": "DIORITE_WALL" }, "dioritewall": "diorite_wall", - "dirt": "dirt", + "dirt": { + "material": "DIRT" + }, "earth": "dirt", "land": "dirt", - "dispenser": "dispenser", + "dispenser": { + "material": "DISPENSER" + }, "dispense": "dispenser", "dolphin_spawn_egg": { "material": "DOLPHIN_SPAWN_EGG" @@ -3044,7 +3123,9 @@ "material": "DRIED_KELP_BLOCK" }, "driedkelpblock": "dried_kelp_block", - "dropper": "dropper", + "dropper": { + "material": "DROPPER" + }, "drowned_spawn_egg": { "material": "DROWNED_SPAWN_EGG" }, @@ -3054,7 +3135,9 @@ "spawneggdrowned": "drowned_spawn_egg", "drownedspawn": "drowned_spawn_egg", "spawndrowned": "drowned_spawn_egg", - "egg": "egg", + "egg": { + "material": "EGG" + }, "elder_guardian_spawn_egg": { "material": "ELDER_GUARDIAN_SPAWN_EGG" }, @@ -3070,7 +3153,9 @@ "spawneggeguardian": "elder_guardian_spawn_egg", "eguardianspawn": "elder_guardian_spawn_egg", "spawneguardian": "elder_guardian_spawn_egg", - "elytra": "elytra", + "elytra": { + "material": "ELYTRA" + }, "hangglider": "elytra", "glider": "elytra", "wings": "elytra", @@ -3079,7 +3164,9 @@ "playerwing": "elytra", "pwings": "elytra", "pwing": "elytra", - "emerald": "emerald", + "emerald": { + "material": "EMERALD" + }, "emerald_block": { "material": "EMERALD_BLOCK" }, @@ -3255,13 +3342,19 @@ "material": "EXPERIENCE_BOTTLE" }, "experiencebottle": "experience_bottle", - "farmland": "farmland", - "feather": "feather", + "farmland": { + "material": "FARMLAND" + }, + "feather": { + "material": "FEATHER" + }, "fermented_spider_eye": { "material": "FERMENTED_SPIDER_EYE" }, "fermentedspidereye": "fermented_spider_eye", - "fern": "fern", + "fern": { + "material": "FERN" + }, "filled_map": { "material": "FILLED_MAP" }, @@ -3307,7 +3400,9 @@ "material": "FLETCHING_TABLE" }, "fletchingtable": "fletching_table", - "flint": "flint", + "flint": { + "material": "FLINT" + }, "flint_and_steel": { "material": "FLINT_AND_STEEL" }, @@ -3329,7 +3424,9 @@ "unspawnable": true }, "frostedice": "frosted_ice", - "furnace": "furnace", + "furnace": { + "material": "FURNACE" + }, "furnace_minecart": { "material": "FURNACE_MINECART" }, @@ -3374,7 +3471,9 @@ "material": "GHAST_TEAR" }, "ghasttear": "ghast_tear", - "glass": "glass", + "glass": { + "material": "GLASS" + }, "blockglass": "glass", "glassblock": "glass", "glass_bottle": { @@ -3403,7 +3502,9 @@ "material": "GLOBE_BANNER_PATTERN" }, "globebannerpattern": "globe_banner_pattern", - "glowstone": "glowstone", + "glowstone": { + "material": "GLOWSTONE" + }, "glowingstoneblock": "glowstone", "lightstoneblock": "glowstone", "glowstoneblock": "glowstone", @@ -3556,7 +3657,9 @@ "go": "gold_ore", "oreg": "gold_ore", "og": "gold_ore", - "granite": "granite", + "granite": { + "material": "GRANITE" + }, "gstone": "granite", "granite_slab": { "material": "GRANITE_SLAB" @@ -3570,7 +3673,9 @@ "material": "GRANITE_WALL" }, "granitewall": "granite_wall", - "grass": "grass", + "grass": { + "material": "GRASS" + }, "grass_block": { "material": "GRASS_BLOCK" }, @@ -3582,7 +3687,9 @@ "material": "GRASS_PATH" }, "grasspath": "grass_path", - "gravel": "gravel", + "gravel": { + "material": "GRAVEL" + }, "gray_banner": { "material": "GRAY_BANNER" }, @@ -4013,10 +4120,7 @@ "darkgreencdust": "green_concrete_powder", "darkgreencp": "green_concrete_powder", "green_dye": { - "material": "GREEN_DYE", - "fallbacks": [ - "CACTUS_GREEN" - ] + "material": "GREEN_DYE" }, "greendye": "green_dye", "green_glazed_terracotta": { @@ -4180,7 +4284,9 @@ "darkgreenwool": "green_wool", "darkgreencloth": "green_wool", "darkgreencotton": "green_wool", - "grindstone": "grindstone", + "grindstone": { + "material": "GRINDSTONE" + }, "guardian_spawn_egg": { "material": "GUARDIAN_SPAWN_EGG" }, @@ -4190,7 +4296,9 @@ "spawneggguardian": "guardian_spawn_egg", "guardianspawn": "guardian_spawn_egg", "spawnguardian": "guardian_spawn_egg", - "gunpowder": "gunpowder", + "gunpowder": { + "material": "GUNPOWDER" + }, "hay_block": { "material": "HAY_BLOCK" }, @@ -4207,7 +4315,9 @@ "material": "HEAVY_WEIGHTED_PRESSURE_PLATE" }, "heavyweightedpressureplate": "heavy_weighted_pressure_plate", - "hopper": "hopper", + "hopper": { + "material": "HOPPER" + }, "chestpuller": "hopper", "chestpull": "hopper", "cheststorer": "hopper", @@ -4266,7 +4376,9 @@ "spawnegghusk": "husk_spawn_egg", "huskspawn": "husk_spawn_egg", "spawnhusk": "husk_spawn_egg", - "ice": "ice", + "ice": { + "material": "ICE" + }, "frozenwater": "ice", "waterfrozen": "ice", "freezewater": "ice", @@ -5410,8 +5522,12 @@ "glowpumpkin": "jack_o_lantern", "gpumpkin": "jack_o_lantern", "lpumpkin": "jack_o_lantern", - "jigsaw": "jigsaw", - "jukebox": "jukebox", + "jigsaw": { + "material": "JIGSAW" + }, + "jukebox": { + "material": "JUKEBOX" + }, "jbox": "jukebox", "jungle_boat": { "material": "JUNGLE_BOAT" @@ -5607,10 +5723,7 @@ "ftrunksapling": "jungle_sapling", "fwoodsapling": "jungle_sapling", "jungle_sign": { - "material": "JUNGLE_SIGN", - "fallbacks": [ - "SIGN" - ] + "material": "JUNGLE_SIGN" }, "junglesign": "jungle_sign", "jungle_slab": { @@ -5748,7 +5861,9 @@ "flogall": "jungle_wood", "ftrunkall": "jungle_wood", "ftreeall": "jungle_wood", - "kelp": "kelp", + "kelp": { + "material": "KELP" + }, "kelp_plant": { "material": "KELP_PLANT", "unspawnable": true @@ -5758,8 +5873,12 @@ "material": "KNOWLEDGE_BOOK" }, "knowledgebook": "knowledge_book", - "ladder": "ladder", - "lantern": "lantern", + "ladder": { + "material": "LADDER" + }, + "lantern": { + "material": "LANTERN" + }, "lapis_block": { "material": "LAPIS_BLOCK" }, @@ -5803,8 +5922,12 @@ "material": "LAVA_BUCKET" }, "lavabucket": "lava_bucket", - "lead": "lead", - "leather": "leather", + "lead": { + "material": "LEAD" + }, + "leather": { + "material": "LEATHER" + }, "leather_boots": { "material": "LEATHER_BOOTS" }, @@ -5854,8 +5977,12 @@ "lleggings": "leather_leggings", "llegs": "leather_leggings", "lpants": "leather_leggings", - "lectern": "lectern", - "lever": "lever", + "lectern": { + "material": "LECTERN" + }, + "lever": { + "material": "LEVER" + }, "light_blue_banner": { "material": "LIGHT_BLUE_BANNER" }, @@ -6454,7 +6581,9 @@ "material": "LIGHT_WEIGHTED_PRESSURE_PLATE" }, "lightweightedpressureplate": "light_weighted_pressure_plate", - "lilac": "lilac", + "lilac": { + "material": "LILAC" + }, "lily_of_the_valley": { "material": "LILY_OF_THE_VALLEY" }, @@ -6727,7 +6856,9 @@ "spawneggllama": "trader_llama_spawn_egg", "llamaspawn": "trader_llama_spawn_egg", "spawnllama": "trader_llama_spawn_egg", - "loom": "loom", + "loom": { + "material": "LOOM" + }, "magenta_banner": { "material": "MAGENTA_BANNER" }, @@ -6873,8 +7004,12 @@ "spawneggmagmaslime": "magma_cube_spawn_egg", "magmaslimespawn": "magma_cube_spawn_egg", "spawnmagmaslime": "magma_cube_spawn_egg", - "map": "map", - "melon": "melon", + "map": { + "material": "MAP" + }, + "melon": { + "material": "MELON" + }, "watermelon": "melon", "greenmelon": "melon", "melongreen": "melon", @@ -6898,7 +7033,9 @@ "material": "MILK_BUCKET" }, "milkbucket": "milk_bucket", - "minecart": "minecart", + "minecart": { + "material": "MINECART" + }, "mcart": "minecart", "mc": "minecart", "cart": "minecart", @@ -7883,7 +8020,9 @@ "dgrcd": "music_disc_ward", "cd10": "music_disc_ward", "10cd": "music_disc_ward", - "mutton": "mutton", + "mutton": { + "material": "MUTTON" + }, "rawmutton": "mutton", "rawsheepmeat": "mutton", "ramutton": "mutton", @@ -7893,7 +8032,9 @@ "plainmutton": "mutton", "plainsheepmeat": "mutton", "sheepmeat": "mutton", - "mycelium": "mycelium", + "mycelium": { + "material": "MYCELIUM" + }, "mycel": "mycelium", "swampgrass": "mycelium", "sgrass": "mycelium", @@ -7907,7 +8048,9 @@ "material": "NAUTILUS_SHELL" }, "nautilusshell": "nautilus_shell", - "netherrack": "netherrack", + "netherrack": { + "material": "NETHERRACK" + }, "nether_brick": { "material": "NETHER_BRICK" }, @@ -8166,10 +8309,7 @@ "otrunksapling": "oak_sapling", "owoodsapling": "oak_sapling", "oak_sign": { - "material": "OAK_SIGN", - "fallbacks": [ - "SIGN" - ] + "material": "OAK_SIGN" }, "oaksign": "oak_sign", "oak_slab": { @@ -8275,8 +8415,12 @@ "ologall": "oak_wood", "otrunkall": "oak_wood", "otreeall": "oak_wood", - "observer": "observer", - "obsidian": "obsidian", + "observer": { + "material": "OBSERVER" + }, + "obsidian": { + "material": "OBSIDIAN" + }, "obsi": "obsidian", "obby": "obsidian", "ocelot_spawn_egg": { @@ -8427,12 +8571,16 @@ "material": "PACKED_ICE" }, "packedice": "packed_ice", - "painting": "painting", + "painting": { + "material": "PAINTING" + }, "panda_spawn_egg": { "material": "PANDA_SPAWN_EGG" }, "pandaspawnegg": "panda_spawn_egg", - "paper": "paper", + "paper": { + "material": "PAPER" + }, "parrot_spawn_egg": { "material": "PARROT_SPAWN_EGG" }, @@ -8442,7 +8590,9 @@ "spawneggparrot": "parrot_spawn_egg", "parrotspawn": "parrot_spawn_egg", "spawnparrot": "parrot_spawn_egg", - "peony": "peony", + "peony": { + "material": "PEONY" + }, "petrified_oak_slab": { "material": "PETRIFIED_OAK_SLAB" }, @@ -8592,7 +8742,9 @@ "picotton": "pink_wool", "pinkcloth": "pink_wool", "pinkcotton": "pink_wool", - "piston": "piston", + "piston": { + "material": "PISTON" + }, "piston_head": { "material": "PISTON_HEAD", "unspawnable": true @@ -8635,7 +8787,9 @@ "unspawnable": true }, "playerwallhead": "player_wall_head", - "podzol": "podzol", + "podzol": { + "material": "PODZOL" + }, "poisonous_potato": { "material": "POISONOUS_POTATO" }, @@ -8713,14 +8867,18 @@ "pchorus": "popped_chorus_fruit", "poppedchorus": "popped_chorus_fruit", "popchorus": "popped_chorus_fruit", - "poppy": "poppy", + "poppy": { + "material": "POPPY" + }, "rose": "poppy", "redrose": "poppy", "rrose": "poppy", "redflower": "poppy", "rflower": "poppy", "redpoppy": "poppy", - "porkchop": "porkchop", + "porkchop": { + "material": "PORKCHOP" + }, "rawpork": "porkchop", "rawporkchop": "porkchop", "rapork": "porkchop", @@ -8730,12 +8888,16 @@ "plainpork": "porkchop", "plainporkchop": "porkchop", "pork": "porkchop", - "potato": "potato", + "potato": { + "material": "POTATO" + }, "potatoes": { "material": "POTATOES", "unspawnable": true }, - "potion": "potion", + "potion": { + "material": "POTION" + }, "potted_acacia_sapling": { "material": "POTTED_ACACIA_SAPLING", "unspawnable": true @@ -8882,7 +9044,9 @@ "brails": "powered_rail", "brail": "powered_rail", "btrack": "powered_rail", - "prismarine": "prismarine", + "prismarine": { + "material": "PRISMARINE" + }, "prismarine_bricks": { "material": "PRISMARINE_BRICKS" }, @@ -8989,7 +9153,9 @@ "material": "PRISMARINE_WALL" }, "prismarinewall": "prismarine_wall", - "pufferfish": "pufferfish", + "pufferfish": { + "material": "PUFFERFISH" + }, "rawpufferfish": "pufferfish", "rawpufffish": "pufferfish", "rawfishpuff": "pufferfish", @@ -9044,7 +9210,9 @@ "spawneggpfish": "pufferfish_spawn_egg", "pfishspawn": "pufferfish_spawn_egg", "spawnpfish": "pufferfish_spawn_egg", - "pumpkin": "pumpkin", + "pumpkin": { + "material": "PUMPKIN" + }, "pumpkin_pie": { "material": "PUMPKIN_PIE" }, @@ -9184,7 +9352,9 @@ "material": "PURPUR_STAIRS" }, "purpurstairs": "purpur_stairs", - "quartz": "quartz", + "quartz": { + "material": "QUARTZ" + }, "quartz_block": { "material": "QUARTZ_BLOCK" }, @@ -9204,7 +9374,9 @@ "material": "QUARTZ_STAIRS" }, "quartzstairs": "quartz_stairs", - "rabbit": "rabbit", + "rabbit": { + "material": "RABBIT" + }, "rawrabbit": "rabbit", "rawhare": "rabbit", "rawhasenpfeffer": "rabbit", @@ -9240,7 +9412,9 @@ "material": "RABBIT_STEW" }, "rabbitstew": "rabbit_stew", - "rail": "rail", + "rail": { + "material": "RAIL" + }, "rails": "rail", "track": "rail", "minecartrails": "rail", @@ -9256,7 +9430,9 @@ "material": "RAVAGER_SPAWN_EGG" }, "ravagerspawnegg": "ravager_spawn_egg", - "redstone": "redstone", + "redstone": { + "material": "REDSTONE" + }, "redstone_block": { "material": "REDSTONE_BLOCK" }, @@ -9358,10 +9534,7 @@ "redcdust": "red_concrete_powder", "redcp": "red_concrete_powder", "red_dye": { - "material": "RED_DYE", - "fallbacks": [ - "ROSE_RED" - ] + "material": "RED_DYE" }, "reddye": "red_dye", "red_glazed_terracotta": { @@ -9536,7 +9709,9 @@ "rcotton": "red_wool", "redcloth": "red_wool", "redcotton": "red_wool", - "repeater": "repeater", + "repeater": { + "material": "REPEATER" + }, "repeating_command_block": { "material": "REPEATING_COMMAND_BLOCK" }, @@ -9549,8 +9724,12 @@ "material": "ROTTEN_FLESH" }, "rottenflesh": "rotten_flesh", - "saddle": "saddle", - "salmon": "salmon", + "saddle": { + "material": "SADDLE" + }, + "salmon": { + "material": "SALMON" + }, "rawsalmon": "salmon", "rawsalmonfish": "salmon", "rawsfish": "salmon", @@ -9584,8 +9763,12 @@ "spawneggsalmon": "salmon_spawn_egg", "salmonspawn": "salmon_spawn_egg", "spawnsalmon": "salmon_spawn_egg", - "sand": "sand", - "sandstone": "sandstone", + "sand": { + "material": "SAND" + }, + "sandstone": { + "material": "SANDSTONE" + }, "sastone": "sandstone", "sandst": "sandstone", "sandstone_slab": { @@ -9613,9 +9796,15 @@ "material": "SANDSTONE_WALL" }, "sandstonewall": "sandstone_wall", - "scaffolding": "scaffolding", - "scute": "scute", - "seagrass": "seagrass", + "scaffolding": { + "material": "SCAFFOLDING" + }, + "scute": { + "material": "SCUTE" + }, + "seagrass": { + "material": "SEAGRASS" + }, "sea_lantern": { "material": "SEA_LANTERN" }, @@ -9624,7 +9813,9 @@ "material": "SEA_PICKLE" }, "seapickle": "sea_pickle", - "shears": "shears", + "shears": { + "material": "SHEARS" + }, "sheep_spawn_egg": { "material": "SHEEP_SPAWN_EGG" }, @@ -9634,7 +9825,9 @@ "spawneggsheep": "sheep_spawn_egg", "sheepspawn": "sheep_spawn_egg", "spawnsheep": "sheep_spawn_egg", - "shield": "shield", + "shield": { + "material": "SHIELD" + }, "handshield": "shield", "woodshield": "shield", "woodenshield": "shield", @@ -9751,7 +9944,9 @@ "material": "SMITHING_TABLE" }, "smithingtable": "smithing_table", - "smoker": "smoker", + "smoker": { + "material": "SMOKER" + }, "smooth_quartz": { "material": "SMOOTH_QUARTZ" }, @@ -9808,8 +10003,12 @@ "smooth_stone_slab": { "material": "SMOOTH_STONE_SLAB" }, - "snow": "snow", - "snowball": "snowball", + "snow": { + "material": "SNOW" + }, + "snowball": { + "material": "SNOWBALL" + }, "snow_block": { "material": "SNOW_BLOCK" }, @@ -9818,7 +10017,9 @@ "material": "SOUL_SAND" }, "soulsand": "soul_sand", - "spawner": "spawner", + "spawner": { + "material": "SPAWNER" + }, "spectral_arrow": { "material": "SPECTRAL_ARROW" }, @@ -9840,7 +10041,9 @@ "material": "SPLASH_POTION" }, "splashpotion": "splash_potion", - "sponge": "sponge", + "sponge": { + "material": "SPONGE" + }, "spruce_boat": { "material": "SPRUCE_BOAT" }, @@ -10109,10 +10312,7 @@ "strunksapling": "spruce_sapling", "swoodsapling": "spruce_sapling", "spruce_sign": { - "material": "SPRUCE_SIGN", - "fallbacks": [ - "SIGN" - ] + "material": "SPRUCE_SIGN" }, "sprucesign": "spruce_sign", "spruce_slab": { @@ -10316,7 +10516,9 @@ "spawneggsquid": "squid_spawn_egg", "squidspawn": "squid_spawn_egg", "spawnsquid": "squid_spawn_egg", - "stick": "stick", + "stick": { + "material": "STICK" + }, "sticky_piston": { "material": "STICKY_PISTON" }, @@ -10336,10 +10538,14 @@ "pistons": "sticky_piston", "pistonsbase": "sticky_piston", "spistonbase": "sticky_piston", - "stone": "stone", + "stone": { + "material": "STONE" + }, "sstone": "stone", "rock": "stone", - "stonecutter": "stonecutter", + "stonecutter": { + "material": "STONECUTTER" + }, "cutstone": "stonecutter", "cutsmoothstone": "stonecutter", "cutsstone": "stonecutter", @@ -10451,7 +10657,9 @@ "spawneggstray": "stray_spawn_egg", "strayspawn": "stray_spawn_egg", "spawnstray": "stray_spawn_egg", - "string": "string", + "string": { + "material": "STRING" + }, "stripped_acacia_log": { "material": "STRIPPED_ACACIA_LOG" }, @@ -10844,12 +11052,16 @@ "material": "STRUCTURE_VOID" }, "structurevoid": "structure_void", - "sugar": "sugar", + "sugar": { + "material": "SUGAR" + }, "sugar_cane": { "material": "SUGAR_CANE" }, "sugarcane": "sugar_cane", - "sunflower": "sunflower", + "sunflower": { + "material": "SUNFLOWER" + }, "suspicious_stew": { "material": "SUSPICIOUS_STEW" }, @@ -10880,12 +11092,16 @@ "unspawnable": true }, "tallseagrass": "tall_seagrass", - "terracotta": "terracotta", + "terracotta": { + "material": "TERRACOTTA" + }, "tipped_arrow": { "material": "TIPPED_ARROW" }, "tippedarrow": "tipped_arrow", - "tnt": "tnt", + "tnt": { + "material": "TNT" + }, "tntblock": "tnt", "blocktnt": "tnt", "bombblock": "tnt", @@ -10921,7 +11137,9 @@ "bmcart": "tnt_minecart", "bmc": "tnt_minecart", "bcart": "tnt_minecart", - "torch": "torch", + "torch": { + "material": "TORCH" + }, "burningstick": "torch", "burnstick": "torch", "totem_of_undying": { @@ -10940,7 +11158,9 @@ "trapchest": "trapped_chest", "chesttrapped": "trapped_chest", "chesttrap": "trapped_chest", - "trident": "trident", + "trident": { + "material": "TRIDENT" + }, "tripwire": { "material": "TRIPWIRE", "unspawnable": true @@ -11098,7 +11318,9 @@ "spawneggvin": "vindicator_spawn_egg", "vinspawn": "vindicator_spawn_egg", "spawnvin": "vindicator_spawn_egg", - "vine": "vine", + "vine": { + "material": "VINE" + }, "vines": "vine", "greenvines": "vine", "greenvine": "vine", @@ -11141,7 +11363,9 @@ "material": "WET_SPONGE" }, "wetsponge": "wet_sponge", - "wheat": "wheat", + "wheat": { + "material": "WHEAT" + }, "wheat_seeds": { "material": "WHEAT_SEEDS" }, @@ -11195,10 +11419,7 @@ "whitecdust": "white_concrete_powder", "whitecp": "white_concrete_powder", "white_dye": { - "material": "WHITE_DYE", - "fallbacks": [ - "BONE_MEAL" - ] + "material": "WHITE_DYE" }, "whitedye": "white_dye", "white_glazed_terracotta": { @@ -11469,10 +11690,7 @@ "yellowcdust": "yellow_concrete_powder", "yellowcp": "yellow_concrete_powder", "yellow_dye": { - "material": "YELLOW_DYE", - "fallbacks": [ - "DANDELION_YELLOW" - ] + "material": "YELLOW_DYE" }, "yellowdye": "yellow_dye", "yellow_glazed_terracotta": {